From d87fe7c1a068d337b380cd7fb47a032537a8777f Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Wed, 19 Feb 2020 13:32:55 -0800 Subject: [PATCH] on centos6 need to have setuptools installed first --- .ci/azure-pipelines-steps.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/azure-pipelines-steps.yml b/.ci/azure-pipelines-steps.yml index ad6bf004..055e47eb 100644 --- a/.ci/azure-pipelines-steps.yml +++ b/.ci/azure-pipelines-steps.yml @@ -15,9 +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 - # 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 + # need wheel before building virtualenv because of bdist_wheel and setuptools deps + /usr/bin/python -m pip install -U pip wheel setuptools + /usr/bin/python -m pip install -U virtualenv /usr/bin/python -m virtualenv /tmp/venv -p /usr/bin/python$(python.version) echo "##vso[task.prependpath]/tmp/venv/bin"