summaryrefslogtreecommitdiff
path: root/.ci
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-03-04 09:44:10 -0800
committerGiampaolo Rodola <g.rodola@gmail.com>2018-03-04 09:44:10 -0800
commit74248cc706bdf01f80d1c704a094ff30974cfa93 (patch)
tree651a21809d13211d06d2e6862468b39e8e2ff786 /.ci
parent63a672b29cb3e0279b371b3d5914f0109a07f071 (diff)
downloadpsutil-74248cc706bdf01f80d1c704a094ff30974cfa93.tar.gz
Remove additional workarounds and support for Python 3.2 & 3.3 (#1228)
Support for Python 3.3 was dropped in version 5.4.1. Support for Python 3.2 was dropped earlier. Remove all references to these unsupported versions including documentation, scripts, workarounds, etc. Eases maintenance as fewer workarounds are used for unsupported environments.
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/travis/install.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/.ci/travis/install.sh b/.ci/travis/install.sh
index 677dc465..bb86700e 100755
--- a/.ci/travis/install.sh
+++ b/.ci/travis/install.sh
@@ -24,14 +24,6 @@ if [[ "$(uname -s)" == 'Darwin' ]]; then
pyenv install 2.7.10
pyenv virtualenv 2.7.10 psutil
;;
- # py32)
- # pyenv install 3.2.6
- # pyenv virtualenv 3.2.6 psutil
- # ;;
- # py33)
- # pyenv install 3.3.6
- # pyenv virtualenv 3.3.6 psutil
- # ;;
py34)
pyenv install 3.4.3
pyenv virtualenv 3.4.3 psutil
@@ -45,10 +37,6 @@ if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $PYVER == 'py26' ]]; then
pip install -U ipaddress unittest2 argparse mock==1.0.1
elif [[ $TRAVIS_PYTHON_VERSION == '2.7' ]] || [[ $PYVER == 'py27' ]]; then
pip install -U ipaddress mock
-elif [[ $TRAVIS_PYTHON_VERSION == '3.2' ]] || [[ $PYVER == 'py32' ]]; then
- pip install -U ipaddress mock
-elif [[ $TRAVIS_PYTHON_VERSION == '3.3' ]] || [[ $PYVER == 'py33' ]]; then
- pip install -U ipaddress
fi
pip install -U coverage coveralls flake8 pep8 setuptools