Skip to content

Commit

Permalink
CI: Do not install lxml as dependency of "lxml_html_clean".
Browse files Browse the repository at this point in the history
  • Loading branch information
scoder committed May 11, 2024
1 parent b325054 commit 1ab00bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/ci-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ fi
if [ -z "${PYTHON_VERSION##2*}" ] || [ -z "${PYTHON_VERSION##pypy-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
python -m pip install -U beautifulsoup4 cssselect html5lib lxml_html_clean rnc2rng ${EXTRA_DEPS} || exit 1
python -m pip install -U beautifulsoup4 cssselect html5lib rnc2rng ${EXTRA_DEPS} || exit 1
python -m pip install --no-deps lxml_html_clean || exit 1
fi
if [[ "$COVERAGE" == "true" ]]; then
python -m pip install "coverage<5" || exit 1
Expand Down

0 comments on commit 1ab00bd

Please sign in to comment.