File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 10
10
vmImage : ${{ parameters.vmImage }}
11
11
variables :
12
12
EXTRA_WHEELS : " https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
13
+ DEPENDS : numpy scipy matplotlib h5py pydicom
13
14
strategy :
14
15
matrix :
15
16
${{ insert }} : ${{ parameters.matrix }}
@@ -20,11 +21,14 @@ jobs:
20
21
versionSpec : ' $(PYTHON_VERSION)'
21
22
addToPath : true
22
23
architecture : ' $(PYTHON_ARCH)'
24
+ - script : |
25
+ echo %PYTHONHASHSEED%
26
+ displayName: 'Display hash seed'
23
27
- script : |
24
28
python -m pip install --upgrade pip setuptools>=30.3.0 wheel
25
29
displayName: 'Update build tools'
26
30
- script : |
27
- python -m pip install --find-links %EXTRA_WHEELS% numpy scipy matplotlib h5py pydicom
31
+ python -m pip install --find-links %EXTRA_WHEELS% %DEPENDS%
28
32
python -m pip install nose mock coverage codecov
29
33
displayName: 'Install dependencies'
30
34
- script : |
Original file line number Diff line number Diff line change 11
11
py35-x64 :
12
12
PYTHON_VERSION : ' 3.5'
13
13
PYTHON_ARCH : ' x64'
14
+ py35-h5py-check :
15
+ PYTHON_VERSION : ' 3.5'
16
+ PYTHON_ARCH : ' x64'
17
+ PYTHONHASHSEED : 283137131
18
+ DEPENDS : " h5py==2.9.0"
14
19
py36-x86 :
15
20
PYTHON_VERSION : ' 3.6'
16
21
PYTHON_ARCH : ' x86'
You can’t perform that action at this time.
0 commit comments