Skip to content

Commit

Permalink
Also test with Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ataylor32 committed Dec 9, 2023
1 parent de47baf commit d80c85d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ jobs:
tox-env: py310-django42
- python-version: "3.11"
tox-env: py311-django42
- python-version: "3.12"
tox-env: py312-django42
steps:
- uses: actions/checkout@v3

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',

'Environment :: Web Environment',
'Framework :: Django',
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
envlist =
py{36,37,38,39,310}-django32
py{38,39,310}-django40
py{38,39,310,311}-django{41,42}
py{38,39,310,311}-django41
py{38,39,310,311,312}-django42

[testenv]
deps =
Expand All @@ -11,6 +12,6 @@ deps =
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
py36: pylint==2.9.6
py{37,38,39,310,311}: pylint==2.17.2
py{37,38,39,310,311,312}: pylint==2.17.2
commands =
pylint --disable=R,C cuser

0 comments on commit d80c85d

Please sign in to comment.