Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 982100d

Browse files
committed
Update builds to python3, and drop interpreters that don't work in tox anymore
1 parent 14bf01b commit 982100d

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
sudo: false
22
language: python
33
python:
4-
- "3.5"
4+
- "3.6"
55

66
env:
77
- TOX_ENV=py26
88
- TOX_ENV=py27
9-
- TOX_ENV=py33
10-
- TOX_ENV=py34
11-
- TOX_ENV=py35
12-
- TOX_ENV=pypy
9+
- TOX_ENV=py36
1310
- TOX_ENV=docs
1411
- TOX_ENV=py27-flake8
15-
- TOX_ENV=py35-flake8
12+
- TOX_ENV=py36-flake8
1613

1714
install:
1815
- pip install tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ class sdist(_sdist):
204204
'Programming Language :: Python :: 3.3',
205205
'Programming Language :: Python :: 3.4',
206206
'Programming Language :: Python :: 3.5',
207+
'Programming Language :: Python :: 3.6',
207208
'Programming Language :: Python :: Implementation :: CPython',
208209
'Programming Language :: Python :: Implementation :: PyPy',
209210
],

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, pypy, py31, py32, py33, py34, py35, docs, py27-flake8, py35-flake8
2+
envlist = py26, py27, py36, docs, py27-flake8, py36-flake8
33

44
[testenv]
55
deps =
@@ -19,8 +19,8 @@ basepython = python2.7
1919
deps = flake8
2020
commands = flake8 {posargs}
2121

22-
[testenv:py35-flake8]
23-
basepython = python3.5
22+
[testenv:py36-flake8]
23+
basepython = python3.6
2424
deps = flake8
2525
commands = flake8 {posargs}
2626

0 commit comments

Comments
 (0)