File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
strategy :
14
14
matrix : # https://docs.djangoproject.com/en/5.0/faq/install/#faq-python-version-support
15
- django-version : [50]
15
+ django-version : [50, 51 ]
16
16
python-version : [3.10, 3.11, 3.12]
17
17
18
+ exclude :
19
+ - django-version : 50
20
+ python-version : 3.13
21
+
18
22
steps :
19
23
- uses : actions/checkout@v4
20
24
- name : setup python
Original file line number Diff line number Diff line change 26
26
'Programming Language :: Python :: 3.10' ,
27
27
'Programming Language :: Python :: 3.11' ,
28
28
'Programming Language :: Python :: 3.12' ,
29
+ 'Programming Language :: Python :: 3.13' ,
29
30
'Framework :: Django' ,
30
31
'Framework :: Django :: 5.0' ,
32
+ 'Framework :: Django :: 5.1' ,
31
33
],
32
34
python_requires = '>=3.10' ,
33
35
install_requires = [
Original file line number Diff line number Diff line change 1
1
[tox]
2
- envlist = django50
2
+ envlist = django{50,51}
3
3
4
4
[testenv]
5
5
commands =
6
6
python runtests.py
7
7
deps =
8
8
django50: Django>=5.0,<5.1
9
+ django51: Django>=5.1,<5.2
You can’t perform that action at this time.
0 commit comments