Skip to content

Commit

Permalink
Merge pull request #898 from Trafire/894-django5_support
Browse files Browse the repository at this point in the history
894 - Add django 5.0 Support
  • Loading branch information
rtpg authored Jun 23, 2024
2 parents 5cdfef7 + f7493ac commit b9a9c97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Changelog
The previous behavior for this was that by default tag items were not ordered. In practice tag items often end up ordered by creation date anyways, just due to how databases work, but this was not a guarantee.
If you wish to have the old behavior, set ``ordering=[]`` to your ``TaggableManager`` instance.
We believe that this should not cause a noticable performance change, and the number of queries involved should not change.
* Add Django 5.0 support (no code changes were needed, but now we test this release).

5.0.1 (2023-10-26)
~~~~~~~~~~~~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ classifiers =
Framework :: Django
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 Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ envlist =
flake8
isort
py{38,39,310,311}-dj{41,42}
py{310,311}-dj{50}
py{310,311}-djmain
docs

Expand All @@ -19,6 +20,7 @@ python =
deps =
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
djmain: https://github.com/django/django/archive/main.tar.gz
coverage
djangorestframework
Expand Down

0 comments on commit b9a9c97

Please sign in to comment.