Skip to content

Commit

Permalink
Drop support for end-of-lifed Python versions
Browse files Browse the repository at this point in the history
Python 2.6 and 3.2 are already EOL, and 3.3 will be EOL 2017-09-29
  • Loading branch information
pv committed Sep 24, 2017
1 parent 993cd49 commit 0ae895d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 1 addition & 8 deletions .travis.yml
Expand Up @@ -8,10 +8,7 @@ env:
- COVERAGE=""

python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
Expand Down Expand Up @@ -62,11 +59,7 @@ install:
chmod +x $HOME/miniconda2/bin/conda;
if $TRAVIS_PYTHON -c 'import virtualenv'; then echo "ERROR: virtualenv package is installed"; exit 1; fi;
else
if [[ "$TRAVIS_PYTHON_VERSION" == "3.2" ]]; then
$TRAVIS_PIP install 'virtualenv<14';
else
$TRAVIS_PIP install virtualenv;
fi
$TRAVIS_PIP install virtualenv;
fi
$TRAVIS_PIP install selenium six pytest feedparser python-hglib;
if [[ $COVERAGE != '' ]]; then $TRAVIS_PIP install pytest-cov coveralls; fi;
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Expand Up @@ -204,6 +204,8 @@ def run_setup(build_binary=False):
]
},

python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',

zip_safe=False,

# py.test testing
Expand Down

0 comments on commit 0ae895d

Please sign in to comment.