Skip to content

Commit a951eb4

Browse files
committed
Support Django 5.2
1 parent 9ba8a56 commit a951eb4

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ classifiers = [
1010
'Framework :: Django',
1111
'Framework :: Django :: 3.2',
1212
'Framework :: Django :: 4.2',
13+
'Framework :: Django :: 5.2',
1314
'Intended Audience :: Developers',
1415
'License :: OSI Approved :: BSD License',
1516
'Operating System :: OS Independent',

requirements/local.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r testing.txt
22

33
bump-my-version==1.1.2
4-
Django>=4.2,<5.0
4+
Django>=5.2,<6.0
55
django-storages[s3]>=1.14
66
tox==4.25.0
77
tox-uv==1.25.0

tox.ini

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
env_list =
33
check
44
lint
5-
{py39,py310}-django3.2
6-
{py39,py310,py311,py312}-django4.2
5+
py{39,310}-django3.2
6+
py{39,310,311,312}-django4.2
7+
py{310,311,312}-django5.2
78
coverage
89
no_package = true
910

@@ -13,8 +14,10 @@ deps =
1314
py39: s3transfer # uv workaround - avoid older version being installed
1415
django3.2: Django>=3.2,<4.0
1516
django4.2: Django>=4.2,<5.0
17+
django5.2: Django>=5.2,<6.0
1618
django3.2: django-storages[s3]>=1.14
1719
django4.2: django-storages[s3]>=1.14
20+
django5.2: django-storages[s3]>=1.14
1821
allowlist_externals = make
1922
commands = make test
2023
package = editable

0 commit comments

Comments
 (0)