Skip to content

Commit 3734178

Browse files
committed
1 parent 0afc63d commit 3734178

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/test.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ 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: [50]
15+
django-version: [50, 51]
1616
python-version: [3.10, 3.11, 3.12]
1717

18+
exclude:
19+
- django-version: 50
20+
python-version: 3.13
21+
1822
steps:
1923
- uses: actions/checkout@v4
2024
- name: setup python

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@
2626
'Programming Language :: Python :: 3.10',
2727
'Programming Language :: Python :: 3.11',
2828
'Programming Language :: Python :: 3.12',
29+
'Programming Language :: Python :: 3.13',
2930
'Framework :: Django',
3031
'Framework :: Django :: 5.0',
32+
'Framework :: Django :: 5.1',
3133
],
3234
python_requires='>=3.10',
3335
install_requires=[

tox.ini

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[tox]
2-
envlist = django50
2+
envlist = django{50,51}
33

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

0 commit comments

Comments
 (0)