Skip to content

Commit

Permalink
Attempt to fix manylinux2010 builds for python 3.8
Browse files Browse the repository at this point in the history
As of today, our manylinux2010 builds have started to fail on python 3.8. Coincidentally, `pip` was bumped to versions 20.0.0 and then 20.0.1 today. This is an attempt to see whether this update was the source of the problem.
  • Loading branch information
ulupo authored Jan 21, 2020
1 parent 0b6ac12 commit 9cefa5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions azure-ci/docker_scripts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,13 @@ set -x
# upgrading pip and setuptools
PYTHON_PATH=$(eval find "/opt/python/*${python_ver}*" -print)
export PATH=${PYTHON_PATH}/bin:${PATH}
pip install --upgrade pip setuptools
pip install --upgrade pip==19.3.1 setuptools

# installing cmake
pip install cmake

# install dependencies for python-igraph
yum install -y libxml2 libxml2-devel zlib1g-devel bison flex
pip install python-igraph

# installing boost
yum install -y wget tar
Expand Down

0 comments on commit 9cefa5e

Please sign in to comment.