Skip to content

Commit

Permalink
Merge pull request #12 from codexterous/master
Browse files Browse the repository at this point in the history
Adds support for Django 5.0 and Python 3.12. Only configuration changes were required.
  • Loading branch information
tiborhari authored May 11, 2024
2 parents b4677ac + 6cf4657 commit d710dce
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,5 @@ Django version Python versions
3.2 LTS 3.8, 3.9, 3.10
4.1 3.8, 3.9, 3.10, 3.11
4.2 3.8, 3.9, 3.10, 3.11
5.0 3.10, 3.11, 3.12
============== ========================
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
package_data={'django_admin_reset': ['templates/admin/*.html',
'locale/*/LC_MESSAGES/*.[mp]o']},
python_requires='>=3.8, <4',
install_requires=['django>=3.2,<4.3,!=4.0'],
install_requires=['django>=3.2,<5.1,!=4.0'],
extras_require={
'testing': [
'flake8~=6.0.0',
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ envlist =
py{38,39,310}-django32
py{38,39,310,311}-django41
py{38,39,310,311}-django42
py{310,311,312}-django50
docs
package

Expand All @@ -12,6 +13,7 @@ deps =
django32: Django>=3.2,<3.3
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
commands =
pip install -e .[testing]
pytest
Expand Down

0 comments on commit d710dce

Please sign in to comment.