Skip to content

Commit

Permalink
Drop python3.6 support
Browse files Browse the repository at this point in the history
Follows suite of flask and cryptography packages.
  • Loading branch information
vimalloc committed Jul 27, 2022
1 parent 626e8e2 commit e93707c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/type_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, '3.10']
python: [3.7, 3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.8, 3.9, '3.10', pypy3]
python: [3.7, 3.8, 3.9, '3.10', pypy3]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"typing_extensions>=3.7.4; python_version<'3.8'", # typing.Literal
],
extras_require={"asymmetric_crypto": ["cryptography>=3.3.1"]},
python_requires=">=3.6,<4",
python_requires=">=3.7,<4",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py36,py37,py38,py39,py310,pypy3,mypy,coverage,style,docs
envlist = py37,py38,py39,py310,pypy3,mypy,coverage,style,docs

[testenv]
commands =
Expand Down

0 comments on commit e93707c

Please sign in to comment.