Skip to content

Commit ea43c53

Browse files
committed
Drop support for Python 3.5, 3.6
Both are end-of-life (as of 2020-09-30 and 2021-12-23, respectively). Set PyPy version to 3.7 as: - the default version, PyPy 3.6, seems to no longer be available. - we want to drop support for 3.6 anyway (including PyPy). - the Python version is now required to be in `x.y` format.
1 parent 24f63f2 commit ea43c53

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
13+
python-version: [3.7, 3.8, 3.9, pypy3.7]
1414

1515
steps:
1616
# Python needs to be setup before checkout to prevent files from being

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
'Intended Audience :: Developers',
3333
'License :: OSI Approved :: BSD License',
3434
'Operating System :: OS Independent',
35-
'Programming Language :: Python :: 3.5',
36-
'Programming Language :: Python :: 3.6',
3735
'Programming Language :: Python :: 3.7',
3836
'Programming Language :: Python :: 3.8',
3937
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)