File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -71,23 +71,23 @@ jobs:
71
71
cd $(checkout)
72
72
git checkout $(commit)
73
73
python -m pip install -U pip
74
- pip install -r requirements.txt
74
+ python -m pip install -r requirements.txt
75
75
python setup.py sdist
76
76
displayName: 'Install and build sdist'
77
77
78
78
- script : |
79
79
cd $(checkout)
80
80
export CC=$(CC)
81
81
export CXX=$(CXX)
82
- pip install " wheel==0.31.1"
82
+ python -m pip install -U wheel
83
83
python setup.py bdist_wheel
84
84
displayName: 'Build universal wheel'
85
85
condition: eq(variables['set_variables.universal'], 'True')
86
86
87
87
- bash : |
88
88
cd $(Build.SourcesDirectory)/$(checkout)
89
89
SDIST=$(python -c "import os;print(os.listdir('./dist')[0])" 2>&1)
90
- pip install dist/$SDIST
90
+ python -m pip install dist/$SDIST
91
91
rm -rf $(package_name)
92
92
python -m pytest --pyargs $(package_name)
93
93
displayName: 'Install from sdist & run tests'
You can’t perform that action at this time.
0 commit comments