Replies: 1 comment
-
@jdx with uv integration enhancements a stated goal for 2025, might this warrant an issue? The workaround is ok, but it would be nice to be able to set Thanks for considering. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
uv's default is to use
.venv
for a project's virtualenv. However, a different path can be provided by using UV_PROJECT_ENVIRONMENT.Currently, mise doesn't check for an alternate location.
This is probably obvious, but the variable being used should come from the result of mise's environment variable processing pipeline.
My current workaround is to set:
But it would be cleaner if I could just:
and trust that whatever uv is doing, mise will play along.
FWIW, my higher-level goal is to support some of our users wanting to use
.venv
and some users wanting to put those files in a temporary/cache location. So, our actual project files look like:And then
~/mise.toml
has:or:
Beta Was this translation helpful? Give feedback.
All reactions