Skip to content

Commit 00b5cb5

Browse files
committed
Add support of python 3.13 and django 5.1
1 parent 2568827 commit 00b5cb5

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-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

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)