Skip to content

Commit

Permalink
Add Python 3.12 support in CI (and remove 3.6/3.7/3.8)
Browse files Browse the repository at this point in the history
  • Loading branch information
touilleMan committed Aug 6, 2024
1 parent 863819a commit 9ff3601
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: [cp36, cp37, cp38, cp39, cp310, cp311]
python_version: [cp39, cp310, cp311, cp312]
architecture: [win32, win_amd64]

steps:
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
author="Emmanuel Leblond",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"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",
"License :: OSI Approved :: BSD License",
],
package_dir={"": "src"},
Expand Down

0 comments on commit 9ff3601

Please sign in to comment.