Skip to content

Commit

Permalink
chore(ci): add temporary workaround for missing xmlsec wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Oct 3, 2024
1 parent 28b4cc5 commit f7362ba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ci/pip-install
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@ else
if [ "${1:-latest}" = mypy ] ; then
uv pip install --system -e ".[all,mysql,ci,mypy,test]"
else
uv pip install --system -e ".[all,mysql,ci,test]"
# TODO: lxml can use wheels once xmlsec has one
# see https://github.com/xmlsec/python-xmlsec/issues/327
if python -c 'import sys; sys.exit(0 if sys.version_info >= (3,13) else 1)' ; then
uv pip install --system --no-binary=lxml -e ".[all,mysql,ci,test]"
else
uv pip install --system --no-binary=lxml -e ".[all,mysql,ci,test]"
fi
fi
if [ "${1:-latest}" = edge ] ; then
uv pip install --system --upgrade -e ".[all,mysql,test,ci]"
Expand Down

0 comments on commit f7362ba

Please sign in to comment.