Skip to content

Commit

Permalink
Add support for Python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
federicobond committed Mar 22, 2024
1 parent 2b49fa1 commit 95399df
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
experimental: [false]
toxenv: ["py"]
include:
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
envlist =
py{37,38,39,310}-django{22,32},
py{38,39,310}-django40,
py{38,39,310,311}-django41,
py{38,39,310,311,312}-django42,
packaging,

[testenv]
Expand All @@ -12,9 +14,11 @@ deps =
django22: Django~=2.2
django32: Django~=3.2
django40: Django~=4.0
django41: Django~=4.1
django42: Django~=4.2
commands =
py{37,38,39,310},pypy3: coverage run tests/manage.py test testsuite {posargs: -v 2}
py{37,38,39,310},pypy3: coverage report -m
py{37,38,39,310,311,312},pypy3: coverage run tests/manage.py test testsuite {posargs: -v 2}
py{37,38,39,310,311,312},pypy3: coverage report -m

[testenv:packaging]
usedevelop = false
Expand Down

0 comments on commit 95399df

Please sign in to comment.