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 6, 2023
1 parent f59ae5c commit f4d50ac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ jobs:
python-version: "3.10"
- django-version: "4.2"
python-version: "3.11"
- django-version: "4.2"
python-version: "3.12"

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
install_requires=[],
zip_safe=False,
Expand Down
6 changes: 4 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ envlist =
{py36,py37,py38,py39}-django{30,31}
{py36,py37,py38,py39,py310}-django32
{py38,py39,py310}-django40
{py38,py39,py310,py311}-django{41,42}
{py38,py39,py310,py311}-django41
{py38,py39,py310,py311,py312}-django42

[testenv]
passenv = DATABASE_URL
Expand All @@ -28,7 +29,7 @@ deps =
django42: Django>=4.2,<5.0
dj-database-url==0.5.0
py{27,35,36,37,38,39,310}: psycopg2==2.8.5
py311: psycopg2==2.9.6
py{311,312}: psycopg2==2.9.6

[gh-actions]
python =
Expand All @@ -40,6 +41,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[gh-actions:env]
DJANGO =
Expand Down

0 comments on commit f4d50ac

Please sign in to comment.