Skip to content

Commit

Permalink
support for django 5.0 and python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham authored and wizpig64 committed Jan 22, 2024
1 parent 59fec9e commit 5794ea0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/setup-python@v2
with:
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
Expand All @@ -56,6 +57,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
]
)
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
envlist =
py{38,39,310}-django{32,40}
py{38,39,310,311}-django{41,42}
py{310,311,312}-django{50}

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12-dev: py312
3.12: py312

[testenv]
changedir=testing
Expand All @@ -19,4 +20,5 @@ deps=
django40: Django~=4.0
django41: Django~=4.1
django42: Django~=4.2
django50: Django~=5.0
jinja2

0 comments on commit 5794ea0

Please sign in to comment.