Skip to content

Commit f0e87e2

Browse files
committed
Remove unsupported Django releases
Those releases are now unsupported (c.f unsupported previous releases [1]) We also remove the support of the associated python runtime. [2] [1] https://www.djangoproject.com/download/ [2] https://docs.djangoproject.com/en/5.0/faq/install/#what-python-version-can-i-use-with-django
1 parent edfa47a commit f0e87e2

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,8 @@ 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: [32, 41, 42, 50]
16-
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
17-
18-
exclude:
19-
- django-version: 32
20-
python-version: 3.11
21-
- django-version: 32
22-
python-version: 3.12
23-
- django-version: 41
24-
python-version: 3.12
25-
- django-version: 50
26-
python-version: 3.8
27-
- django-version: 50
28-
python-version: 3.9
15+
django-version: [50]
16+
python-version: ["3.10", 3.11, 3.12]
2917

3018
steps:
3119
- uses: actions/checkout@v4

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
[tox]
2-
envlist = django{32,41,42,50}
2+
envlist = django50
33

44
[testenv]
55
commands =
66
python runtests.py
77
deps =
8-
django32: Django>=3.2,<3.3
9-
django41: Django>=4.1,<4.2
10-
django42: Django>=4.2,<5.0
118
django50: Django>=5.0,<5.1

0 commit comments

Comments
 (0)