Skip to content

Commit 3951357

Browse files
committed
chore: test for py36
1 parent 8ccb63f commit 3951357

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ jobs:
3030
- django-version: '3.2'
3131
python-version: '3.10'
3232

33-
- django-version: '4.0'
34-
python-version: '3.8'
35-
- django-version: '4.0'
36-
python-version: '3.9'
37-
- django-version: '4.0'
38-
python-version: '3.10'
39-
4033
- django-version: '4.1'
4134
python-version: '3.8'
4235
- django-version: '4.1'

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ classifiers =[
1616
"Development Status :: 5 - Production/Stable",
1717
"Framework :: Django",
1818
"Framework :: Django :: 3.2",
19-
"Framework :: Django :: 4.0",
2019
"Framework :: Django :: 4.1",
2120
"Framework :: Django :: 4.2",
2221
"Intended Audience :: Developers",

tox.ini

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
envlist =
33
py3{11, 10, 9, 8}-dj42
44
py3{11, 10, 9, 8}-dj41
5-
py3{10, 9, 8}-dj40
65
py3{10, 9, 8, 7, 6}-dj32
76
py3{12, 11, 10}-djmain
87
isolated_build = true
@@ -12,7 +11,6 @@ deps =
1211
covdefaults
1312
coverage[toml]
1413
dj32: Django~=3.2.16
15-
dj40: Django~=4.0.8
1614
dj41: Django~=4.1.3
1715
dj42: Django~=4.2.1
1816
djmain: https://github.com/django/django/tarball/main
@@ -26,6 +24,12 @@ commands =
2624
coverage report
2725
coverage xml
2826

27+
[testenv:py36-dj32]
28+
download = true
29+
deps =
30+
{[testenv]deps}
31+
importlib_metadata
32+
2933
[gh-actions]
3034
python =
3135
3.6: py36
@@ -39,7 +43,6 @@ python =
3943
[gh-actions:env]
4044
django =
4145
3.2: dj32
42-
4.0: dj40
4346
4.1: dj41
4447
4.2: dj42
4548
main: djmain

0 commit comments

Comments
 (0)