Skip to content

Commit ac96935

Browse files
committed
Changed travis.yml Python 3.7 references to 3.8
1 parent 7fcf06b commit ac96935

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@ jobs:
1919
- &unittests
2020
stage: unit tests
2121
language: python
22-
python: 3.7
22+
python: 3.8
2323
before_script:
2424
# We need to escape virtualenv for `test_pythonpackage_basic.test_virtualenv`
2525
# See also: https://github.com/travis-ci/travis-ci/issues/8589
2626
- type -t deactivate && deactivate || true
27-
- export PATH=/opt/python/3.7/bin:$PATH
27+
- export PATH=/opt/python/3.8/bin:$PATH
2828
# Install tox & virtualenv
2929
# Note: venv/virtualenv are both used by tests/test_pythonpackage.py
30-
- pip3.7 install -U virtualenv
31-
- pip3.7 install tox>=2.0
30+
- pip3.8 install -U virtualenv
31+
- pip3.8 install tox>=2.0
3232
# Install coveralls & dependencies
3333
# Note: pyOpenSSL needed to send the coveralls reports
34-
- pip3.7 install pyOpenSSL
35-
- pip3.7 install coveralls
34+
- pip3.8 install pyOpenSSL
35+
- pip3.8 install coveralls
3636
script:
3737
# ignores test_pythonpackage.py since it runs for too long
3838
- tox -- tests/ --ignore tests/test_pythonpackage.py

0 commit comments

Comments
 (0)