File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change 11language : python # this works for Linux but is an error on macOS or Windows
22python :
3- - " 2.7"
4- - " 3.4"
5- - " 3.5"
63 - " 3.6" # current default Python on Travis CI
74 - " 3.7"
8- - " 3.8"
95jobs :
106 include :
11- - name : " Python 3.8 .0 on Xenial Linux"
7+ - name : " Python 3.6 .0 on Xenial Linux"
128 python : 3.8 # this works for Linux but is ignored on macOS or Windows
13- - name : " Python 3.7.4 on macOS"
9+ - name : " Python 3.6.0 on macOS"
1410 os : osx
1511 osx_image : xcode11.2 # Python 3.7.4 running on macOS 10.14.4
1612 language : shell # 'language: python' is an error on Travis CI macOS
17- - name : " Python 3.8 .0 on Windows"
13+ - name : " Python 3.6 .0 on Windows"
1814 os : windows # Windows 10.0.17134 N/A Build 17134
1915 language : shell # 'language: python' is an error on Travis CI Windows
2016 before_install :
21- - choco install python --version 3.8 .0
17+ - choco install python --version 3.6 .0
2218 - python -m pip install --upgrade pip
23- env : PATH=/c/Python38 :/c/Python38 /Scripts:$PATH
19+ env : PATH=/c/Python36 :/c/Python36 /Scripts:$PATH
2420install :
2521 - pip3 install --upgrade pip # all three OSes agree about 'pip3'
2622 - pip install -r requirements.txt
You can’t perform that action at this time.
0 commit comments