Fix example references to python3 on Windows, where it's only python

Fix #285
This commit is contained in:
Joe Rickerby
2020-03-06 10:31:01 +00:00
parent 774af30d71
commit ec42cb6f42
4 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ jobs:
- script: choco install vcpython27 -f -y
displayName: Install Visual C++ for Python 2.7
- bash: |
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==1.1.0
python -m pip install --upgrade pip
pip install cibuildwheel==1.1.0
cibuildwheel --output-dir wheelhouse .
- task: PublishBuildArtifacts@1
inputs: {pathtoPublish: 'wheelhouse'}