Use python3 instead of python in examples

This commit is contained in:
Joe Rickerby
2020-02-26 22:10:42 +00:00
parent 6ad0aebaf8
commit 4bc7e4f40d
7 changed files with 32 additions and 32 deletions
+6 -6
View File
@@ -4,8 +4,8 @@ jobs:
steps:
- task: UsePythonVersion@0
- bash: |
python -m pip install --upgrade pip
pip install cibuildwheel==1.1.0
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}
@@ -15,8 +15,8 @@ jobs:
steps:
- task: UsePythonVersion@0
- bash: |
python -m pip install --upgrade pip
pip install cibuildwheel==1.1.0
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}
@@ -28,8 +28,8 @@ jobs:
- script: choco install vcpython27 -f -y
displayName: Install Visual C++ for Python 2.7
- bash: |
python -m pip install --upgrade pip
pip install cibuildwheel==1.1.0
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}