File tree Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Expand file tree Collapse file tree 1 file changed +25
-7
lines changed Original file line number Diff line number Diff line change 11language : python
22
3- os :
4- - linux
5- - windows
6-
7- python :
8- - ' 3.6'
9- - ' 3.7'
3+ jobs :
4+ include :
5+ - name : Linux Python 3.6
6+ os : linux
7+ python : 3.6
8+
9+ - name : Linux Python 3.7
10+ os : linux
11+ python : 3.7
12+
13+ - name : Windows Python 3.6
14+ os : windows
15+ language : shell # 'language: python' is an error on Travis CI Windows
16+ before_install :
17+ - choco install python --version 3.6.0
18+ - python -m pip install --upgrade pip
19+ env : PATH=/c/Python36:/c/Python36/Scripts:$PATH
20+
21+ - name : Windows Python 3.7
22+ os : windows
23+ language : shell # 'language: python' is an error on Travis CI Windows
24+ before_install :
25+ - choco install python --version 3.7.0
26+ - python -m pip install --upgrade pip
27+ env : PATH=/c/Python37:/c/Python37/Scripts:$PATH
1028
1129install :
1230 - |
You can’t perform that action at this time.
0 commit comments