manylinux: Build pip with cp38

cp35 is no longer supported and get-pip.py fails to build.
This commit is contained in:
Matt McCormick
2021-01-27 21:33:45 -05:00
parent 72b83fc276
commit a5d4d6dcb1
3 changed files with 12 additions and 9 deletions

View File

@ -25,7 +25,7 @@ RUN \
/buildscripts/build-and-install-git.sh && \
/buildscripts/install-cmake-binary.sh $X86_FLAG && \
/buildscripts/install-liquidprompt-binary.sh && \
PYTHON=$([ -e /opt/python/cp35-cp35m/bin/python ] && echo "/opt/python/cp35-cp35m/bin/python" || echo "python") && \
PYTHON=$([ -e /opt/python/cp38-cp38/bin/python ] && echo "/opt/python/cp38-cp38/bin/python" || echo "python") && \
/buildscripts/install-python-packages.sh -python ${PYTHON} && \
/buildscripts/build-and-install-ninja.sh -python ${PYTHON} && \
rm -rf /buildscripts