We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
VIRTUAL_ENV=...
After #194, setup-uv now exports the env var VIRTUAL_ENV. The top level project API (e.g., uv sync) does not respect this and emits the following warning:
VIRTUAL_ENV
uv sync
warning: `VIRTUAL_ENV=.venv/bin` does not match the project environment path `.venv` and will be ignored` upon invocation.
I understand the reasoning behind the change, but I think it should be opt-in rather than the default.
The text was updated successfully, but these errors were encountered:
VIRTUAL_ENV should be set to .venv instead of .venv/bin. This is a bug.
.venv
.venv/bin
Can you explain, why you think this should be opt-in?
Sorry, something went wrong.
Just to avoid the warnings. If they can be avoided while still unconditionally setting VIRTUAL_ENV=... then I have no strong opinion either way.
Set VIRTUAL_ENV to .venv instead of .venv/bin (#210)
887a942
Closes: #209
Successfully merging a pull request may close this issue.
After #194, setup-uv now exports the env var
VIRTUAL_ENV
. The top level project API (e.g.,uv sync
) does not respect this and emits the following warning:I understand the reasoning behind the change, but I think it should be opt-in rather than the default.
The text was updated successfully, but these errors were encountered: