Skip to content

Commit 71c72e1

Browse files
mahdirahimi1999pauloxnet
authored andcommitted
chore: add Django 5.2 support to test matrix and packaging
- Added Django 5.2 to the GitHub Actions workflow matrix - Updated tox.ini to include Django 5.2 test environments - Declared Django 5.2 support in setup.py classifiers and deps
1 parent 774a6f8 commit 71c72e1

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
max-parallel: 5
1717
matrix:
1818
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
19-
django-version: ['4.2', '5.0', '5.1']
19+
django-version: ['4.2', '5.0', '5.1', '5.2']
2020
drf-version: ['3.14', '3.15']
2121
exclude:
2222
- drf-version: '3.14'

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"Framework :: Django :: 4.2",
7474
"Framework :: Django :: 5.0",
7575
"Framework :: Django :: 5.1",
76+
"Framework :: Django :: 5.2",
7677
"Intended Audience :: Developers",
7778
"License :: OSI Approved :: MIT License",
7879
"Operating System :: OS Independent",

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ envlist=
33
py{39,310,311,312}-dj42-drf{314,315}-pyjwt{171,2}-tests
44
py{310,311,312}-dj50-drf315-pyjwt{171,2}-tests
55
py{310,311,312,313}-dj51-drf315-pyjwt{171,2}-tests
6+
py{311,312,313}-dj52-drf315-pyjwt{171,2}-tests
67
docs
78

89
[gh-actions]
@@ -18,6 +19,7 @@ DJANGO=
1819
4.2: dj42
1920
5.0: dj50
2021
5.1: dj51
22+
5.2: dj52
2123
DRF=
2224
3.14: drf314
2325
3.15: drf315
@@ -33,6 +35,7 @@ deps=
3335
dj42: Django>=4.2,<4.3
3436
dj50: Django>=5.0,<5.1
3537
dj51: Django>=5.1,<5.2
38+
dj52: Django>=5.2,<5.3
3639
drf314: djangorestframework>=3.14,<3.15
3740
drf315: djangorestframework>=3.15,<3.16
3841
pyjwt171: pyjwt>=1.7.1,<1.8

0 commit comments

Comments
 (0)