Skip to content

Commit

Permalink
Add django 5 support (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
pfouque committed Jan 9, 2024
1 parent 95d2af7 commit e45d984
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2023-10-30
Add support for Python 3.12
Add support for Django 5.0

2023-10-18
Add alternative names for SubRegion
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ def read(fname):
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"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 :: Software Development :: Libraries :: Python Modules",
],
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist =
py{310,311,312}-django50-{sqlite,mysql,postgresql}
py{38,39,310,311,312}-django42-{sqlite,mysql,postgresql}
py{38,39,310,311}-django41-{sqlite,mysql,postgresql}
py{38,39,310}-django40-{sqlite,mysql,postgresql}
Expand Down Expand Up @@ -62,7 +63,8 @@ deps =
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2.8,<5.0
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1
postgresql: psycopg2-binary==2.9.9
mysql: mysqlclient
setenv =
Expand Down

0 comments on commit e45d984

Please sign in to comment.