File tree 2 files changed +10
-2
lines changed 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ environment:
4
4
- PYTHON : " C:\\ Python35\\ python.exe"
5
5
6
6
build_script :
7
+ - ps : |
8
+ curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
9
+ & { $env:PYTHON = 'C:\\Python38'; .\install_python.ps1 }
10
+ & { $env:PYTHON = 'C:\\Python38-x64'; .\install_python.ps1 }
7
11
- " %PYTHON% -m pip install -r requirements-dev.txt"
8
12
# the '-u' flag is required so the output is in the correct order.
9
13
# See https://github.com/joerick/cibuildwheel/pull/24 for more info.
Original file line number Diff line number Diff line change 26
26
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.6', architecture: x64}}
27
27
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x86}}
28
28
- {task: UsePythonVersion@0, inputs: {versionSpec: '3.7', architecture: x64}}
29
- - {task: UsePythonVersion@0, inputs: {versionSpec: '3.8', architecture: x86}}
30
- - {task: UsePythonVersion@0, inputs: {versionSpec: '3.8', architecture: x64}}
29
+ # - {task: UsePythonVersion@0, inputs: {versionSpec: '3.8', architecture: x86}}
30
+ # - {task: UsePythonVersion@0, inputs: {versionSpec: '3.8', architecture: x64}}
31
+ - powershell : |
32
+ curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
33
+ & { $env:PYTHON = 'C:\\Python38'; .\install_python.ps1; Copy-Item 'C:\\Python38' 'C:\\hostedtoolcache\\windows\\Python\\3.8.0\\x86' -Recurse }
34
+ & { $env:PYTHON = 'C:\\Python38-x64'; .\install_python.ps1; Copy-Item 'C:\\Python38-x64' 'C:\\hostedtoolcache\\windows\\Python\\3.8.0\\x64' -Recurse }
31
35
- script : choco install vcpython27 -f -y
32
36
displayName : Install Visual C++ for Python 2.7
33
37
- bash : |
You can’t perform that action at this time.
0 commit comments