File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 8
8
- job : ${{ parameters.name }}
9
9
pool :
10
10
vmImage : ${{ parameters.vmImage }}
11
+ variables :
12
+ EXTRA_WHEELS : " https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
11
13
strategy :
12
14
matrix :
13
15
${{ insert }} : ${{ parameters.matrix }}
22
24
python -m pip install --upgrade pip setuptools>=30.3.0 wheel
23
25
displayName: 'Update build tools'
24
26
- script : |
25
- python -m pip install numpy scipy matplotlib h5py pydicom
27
+ python -m pip install --find-links %EXTRA_WHEELS% numpy scipy matplotlib h5py pydicom
26
28
python -m pip install nose mock coverage codecov
27
29
displayName: 'Install dependencies'
28
30
- script : |
Original file line number Diff line number Diff line change 5
5
name : Windows
6
6
vmImage : vs2017-win2016
7
7
matrix :
8
- py35 :
8
+ py35-x86 :
9
9
PYTHON_VERSION : ' 3.5'
10
+ PYTHON_ARCH : ' x86'
11
+ py35-x64 :
12
+ PYTHON_VERSION : ' 3.5'
13
+ PYTHON_ARCH : ' x64'
14
+ py36-x86 :
15
+ PYTHON_VERSION : ' 3.6'
16
+ PYTHON_ARCH : ' x86'
17
+ py36-x64 :
18
+ PYTHON_VERSION : ' 3.6'
19
+ PYTHON_ARCH : ' x64'
20
+ py37-x86 :
21
+ PYTHON_VERSION : ' 3.7'
22
+ PYTHON_ARCH : ' x86'
23
+ py37-x64 :
24
+ PYTHON_VERSION : ' 3.7'
10
25
PYTHON_ARCH : ' x64'
You can’t perform that action at this time.
0 commit comments