Skip to content

Commit d4fa3c8

Browse files
committed
Semi-drop Python 3.6 and 3.7
For the sake of DX, we are dropping the full support for Python 3.6 and 3.7, that is, the versions that have reached their end-of-life. In order to fully support Django 3.2, the package can still be installed on older Python versions, and the we also keep the syntax checks to ensure the app runs on older Python versions. However, we are not testing it in any way.
1 parent 80fa518 commit d4fa3c8

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ jobs:
1919
matrix:
2020
# https://docs.djangoproject.com/faq/install/#what-python-version-can-i-use-with-django
2121
include:
22-
- django-version: '3.2'
23-
python-version: '3.6'
24-
- django-version: '3.2'
25-
python-version: '3.7'
2622
- django-version: '3.2'
2723
python-version: '3.8'
2824
- django-version: '3.2'

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers =[
3030
"Programming Language :: Python :: 3.9",
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: 3.12",
3334
"Topic :: Software Development :: Libraries",
3435
"Topic :: Software Development :: Libraries :: Python Modules",
3536
]

tox.ini

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
envlist =
33
py3{11, 10, 9, 8}-dj42
44
py3{11, 10, 9, 8}-dj41
5-
py3{10, 9, 8, 7, 6}-dj32
5+
py3{10, 9, 8}-dj32
66
py3{12, 11, 10}-djmain
77
isolated_build = true
88

@@ -24,16 +24,8 @@ commands =
2424
coverage report
2525
coverage xml
2626

27-
[testenv:py36-dj32]
28-
download = true
29-
deps =
30-
{[testenv]deps}
31-
importlib_metadata
32-
3327
[gh-actions]
3428
python =
35-
3.6: py36
36-
3.7: py37
3729
3.8: py38
3830
3.9: py39
3931
3.10: py310

0 commit comments

Comments
 (0)