Skip to content

Commit

Permalink
drop support for 3.7, add support for 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyPettersson85 committed Jan 23, 2024
1 parent 160c026 commit aa506d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
fail-fast: false
max-parallel: 1
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # gives the commit message linter access to all previous commits

- name: Commit lint
if: ${{ matrix.python == '3.7' && github.ref == 'refs/heads/master' }}
if: ${{ matrix.python == '3.8' && github.ref == 'refs/heads/master' }}
uses: wagoid/commitlint-github-action@v4

- uses: actions/setup-python@v3
Expand All @@ -36,7 +36,7 @@ jobs:
run: pip install ".[test, ci]"

- name: Lint with ${{ matrix.python }}
if: ${{ matrix.python == '3.7' }}
if: ${{ matrix.python == '3.8' }}
run: make lint

- name: Test with ${{ matrix.python }}
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
install_requires=install_requires,
extras_require={"test": tests_require, "ci": ci_require},
include_package_data=True,
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
Expand All @@ -57,10 +57,11 @@
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit aa506d8

Please sign in to comment.