aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Bowman <github@portabase.org>2018-05-17 13:33:15 -0400
committerGitHub <noreply@github.com>2018-05-17 13:33:15 -0400
commit4166bc903fadb1726c2851d50b601357878e95b1 (patch)
tree8808c0609c3043702838bb87c7dc042d211eb14e
parent5832e76345b24137ed662de6e66dbbd6c8fdb749 (diff)
parent114bb58167d4f6462e0b7d69a46233b796840ba8 (diff)
downloadexternal_python_setuptools-4166bc903fadb1726c2851d50b601357878e95b1.tar.gz
external_python_setuptools-4166bc903fadb1726c2851d50b601357878e95b1.tar.bz2
external_python_setuptools-4166bc903fadb1726c2851d50b601357878e95b1.zip
Merge pull request #1372 from jmbowman/jmbowman/no_33_in_travis
Stop testing Python 3.3 in Travis
-rw-r--r--.travis.yml3
-rw-r--r--changelog.d/1372.misc.rst2
2 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 9f09c0fa..63d0333a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,7 +3,6 @@ sudo: false
language: python
python:
- &latest_py2 2.7
-- 3.3
- 3.4
- 3.5
- &latest_py3 3.6
@@ -43,7 +42,7 @@ install:
# ensure we have recent pip/setuptools
- pip install --upgrade pip setuptools
# need tox to get started
-- pip install tox 'tox-venv; python_version!="3.3"'
+- pip install tox tox-venv
# Output the env, to verify behavior
- env
diff --git a/changelog.d/1372.misc.rst b/changelog.d/1372.misc.rst
new file mode 100644
index 00000000..d1bc789b
--- /dev/null
+++ b/changelog.d/1372.misc.rst
@@ -0,0 +1,2 @@
+Stop testing Python 3.3 in Travis CI, now that the latest version of
+``wheel`` no longer installs on it.