Skip to content

Commit

Permalink
Support Python 3.12 (#74)
Browse files Browse the repository at this point in the history
* Add missing Python 3.11 classifier

* Add Python 3.12 support
  • Loading branch information
michaelwheeler authored Nov 28, 2023
1 parent 72703a6 commit 5a4e7ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django: ["3.2.0", "4.0.0", "4.1.0", "4.2.0"]
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def types(session):
"python,django",
[
(python, django)
for python in ("3.8", "3.9", "3.10", "3.11")
for python in ("3.8", "3.9", "3.10", "3.11", "3.12")
for django in ("3.2.0", "4.0.0", "4.1.0", "4.2.0")
],
)
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ classifiers =
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

[options]
python_requires = >=3.8
Expand Down

0 comments on commit 5a4e7ad

Please sign in to comment.