Skip to content

Commit d1b5273

Browse files
committedApr 9, 2020
Update supported Python versions
1 parent dbfd989 commit d1b5273

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎.travis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
sudo: false
44
language: python
5-
python: 3.5
5+
python: 3.8
66
env:
7-
- TOX_ENV=py27
8-
- TOX_ENV=py33
9-
- TOX_ENV=py34
107
- TOX_ENV=py35
8+
- TOX_ENV=py36
9+
- TOX_ENV=py37
10+
- TOX_ENV=py38
1111

1212
script: tox -e $TOX_ENV
1313

‎tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# For more information about tox, see https://tox.readthedocs.org/en/latest/
22
[tox]
3-
envlist = py27,py33,py34,py35
3+
envlist = py35,py36,py37,py38
44
[testenv]
55
deps=pytest # install pytest in the venvs
6-
commands=py.test {posargs}
6+
commands=pytest {posargs}
77
passenv = CI

0 commit comments

Comments
 (0)
Please sign in to comment.