Skip to content

Commit 14987a0

Browse files
Upgrade tox, virtualenv, py, and pluggy on Travis CI
1 parent edc6b2b commit 14987a0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ matrix:
2626
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
2727

2828
install:
29-
- pip install tox==2.9.1
30-
- pip install virtualenv==15.2.0
31-
- pip install py==1.4.30
32-
- pip install pluggy==0.5.2
29+
- pip install tox==3.14.0
30+
- pip install virtualenv==16.7.5
31+
- pip install py==1.8.0
32+
- pip install pluggy==0.13.0
3333

3434
before_script:
3535
# Run flake8 tests only on Python 2.7 and 3.7...
@@ -38,7 +38,7 @@ before_script:
3838
- if [[ $TRAVIS_PYTHON_VERSION == *.7 ]]; then
3939
pip install flake8;
4040
flake8 . --count --exit-zero --select=E901,E999,F821,F822,F823 --show-source --statistics;
41-
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics;
41+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics;
4242
fi
4343

4444
script:

0 commit comments

Comments
 (0)