Skip to content

Commit ea6c4c3

Browse files
committed
Drop support for Python 3.5
1 parent 370e725 commit ea6c4c3

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/all.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
python-version:
53-
- '3.5.10'
5453
- '3.6.15'
5554
- '3.7.17'
5655
steps:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def get_docs_url():
6464
'Programming Language :: Python :: 2',
6565
'Programming Language :: Python :: 2.7',
6666
'Programming Language :: Python :: 3',
67-
'Programming Language :: Python :: 3.5',
6867
'Programming Language :: Python :: 3.6',
6968
'Programming Language :: Python :: 3.7',
7069
'Programming Language :: Python :: 3.8',
@@ -80,7 +79,7 @@ def get_docs_url():
8079

8180
zip_safe=False,
8281

83-
python_requires='>= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*',
82+
python_requires='>= 2.7, != 3.0.*, != 3.1.*, != 3.2.*, != 3.3.*, != 3.4.*, != 3.5.*',
8483

8584
install_requires=[
8685
'numpy',

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ envlist =
66
{py39}-numpy{1_19_3,1_26_4,latest}
77
{py38}-numpy{1_17_3,latest}
88
{py37}-numpy{1_15_0,latest}
9-
{py35,py36}-numpy{1_13_0,latest}
9+
{py36}-numpy{1_13_0,latest}
1010
{py27}-numpy{1_8_0,1_13_0,latest}
1111
recreate = True
1212

@@ -25,7 +25,6 @@ python =
2525
[testenv]
2626
basepython =
2727
py27: python2.7
28-
py35: python3.5
2928
py36: python3.6
3029
py37: python3.7
3130
py38: python3.8

0 commit comments

Comments
 (0)