Skip to content

Commit 94b5154

Browse files
committed
1 parent 6617241 commit 94b5154

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ 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:
1919
- django-version: 50
2020
python-version: 3.9
21+
- django-version: 50
22+
python-version: 3.13
23+
- django-version: 51
24+
python-version: 3.9
2125

2226
steps:
2327
- 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)