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 21bef12 commit cf07f70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ci/pip-install
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ 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
uv pip install --system --no-binary=lxml -e ".[all,mysql,ci,test]"
fi
if [ "${1:-latest}" = edge ] ; then
uv pip install --system --upgrade -e ".[all,mysql,test,ci]"
Expand Down

0 comments on commit cf07f70

Please sign in to comment.