Skip to content

Commit

Permalink
Work around the removal of the "--install-option" option in pip 23.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed May 25, 2023
1 parent ff94502 commit e51b4ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci-run.sh
Expand Up @@ -52,7 +52,7 @@ ccache -s || true
echo "Installing requirements [python]"
python -m pip install -U pip setuptools wheel
if [ -z "${PYTHON_VERSION##*-dev}" ];
then python -m pip install --install-option=--cython-compile-minimal https://github.com/cython/cython/archive/master.zip;
then CYTHON_COMPILE_MINIMAL=true python -m pip install https://github.com/cython/cython/archive/master.zip;
else python -m pip install -r requirements.txt;
fi
if [ -z "${PYTHON_VERSION##2*}" ]; then
Expand Down

0 comments on commit e51b4ee

Please sign in to comment.