Update comment.

This commit is contained in:
Joshua Bronson 2024-03-15 12:05:21 -04:00
parent 4cc28fa73e
commit 477181c9f0
1 changed files with 2 additions and 3 deletions

View File

@ -38,9 +38,8 @@ for i in $req_sets; do
done
uv pip sync "$out_dir"/*.txt
# TODO Until https://github.com/astral-sh/uv/issues/1594 is fixed, we can't use the following:
# if ! uv pip show -qq bidict; then
# so work around this as follows:
# TODO Use the following instead of the line after once we pick up a new enough uv (0.1.16+):
# if ! uv pip show -q bidict; then
if ! uv pip freeze | grep -q ^bidict; then
uv pip install -e .
fi