Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.

Commit 711d4ab

Browse files
drop python2 support
- remove python2 from the .travis.yaml file - remove python2 from the tox.ini file - remove `-y` flag from `isort` command in `update-pycodestle.sh` script - add update-pycodestyle, coverage & codecov tests for python3 Signed-off-by: Priyanka Saggu <[email protected]>
1 parent b4d3aad commit 711d4ab

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.travis.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,12 @@ jobs:
1818
script: ./hack/verify-boilerplate.sh
1919
python: 3.7
2020
- stage: test
21-
python: 2.7
22-
env: TOXENV=py27
23-
- python: 2.7
24-
env: TOXENV=py27-functional
25-
- python: 2.7
21+
python: 3.9
2622
env: TOXENV=update-pycodestyle
23+
- python: 3.9
24+
env: TOXENV=coverage,codecov
2725
- python: 3.7
2826
env: TOXENV=docs
29-
- python: 2.7
30-
env: TOXENV=coverage,codecov
3127
- python: 3.5
3228
env: TOXENV=py35
3329
- python: 3.5

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
skipsdist = True
33
envlist =
4-
py27, py3{5,6,7,8,9}
5-
py27-functional, py3{5,6,7,8,9}-functional
4+
py3{5,6,7,8,9}
5+
py3{5,6,7,8,9}-functional
66

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

0 commit comments

Comments
 (0)