Skip to content

Commit 8fb6d21

Browse files
jcapiitaogasman
authored andcommitted
1 parent 10bb745 commit 8fb6d21

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,18 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix: # https://docs.djangoproject.com/en/5.0/faq/install/#faq-python-version-support
15-
django-version: [42, 50]
16-
python-version: [3.9, "3.10", 3.11, 3.12]
15+
django-version: ["42", "50", "51"]
16+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1717

1818
exclude:
19-
- django-version: 50
20-
python-version: 3.9
19+
- django-version: "42"
20+
python-version: "3.13"
21+
- django-version: "50"
22+
python-version: "3.9"
23+
- django-version: "50"
24+
python-version: "3.13"
25+
- django-version: "51"
26+
python-version: "3.9"
2127

2228
steps:
2329
- uses: actions/checkout@v4

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@
2727
'Programming Language :: Python :: 3.10',
2828
'Programming Language :: Python :: 3.11',
2929
'Programming Language :: Python :: 3.12',
30+
'Programming Language :: Python :: 3.13',
3031
'Framework :: Django',
3132
'Framework :: Django :: 4.2',
3233
'Framework :: Django :: 5.0',
34+
'Framework :: Django :: 5.1',
3335
],
3436
python_requires='>=3.9',
3537
install_requires=[

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[tox]
2-
envlist = django{42,50}
2+
envlist = django{42,50,51}
33

44
[testenv]
55
commands =
66
python runtests.py
77
deps =
88
django42: Django>=4.2,<5.0
99
django50: Django>=5.0,<5.1
10+
django51: Django>=5.1,<5.2

0 commit comments

Comments
 (0)