Skip to content

Commit fb1bf6a

Browse files
Joffrey MANDERPr0Ger
authored andcommitted
drop support for python 3.5
python version 3.5 has reach end of life
1 parent 064c497 commit fb1bf6a

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.drone.jsonnet

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ local Pipeline(py_version) = {
3535
},
3636
],
3737
},
38-
Pipeline("3.5"),
3938
Pipeline("3.6"),
4039
Pipeline("3.7"),
4140
Pipeline("3.8"),
@@ -47,7 +46,6 @@ local Pipeline(py_version) = {
4746
status: ['success'],
4847
},
4948
depends_on: [
50-
"tests (Python 3.5)",
5149
"tests (Python 3.6)",
5250
"tests (Python 3.7)",
5351
"tests (Python 3.8)",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
universal=1
33

44
[mypy]
5-
python_version = 3.5
5+
python_version = 3.6
66

77
# Dynamic typing
88
disallow_subclassing_any = True

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py35, py36, py37, py38
2+
envlist = py36, py37, py38
33

44
[testenv]
55
commands = pytest {posargs}

0 commit comments

Comments
 (0)