Skip to content

Commit

Permalink
Support Python 3.12 (#129)
Browse files Browse the repository at this point in the history
* Update setup files to support 3.12

Fixes #128
  • Loading branch information
gordonwatts committed Oct 7, 2023
1 parent 8971370 commit 7295efc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
Expand All @@ -71,6 +72,6 @@
"Topic :: Utilities",
],
data_files=[],
python_requires=">=3.6, <3.12",
python_requires=">=3.6, <3.13",
platforms="Any",
)

0 comments on commit 7295efc

Please sign in to comment.