Skip to content

Commit

Permalink
Add Python 3.12 to the test suite and classifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Dec 14, 2023
1 parent dc304b6 commit 075fdfb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12"]
django-version: [ "3.2", "4.0", "4.1", "4.2", "5.0"]
drf-version: [ "3.11", "3.12", "3.13" ]
exclude:
Expand All @@ -40,11 +40,15 @@ jobs:
# Python 3.9 is incompatible with Django v5+
- django-version: 5.0
python-version: 3.9
# Python 3.11 is incompatible with Django <v4.1
# Python 3.11+ is incompatible with Django <v4.1
- django-version: 3.2
python-version: 3.11
- django-version: 4.0
python-version: 3.11
- django-version: 3.2
python-version: 3.12
- django-version: 4.0
python-version: 3.12
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
Expand Down

0 comments on commit 075fdfb

Please sign in to comment.