We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a42d3 commit d1edd7eCopy full SHA for d1edd7e
ci/azure/azure_template_windows.yml
@@ -41,13 +41,16 @@ jobs:
41
python -m pip install -r requirements.txt
42
python -m pip install -r requirements-dev.txt
43
44
- if [[ -n ${PANDAS} ]]; then
45
- python -m pip install pandas==${PANDAS}
46
- fi;
47
displayName: 'Install dependencies'
48
+ - powershell: |
+ if ($null -ne $env:PANDAS) {
+ python -m pip install pandas==${PANDAS}
49
+ }
50
+ displayName: 'Update pandas (if needed)'
51
+
52
- script: |
- python -m pip install -e . -v --no-build-isolation
53
+ python -m pip install -e . -vv
54
displayName: 'Install'
55
56
- script: python -m pip list
0 commit comments