From 477181c9f054a80fe7fd76f09baf56125ebbf350 Mon Sep 17 00:00:00 2001 From: Joshua Bronson Date: Fri, 15 Mar 2024 12:05:21 -0400 Subject: [PATCH] Update comment. --- init_dev_env | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/init_dev_env b/init_dev_env index 31f03d8..83fe1f3 100755 --- a/init_dev_env +++ b/init_dev_env @@ -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