moving on to fixing linux tests for now, fixing bdist_wheel issue

This commit is contained in:
Steven Robertson 2020-02-19 13:19:01 -08:00
parent 633675ecfc
commit ab220ec0eb
1 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,9 @@ steps:
# hard-fought battle and for now I am tired of this crap.
- script: |
sudo ln -fs /usr/bin/python$(python.version) /usr/bin/python
/usr/bin/python -m pip install -U virtualenv setuptools wheel
# need wheel before building virtualenv because of bdist_wheel dep
/usr/bin/python -m pip install -U pip wheel
/usr/bin/python -m pip install -U virtualenv setuptools
/usr/bin/python -m virtualenv /tmp/venv -p /usr/bin/python$(python.version)
echo "##vso[task.prependpath]/tmp/venv/bin"