Skip to content

Commit

Permalink
Merge pull request #583 from adamchainz/django_5.0
Browse files Browse the repository at this point in the history
Test Django 5.0
  • Loading branch information
shanx authored Feb 10, 2024
2 parents 74a064d + 2708023 commit a94d01f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To be released

- Remove ``SaveSignalHandlingModel``. This model used a modified copy of the internal Django method `Model.save_base()`
and had not been updated for upstream bug fixes changes since its addition. (GH-#582)
- Confirm support for `Django 4.2`
- Confirm support for `Django 4.2` and `Django 5.0`.
- Add support for `Python 3.11` (GH-#545)
- Add support for `Python 3.12` (GH-#545)
- Drop support for `Python 3.7` (GH-#545)
Expand Down
8 changes: 4 additions & 4 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==6.2.5
pytest-django==3.10.0
psycopg2-binary==2.9.5
pytest-cov==2.10.1
pytest==7.4.3
pytest-django==4.5.2
psycopg2-binary==2.9.9
pytest-cov==4.1.0
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def long_desc(root_path):
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
],
zip_safe=False,
package_data={
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[tox]
envlist =
py{37,38,39,310}-dj32
py{38,39,310,311,312}-dj{40,41,42,main}
py{38,39,310}-dj{40}
py{38,39,310,311}-dj{41}
py{38,39,310,311}-dj{42}
py{310,311,312}-dj{50}
py{310,311,312}-dj{main}
flake8
isort

Expand All @@ -22,6 +26,7 @@ deps =
dj40: Django==4.0.*
dj41: Django==4.1.*
dj42: Django==4.2.*
dj50: Django==5.0.*
djmain: https://github.com/django/django/archive/main.tar.gz
ignore_outcome =
djmain: True
Expand Down

0 comments on commit a94d01f

Please sign in to comment.