Skip to content

Commit

Permalink
Remove python 3.3 Travis build
Browse files Browse the repository at this point in the history
Stability of the Python 3.3 builds have declined over the last year
as more and more of our testing dependencies (e.g., tox) deprecate
or remove support for the version.
  • Loading branch information
prkumar committed Jun 5, 2019
1 parent 23a55f3 commit c5e0d48
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- '3.6-dev'
- '3.7-dev'
before_script:
- |
if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then
# virtualenv 16.0.0 bundles wheel 0.31.1, which drops python 3.3.* support
# tox 3.0.0 drops python 3.3.* support
pip install virtualenv==15.2.0 tox==2.9.1
else
pip install tox
fi
- pip install tox
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip install flake8 flake8-bugbear; fi
script:
- tox -e py
Expand Down

0 comments on commit c5e0d48

Please sign in to comment.