Skip to content

Commit

Permalink
Python 3.7 is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Mar 11, 2024
1 parent 114ab13 commit 2d5f570
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,23 @@ jobs:
max-parallel: 8
matrix:
os: [ubuntu-18.04, ubuntu-22.04]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- run: make install
- run: make lint
- run: make test
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
black:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
isort:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: isort/isort-action@v1.1.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
author_email="kislyuk@gmail.com",
description="Python CloudWatch Logging",
long_description=open("README.rst").read(),
python_requires=">=3.7",
python_requires=">=3.8",
install_requires=[
"boto3 >= 1.9.253, < 2",
],
Expand All @@ -38,11 +38,11 @@
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down

0 comments on commit 2d5f570

Please sign in to comment.