Skip to content

Commit d1edd7e

Browse files
committed
MAINT: Update CI
1 parent f5a42d3 commit d1edd7e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

ci/azure/azure_template_windows.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,16 @@ jobs:
4141
python -m pip install -r requirements.txt
4242
python -m pip install -r requirements-dev.txt
4343
44-
if [[ -n ${PANDAS} ]]; then
45-
python -m pip install pandas==${PANDAS}
46-
fi;
4744
displayName: 'Install dependencies'
4845
46+
- powershell: |
47+
if ($null -ne $env:PANDAS) {
48+
python -m pip install pandas==${PANDAS}
49+
}
50+
displayName: 'Update pandas (if needed)'
51+
4952
- script: |
50-
python -m pip install -e . -v --no-build-isolation
53+
python -m pip install -e . -vv
5154
displayName: 'Install'
5255
5356
- script: python -m pip list

0 commit comments

Comments
 (0)