Skip to content
This repository was archived by the owner on Dec 21, 2024. It is now read-only.

Commit e15b213

Browse files
committed
Drop python3.5 and python3.6 support
Their respective EOL are 2020-09-13 and 2021-12-23
1 parent 5842362 commit e15b213

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package_dir={'': 'src'},
2121
packages=find_packages("src", exclude="tests"),
2222
# https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
23-
python_requires='>=3.5',
23+
python_requires='>=3.7',
2424
test_suite="tests.tests",
2525
classifiers=[
2626
'Development Status :: 6 - Mature',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
[tox]
2-
envlist = pypy38, py36, py37, py38, py39, py310
2+
envlist = pypy38, py37, py38, py39, py310
33

44
[gh-actions]
55
python =
66
pypy-3.8: pypy38
7-
3.6: py36
87
3.7: py37
98
3.8: py38
109
3.9: py39

0 commit comments

Comments
 (0)