Skip to content

Commit 202eb16

Browse files
committed
Fix Travis CI builds
Python 3.3 builds appear to be no longer supported on Travis CI. This replaces Python 3.3 with Python 3.7-dev for Travis CI builds.
1 parent f82ed4e commit 202eb16

File tree

3 files changed

+4
-18
lines changed

3 files changed

+4
-18
lines changed

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ matrix:
77
- os: linux
88
python: 2.7
99
env: TOXENV=py27
10-
- os: linux
11-
python: 3.3
12-
env: TOXENV=py33
1310
- os: linux
1411
python: 3.4
1512
env: TOXENV=py34
@@ -19,9 +16,9 @@ matrix:
1916
- os: linux
2017
python: 3.6
2118
env: TOXENV=py36
22-
# - os: linux
23-
# python: 3.7-dev
24-
# env: TOXENV=py37
19+
- os: linux
20+
python: 3.7-dev
21+
env: TOXENV=py37
2522
# # Warning: Don't try to use code coverage analysis with pypy as it is insanely slow
2623
# - os: linux
2724
# python: pypy

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@
5252
Programming Language :: Python :: 2
5353
Programming Language :: Python :: 2.7
5454
Programming Language :: Python :: 3
55-
Programming Language :: Python :: 3.3
5655
Programming Language :: Python :: 3.4
5756
Programming Language :: Python :: 3.5
5857
Programming Language :: Python :: 3.6

tox.ini

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py33,py34,py35,py36,py36-winpy37,pypy
2+
envlist = py27,py34,py35,py36,py36-win,py37
33

44
[pytest]
55
testpaths = tests
@@ -40,16 +40,6 @@ commands =
4040
py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing
4141
codecov
4242

43-
[testenv:py33]
44-
deps =
45-
mock
46-
pyparsing
47-
pyperclip
48-
pytest
49-
pytest-xdist
50-
six
51-
commands = py.test -v -n2
52-
5343
[testenv:py34]
5444
deps =
5545
mock

0 commit comments

Comments
 (0)