7 ms·
I would also add UV_NO_SYNC as smth I had to learn. It comes in combination with uv pip
by vindex10 11mo ago
I would also add UV_NO_SYNC as smth I had to learn. It comes in combination with uv pip
- wtallis 11mo agoWhat's your use case for UV_NO_SYNC? I assume the option exists for a reason, but aside from maybe a modest performance improvement when working with a massive complex package environment, I'm not sure what problem it solves.
- vindex10 11mo agosome packages that I use for development need to be part of the virtual env. for example ipdb. so i do uv pip install ipdb. but then, after uv add somepackage uv sync happens and cleans up all extras. to keep extras, you need to run uv sync --inexact. But there is no env var for `--inexact`, so I end up doing the sync manually.
- jcotton42 11mo agouv has support for dev-time dependencies https://docs.astral.sh/uv/concepts/projects/dependencies/#development-dependencies https://docs.astral.sh/uv/concepts/projects/dependencies/#de...