Skip to content

Commit

Permalink
drop support for python 3.5
Browse files Browse the repository at this point in the history
python version 3.5 has reach end of life
  • Loading branch information
Joffrey MANDER authored and Pr0Ger committed Apr 3, 2021
1 parent 064c497 commit fb1bf6a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .drone.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ local Pipeline(py_version) = {
},
],
},
Pipeline("3.5"),
Pipeline("3.6"),
Pipeline("3.7"),
Pipeline("3.8"),
Expand All @@ -47,7 +46,6 @@ local Pipeline(py_version) = {
status: ['success'],
},
depends_on: [
"tests (Python 3.5)",
"tests (Python 3.6)",
"tests (Python 3.7)",
"tests (Python 3.8)",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
universal=1

[mypy]
python_version = 3.5
python_version = 3.6

# Dynamic typing
disallow_subclassing_any = True
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35, py36, py37, py38
envlist = py36, py37, py38

[testenv]
commands = pytest {posargs}
Expand Down

0 comments on commit fb1bf6a

Please sign in to comment.