Skip to content

Commit c652767

Browse files
committed
Removed support for Python 3.6
1 parent ef74319 commit c652767

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
10+
python-version: [3.7, 3.8, 3.9, "3.10"]
1111

1212
steps:
1313
- uses: actions/checkout@v3

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Unreleased
88

99
* Confirmed support for Django 4.1.
1010
* Confirmed support for Python 3.10.
11+
* Removed support for Python 3.6.
1112

1213
2.2.0 (2022-01-31)
1314
------------------

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535
'Operating System :: OS Independent',
3636
'Programming Language :: Python',
3737
'Programming Language :: Python :: 3',
38-
'Programming Language :: Python :: 3.5',
39-
'Programming Language :: Python :: 3.6',
4038
'Programming Language :: Python :: 3.7',
4139
'Programming Language :: Python :: 3.8',
4240
'Programming Language :: Python :: 3.9',

tox.ini

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
[tox]
22
envlist =
3-
py3{5,6,7,8,9}-django22
4-
py3{6,7,8,9}-django30
5-
py3{6,7,8,9}-django31
6-
py3{6,7,8,9,10}-django32
3+
py3{7,8,9}-django22
4+
py3{7,8,9}-django30
5+
py3{7,8,9}-django31
6+
py3{7,8,9,10}-django32
77
py3{8,9,10}-django40
88
py3{8,9,10}-django41
99
py3{8,9,10}-main
1010

1111
[testenv]
1212
basepython =
13-
py35: python3.5
14-
py36: python3.6
1513
py37: python3.7
1614
py38: python3.8
1715
py39: python3.9

0 commit comments

Comments
 (0)