summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Martz <matt@sivel.net>2017-05-04 13:55:01 -0500
committerMatt Martz <matt@sivel.net>2017-11-23 10:15:09 -0600
commit3ebb9734a2e6211d60e1e52fe2f1fdd53bfedb46 (patch)
tree2987c67b13ffafb9fd01b96de1f21ee3d3f4c240
parent8854d82049babba9c5216e74723c87a5be996c43 (diff)
Indicate speedtest-cli supports python 3.6, and ensure py3.2 has an appropriate setuptools version
-rw-r--r--.travis.yml7
-rw-r--r--README.rst2
-rw-r--r--setup.py1
3 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 12b7fa3..406754d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -35,11 +35,12 @@ matrix:
env: TOXENV=pypy
install:
- - if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py3[12])") != 0 ]]; then pip install virtualenv==1.7.2 tox==1.3; fi;
- - if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py3[12])") == 0 ]]; then pip install tox; fi;
+ - if [[ $(echo "$TOXENV" | egrep -c "py32") != 0 ]]; then pip install setuptools==17.1.1; fi
+ - if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py3[12])") != 0 ]]; then pip install virtualenv==1.7.2 tox==1.3; fi;
+ - if [[ $(echo "$TOXENV" | egrep -c "(py2[45]|py3[12])") == 0 ]]; then pip install tox; fi;
script:
- - tox
+ - tox
notifications:
email:
diff --git a/README.rst b/README.rst
index 0043b5c..5af9aad 100644
--- a/README.rst
+++ b/README.rst
@@ -17,7 +17,7 @@ speedtest.net
Versions
--------
-speedtest-cli works with Python 2.4-3.5
+speedtest-cli works with Python 2.4-3.6
.. image:: https://img.shields.io/pypi/pyversions/speedtest-cli.svg
:target: https://pypi.python.org/pypi/speedtest-cli/
diff --git a/setup.py b/setup.py
index 00a8054..f323f81 100644
--- a/setup.py
+++ b/setup.py
@@ -90,5 +90,6 @@ setup(
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
]
)