Skip to content

Commit 89373eb

Browse files
authored
declare official support for Django 5.2 (#103)
* test: fix Django 5.1 tox env to not install 5.2 * test: add Django 5.2 to tox runs * build: declare django 5.2 compatibility
1 parent 464ff86 commit 89373eb

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def read(*names, **kwargs):
4545
Framework :: Django :: 3.2
4646
Framework :: Django :: 4.2
4747
Framework :: Django :: 5.1
48+
Framework :: Django :: 5.2
4849
"""
4950

5051
setup(

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@
1616
# When changing this, also update the classifiers in setup.py:
1717
envlist =
1818
py39-django{22,32,42}-cov{6,7,tip},
19-
py310-django{32,42,51}-cov{6,7,tip},
20-
py311-django{42,51}-cov{6,7,tip},
21-
py312-django{51,tip}-cov{7,tip},
22-
py313-django{51,tip}-cov{7,tip},
19+
py310-django{32,42,51,52}-cov{6,7,tip},
20+
py311-django{42,51,52}-cov{6,7,tip},
21+
py312-django{51,52,tip}-cov{7,tip},
22+
py313-django{51,52,tip}-cov{7,tip},
2323
check,pkgcheck,doc
2424

2525
[testenv]
@@ -30,7 +30,8 @@ deps =
3030
django22: Django>=2.2,<3.0
3131
django32: Django>=3.2,<4.0
3232
django42: Django>=4.2,<5.0
33-
django51: Django>=5.1,<6.0
33+
django51: Django>=5.1,<5.2
34+
django52: Django>=5.2,<6.0
3435
djangotip: git+https://github.com/django/django.git
3536
pytest
3637
unittest-mixins==1.6

0 commit comments

Comments
 (0)