Skip to content

Commit ed5b912

Browse files
authored
Drop support for Python 3.5 (#158)
1 parent f24f81f commit ed5b912

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', 'pypy3']
11+
python-version: ['3.6', '3.7', '3.8', '3.9', 'pypy3']
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'pytest-runner',
3333
],
3434
version=version,
35-
python_requires='~=3.5',
35+
python_requires='~=3.6',
3636
classifiers=[
3737
"Development Status :: 4 - Beta",
3838
"License :: OSI Approved :: MIT License",
@@ -42,7 +42,6 @@
4242
"Operating System :: POSIX :: Linux",
4343
"Operating System :: MacOS :: MacOS X",
4444
"Operating System :: POSIX :: SunOS/Solaris",
45-
"Programming Language :: Python :: 3.5",
4645
"Programming Language :: Python :: 3.6",
4746
"Programming Language :: Python :: 3.7",
4847
"Programming Language :: Python :: 3.8",

0 commit comments

Comments
 (0)