File tree Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Expand file tree Collapse file tree 2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,15 @@ jobs:
19
19
python39_legacy :
20
20
python.version : ' 3.9'
21
21
PANDAS : 1.5.3
22
+ NUMPY : 1.23.4
22
23
python310_legacy :
23
- python.version : ' 3.9 '
24
+ python.version : ' 3.10 '
24
25
PANDAS : 2.0.3
26
+ NUMPY : 1.24.4
25
27
python311_latest :
26
28
python.version : ' 3.11'
27
29
PANDAS : 2.1.4
30
+ NUMPY : 1.26.4
28
31
python312_latest :
29
32
python.version : ' 3.12'
30
33
python313_latest :
40
43
python -m pip install pip setuptools -U
41
44
python -m pip install -r requirements.txt
42
45
python -m pip install -r requirements-dev.txt
46
+ if [[ -n ${NUMPY} ]]; then
47
+ python -m pip install numpy==${NUMPY}
48
+ fi;
43
49
if [[ -n ${PANDAS} ]]; then
44
50
python -m pip install pandas==${PANDAS}
45
51
fi;
Original file line number Diff line number Diff line change @@ -19,12 +19,14 @@ jobs:
19
19
python39_legecy :
20
20
python.version : ' 3.9'
21
21
PANDAS : 1.5.3
22
+ NUMPY : 1.23.4
22
23
python310_recent :
23
24
python.version : ' 3.10'
24
- PANDAS : 2.0.3
25
+ NUMPY : 1.24.4
25
26
python311_latest :
26
27
python.version : ' 3.11'
27
28
PANDAS : 2.1.4
29
+ NUMPY : 1.26.4
28
30
python312_latest :
29
31
python.version : ' 3.12'
30
32
python313_latest :
@@ -44,10 +46,13 @@ jobs:
44
46
displayName: 'Install dependencies'
45
47
46
48
- powershell : |
49
+ if ($null -ne $env:NUMPY) {
50
+ python -m pip install numpy==${NUMPY}
51
+ }
47
52
if ($null -ne $env:PANDAS) {
48
53
python -m pip install pandas==${PANDAS}
49
54
}
50
- displayName: 'Update pandas (if needed)'
55
+ displayName: 'Update numpy and pandas (if needed)'
51
56
52
57
- script : |
53
58
python -m pip install -e . -vv
You can’t perform that action at this time.
0 commit comments