We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2568827 commit 00b5cb5Copy full SHA for 00b5cb5
.github/workflows/test.yml
@@ -12,9 +12,13 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix: # https://docs.djangoproject.com/en/5.0/faq/install/#faq-python-version-support
15
- django-version: [50]
+ django-version: [50, 51]
16
python-version: [3.10, 3.11, 3.12]
17
18
+ exclude:
19
+ - django-version: 50
20
+ python-version: 3.13
21
+
22
steps:
23
- uses: actions/checkout@v4
24
- name: setup python
tox.ini
@@ -1,8 +1,9 @@
1
[tox]
2
-envlist = django50
+envlist = django{50,51}
3
4
[testenv]
5
commands =
6
python runtests.py
7
deps =
8
django50: Django>=5.0,<5.1
9
+ django51: Django>=5.1,<5.2
0 commit comments