Skip to content

Commit 265fd93

Browse files
authored
Update minimum python version to 3.6 (#119)
In a few weeks, it will be 5 years since the Python 3.5.0 release (13 Sep 2015), which is the normal EOL period for Python.
1 parent eedeae5 commit 265fd93

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,8 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.5', '3.6', '3.8']
23+
PYTHON_VERSION: ['3.6', '3.8']
2424
PLATFORM: ['ubuntu-latest', 'macos-latest', 'windows-latest']
25-
exclude:
26-
- PYTHON_VERSION: '3.6'
27-
PLATFORM: 'macos-latest'
28-
- PYTHON_VERSION: '3.6'
29-
PLATFORM: 'windows-latest'
3025
steps:
3126
- name: Checkout
3227
uses: actions/checkout@v1

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
'License :: OSI Approved :: BSD License',
3131
'Programming Language :: Python',
3232
'Programming Language :: Python :: 3',
33-
'Programming Language :: Python :: 3.5',
3433
'Programming Language :: Python :: 3.6',
3534
'Programming Language :: Python :: 3.7',
3635
'Programming Language :: Python :: 3.8',
@@ -39,7 +38,7 @@
3938
)
4039

4140
if 'setuptools' in sys.modules:
42-
setup_args['python_requires'] = '>=3.5'
41+
setup_args['python_requires'] = '>=3.6'
4342
setup_args['extras_require'] = {
4443
'test': [
4544
'codecov',

0 commit comments

Comments
 (0)