Skip to content

Commit 4b30a25

Browse files
committed
riotctrl: drop python 3.5 testing
Python 3.5 reached EOL with the release of [Python 3.5.10], so we should drop support for it for the next release of `riotctrl` as well. [Python 3.5.10]: https://www.python.org/downloads/release/python-3510/
1 parent 9148884 commit 4b30a25

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
max-parallel: 5
1818
matrix:
19-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
19+
python-version: [3.6, 3.7, 3.8, 3.9]
2020
tox-testenv: ["test", "test-rapidjson"]
2121

2222
steps:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def get_version(package):
3939
classifiers=['Development Status :: 2 - Pre-Alpha',
4040
'Programming Language :: Python',
4141
'Programming Language :: Python :: 3',
42-
'Programming Language :: Python :: 3.5',
4342
'Programming Language :: Python :: 3.6',
4443
'Programming Language :: Python :: 3.7',
4544
'Programming Language :: Python :: 3.8',
@@ -51,5 +50,5 @@ def get_version(package):
5150
extra_require={
5251
'rapidjson': ['python-rapidjson']
5352
},
54-
python_requires='>=3.5',
53+
python_requires='>=3.6',
5554
)

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[tox]
2-
envlist = test,lint,flake8,py35,py36,py37,py38
2+
envlist = test,lint,flake8,py36,py37,py38,py39
33

44
[gh-actions]
55
python =
6-
3.5: py35,test
76
3.6: py36,test
87
3.7: py37,test
98
3.8: py38,test

0 commit comments

Comments
 (0)