Skip to content

Commit 9fb8f35

Browse files
authored
Merge pull request #1480 from palnabarun/drop-python-3.5
Drop python 3.5
2 parents 9f4aadb + 30fe907 commit 9fb8f35

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
11+
python-version: [3.6, 3.7, 3.8, 3.9]
1212

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

.travis.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,11 @@ jobs:
2525
2626
- stage: test
2727
python: 3.9
28-
env: TOXENV=update-pycodestyle
28+
env: TOXENV=update-pycodestyle
2929
- python: 3.9
30-
env: TOXENV=coverage,codecov
30+
env: TOXENV=coverage,codecov
3131
- python: 3.7
3232
env: TOXENV=docs
33-
- python: 3.5
34-
env: TOXENV=py35
35-
- python: 3.5
36-
env: TOXENV=py35-functional
3733
- python: 3.6
3834
env: TOXENV=py36
3935
- python: 3.6
@@ -66,13 +62,10 @@ jobs:
6662
- stage: test
6763
python: 3.9
6864
env: TOXENV=update-pycodestyle
69-
arch: ppc64le
65+
arch: ppc64le
7066
- python: 3.7
7167
env: TOXENV=docs
7268
arch: ppc64le
73-
- python: 3.5
74-
env: TOXENV=py35
75-
arch: ppc64le
7669
- python: 3.6
7770
env: TOXENV=py36
7871
arch: ppc64le

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@
7373
"Operating System :: OS Independent",
7474
"Programming Language :: Python",
7575
"Programming Language :: Python :: 3",
76-
"Programming Language :: Python :: 3.5",
7776
"Programming Language :: Python :: 3.6",
7877
"Programming Language :: Python :: 3.7",
7978
"Programming Language :: Python :: 3.8",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py3{5,6,7,8,9}
4-
py3{5,6,7,8,9}-functional
3+
py3{6,7,8,9}
4+
py3{6,7,8,9}-functional
55

66
[testenv]
77
passenv = TOXENV CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)