Skip to content

Commit

Permalink
Support Django 5.0 (#464)
Browse files Browse the repository at this point in the history
* Support Django 5.0

* Add Django 5.0 to PyPI classifiers

* Update the CHANGELOG.md
  • Loading branch information
amureki committed Dec 4, 2023
1 parent 38d2dd7 commit b8fbd4d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

- Add Django 5.0 support

### Changed

### Removed
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
env_list =
py38-django{32,41,42}-{postgresql,sqlite}
py39-django{32,41,42}-{postgresql,sqlite}
py310-django{32,41,42}-{postgresql,sqlite}
py311-django{32,41,42}-{postgresql,sqlite}
py311-django{42}-{postgresql-psycopg3}
py312-django{42}-{postgresql-psycopg3}
py310-django{32,41,42,50}-{postgresql,sqlite}
py311-django{32,41,42,50}-{postgresql,sqlite}
py311-django{42,50}-{postgresql-psycopg3}
py312-django{42,50}-{postgresql-psycopg3}

[testenv]
package = wheel
Expand All @@ -27,6 +27,7 @@ deps =
django32: Django==3.2
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5
django50: Django>=5.0,<5.1
postgresql: psycopg2-binary
postgresql-psycopg3: psycopg
commands =
Expand Down

0 comments on commit b8fbd4d

Please sign in to comment.