File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ stages:
11
11
linux :
12
12
imageName : " ubuntu-latest"
13
13
poolName : " Azure Pipelines"
14
- pandasVersion : " "
15
14
linux-old-pandas :
16
15
imageName : " ubuntu-latest"
17
16
poolName : " Azure Pipelines"
@@ -20,15 +19,12 @@ stages:
20
19
imageName : " ubuntu-latest"
21
20
poolName : " Azure Pipelines"
22
21
vsQuestDbMaster : true
23
- pandasVersion : " "
24
22
mac :
25
23
imageName : " macos-latest"
26
24
poolName : " Azure Pipelines"
27
- pandasVersion : " "
28
25
windows-msvc-2019 :
29
26
imageName : " windows-2019"
30
27
poolName : " Azure Pipelines"
31
- pandasVersion : " "
32
28
pool :
33
29
name : $(poolName)
34
30
vmImage : $(imageName)
@@ -43,8 +39,12 @@ stages:
43
39
python3 --version
44
40
python3 -m pip install cython
45
41
displayName: "Install cython"
42
+ - script : python3 ci/pip_install_deps.py
43
+ displayName : " Install pandas latest"
44
+ condition : eq(variables.pandasVersion, '')
46
45
- script : python3 ci/pip_install_deps.py --pandasVersion==$(pandasVersion)
47
- displayName : " Install pandas"
46
+ displayName : " Install pandas older"
47
+ condition : neq(variables.pandasVersion, '')
48
48
- script : python3 proj.py build
49
49
displayName : " Build"
50
50
- script : |
You can’t perform that action at this time.
0 commit comments