File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change 9
9
displayName : ' Use Python $(python.version)'
10
10
condition : and(succeeded(), ne(variables['python.version'], 'Pre'))
11
11
12
- # Disabled until extension is added
13
- # - task: stevedower.python.InstallPython.InstallPython@1
14
- # displayName: 'Use prerelease Python'
15
- # inputs:
16
- # prerelease: true
17
- # condition: and(succeeded(), eq(variables['python.version'], 'Pre'))
12
+ - task : stevedower.python.InstallPython.InstallPython@1
13
+ displayName : ' Use prerelease Python'
14
+ inputs :
15
+ prerelease : true
16
+ condition : and(succeeded(), eq(variables['python.version'], 'Pre'))
18
17
18
+ - ${{ if eq(parameters.platform, 'windows') }} :
19
+ - script : |
20
+ nuget install libpng-msvc14-x64 -ExcludeVersion -OutputDirectory "$(build.BinariesDirectory)"
21
+ echo ##vso[task.setvariable variable=MPLBASEDIRLIST]win32_static;$(build.BinariesDirectory)\libpng-msvc14-x64\build\native
22
+ echo ##vso[task.setvariable variable=LIBDIR]%LIBDIR%;$(build.BinariesDirectory)\libpng-msvc14-x64\build\native\lib_release
23
+ echo ##vso[task.prependpath]$(build.BinariesDirectory)\libpng-msvc14-x64\build\native\bin_release
19
24
20
25
- ${{ if eq(parameters.platform, 'macos') }} :
21
26
- script : |
You can’t perform that action at this time.
0 commit comments