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 f487e5a commit 9349570Copy full SHA for 9349570
ci_build/azure_pipelines/templates/setup.yml
@@ -28,10 +28,13 @@ steps:
28
# https://github.com/numpy/numpy/issues/12957
29
# https://github.com/ContinuumIO/anaconda-issues/issues/10629
30
# Add numpy lib path manually here
31
+# On Windows sqlite3.dll is found under Library/bin
32
- bash: |
33
site_dir=$(python -c "import site; print(site.getsitepackages()[1])")
34
echo "##vso[task.prependpath]$site_dir\numpy\.libs"
- displayName: 'Fix Numpy Path'
35
+ base_dir=$(python -c "import site; print(site.getsitepackages()[0])")
36
+ echo "##vso[task.prependpath]$base_dir/Library/bin"
37
+ displayName: 'Fix Paths'
38
condition: and(succeeded(), in(variables['Agent.OS'], 'Windows_NT'))
39
40
- bash: env
0 commit comments