Skip to content

Commit

Permalink
Drop python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xdrop committed Aug 15, 2024
1 parent aa97921 commit 96f730b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ jobs:
matrix:
python:
- py27
- py36
- py37
httplib:
- default
- fido
- fido-requests2dot17
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 2.7
- uses: actions/setup-python@v2
with:
python-version: 3.7
Expand All @@ -33,6 +35,9 @@ jobs:
- pre-commit
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 2.7
- uses: actions/setup-python@v2
with:
python-version: 3.7
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py27,py36,py37}-{default,fido}, {py27,py36,py37}-fido-requests2dot17, mypy, pre-commit
envlist = {py37}-{default,fido}, {py27,py37}-fido-requests2dot17, mypy, pre-commit

[testenv]
deps =
Expand Down Expand Up @@ -37,6 +37,8 @@ deps =
Twisted<21
# since we run in py 2.7 compatible mode, swagger-spec-validator>=3.0.0 causes syntax errors
swagger-spec-validator<3.0.0
# so does yelp-bytes < 0.4.0
yelp-bytes==0.4.0
-rrequirements-dev.txt
.[fido]
mypy==0.790
Expand Down

0 comments on commit 96f730b

Please sign in to comment.