Skip to content

Commit e93707c

Browse files
committed
Drop python3.6 support
Follows suite of flask and cryptography packages.
1 parent 626e8e2 commit e93707c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/type_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python: [3.6, 3.7, 3.8, 3.9, '3.10']
13+
python: [3.7, 3.8, 3.9, '3.10']
1414

1515
steps:
1616
- uses: actions/checkout@v2

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python: [3.6, 3.7, 3.8, 3.9, '3.10', pypy3]
13+
python: [3.7, 3.8, 3.9, '3.10', pypy3]
1414

1515
steps:
1616
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"typing_extensions>=3.7.4; python_version<'3.8'", # typing.Literal
3636
],
3737
extras_require={"asymmetric_crypto": ["cryptography>=3.3.1"]},
38-
python_requires=">=3.6,<4",
38+
python_requires=">=3.7,<4",
3939
classifiers=[
4040
"Development Status :: 5 - Production/Stable",
4141
"Environment :: Web Environment",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py36,py37,py38,py39,py310,pypy3,mypy,coverage,style,docs
7+
envlist = py37,py38,py39,py310,pypy3,mypy,coverage,style,docs
88

99
[testenv]
1010
commands =

0 commit comments

Comments
 (0)