summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2018-01-04 13:58:09 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2018-01-04 13:58:09 -0500
commit202eb16bb2d14f986dd8cbc5a2df540df50a0789 (patch)
treebb213d3185b0e2e518a55d261df444a6671b7d9c
parentf82ed4e03627f3149da0675432f218c5ead468e2 (diff)
downloadcmd2-git-202eb16bb2d14f986dd8cbc5a2df540df50a0789.tar.gz
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.
-rw-r--r--.travis.yml9
-rwxr-xr-xsetup.py1
-rw-r--r--tox.ini12
3 files changed, 4 insertions, 18 deletions
diff --git a/.travis.yml b/.travis.yml
index 3afcb263..2c5b5124 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,9 +8,6 @@ matrix:
python: 2.7
env: TOXENV=py27
- os: linux
- python: 3.3
- env: TOXENV=py33
- - os: linux
python: 3.4
env: TOXENV=py34
- os: linux
@@ -19,9 +16,9 @@ matrix:
- os: linux
python: 3.6
env: TOXENV=py36
-# - os: linux
-# python: 3.7-dev
-# env: TOXENV=py37
+ - os: linux
+ python: 3.7-dev
+ env: TOXENV=py37
# # Warning: Don't try to use code coverage analysis with pypy as it is insanely slow
# - os: linux
# python: pypy
diff --git a/setup.py b/setup.py
index a9ef1b51..d7082b34 100755
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,6 @@ Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
-Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
diff --git a/tox.ini b/tox.ini
index cefc7f7b..366e4bc3 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py27,py33,py34,py35,py36,py36-winpy37,pypy
+envlist = py27,py34,py35,py36,py36-win,py37
[pytest]
testpaths = tests
@@ -40,16 +40,6 @@ commands =
py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing
codecov
-[testenv:py33]
-deps =
- mock
- pyparsing
- pyperclip
- pytest
- pytest-xdist
- six
-commands = py.test -v -n2
-
[testenv:py34]
deps =
mock