Skip to content

Commit 1e4b328

Browse files
committed
drop support for python 3.6, past EOL date
1 parent 78b0ab3 commit 1e4b328

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,10 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
14+
python-version: ['3.7', '3.8', '3.9', '3.10']
1515
django-version: ['2.2', '3.1', '3.2', '4.0', 'main']
1616

1717
exclude:
18-
- python-version: '3.6'
19-
django-version: '4.0'
20-
- python-version: '3.6'
21-
django-version: 'main'
2218
- python-version: '3.7'
2319
django-version: '4.0'
2420
- python-version: '3.7'

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Full list of changes:
2727
- Russian translations update (gh-897)
2828
- Add Python 3.10 to test matrix (gh-899)
2929
- Added support for Django 4.0 (gh-898)
30+
- Dropped support for Python 3.6, which reached end-of-life on 2021-12-23 (gh-946).
3031

3132
3.0.0 (2021-04-16)
3233
------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
"Framework :: Django :: 3.2",
2929
"Framework :: Django :: 4.0",
3030
"Programming Language :: Python",
31-
"Programming Language :: Python :: 3.6",
31+
"Programming Language :: Python :: 3",
3232
"Programming Language :: Python :: 3.7",
3333
"Programming Language :: Python :: 3.8",
3434
"Programming Language :: Python :: 3.9",
3535
"Programming Language :: Python :: 3.10",
3636
"License :: OSI Approved :: BSD License",
3737
],
38-
python_requires=">=3.6",
38+
python_requires=">=3.7",
3939
include_package_data=True,
4040
)

0 commit comments

Comments
 (0)