Skip to content

Commit

Permalink
CI: Use Cython 0.29.x also for Py3.12-dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed Jul 4, 2023
1 parent 219f026 commit a3d7771
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tools/ci-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,13 @@ ccache -s || true
# Install python requirements
echo "Installing requirements [python]"
python -m pip install -U pip setuptools wheel
if [ -z "${PYTHON_VERSION##*-dev}" ];
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

python -m pip install -r requirements.txt
#if [ -z "${PYTHON_VERSION##*-dev}" ];
# 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
python -m pip install -U beautifulsoup4==4.9.3 cssselect==1.1.0 html5lib==1.1 rnc2rng==2.6.5 ${EXTRA_DEPS} || exit 1
else
Expand Down

0 comments on commit a3d7771

Please sign in to comment.