Skip to content

Commit e6499b1

Browse files
committed
CI: Fix pinning on Windows
1 parent 7e02574 commit e6499b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/azure/azure_template_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
4848
- powershell: |
4949
if ($null -ne $env:NUMPY) {
50-
python -m pip install numpy==${NUMPY}
50+
python -m pip install numpy==$env:NUMPY
5151
}
5252
if ($null -ne $env:PANDAS) {
53-
python -m pip install pandas==${PANDAS}
53+
python -m pip install pandas==$env:PANDAS
5454
}
5555
displayName: 'Update numpy and pandas (if needed)'
5656

0 commit comments

Comments
 (0)