You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether Nox ignores a requirement depends on both the requirement and on the environment of the calling nox. For example, if we modify the example above:
then now nox will no longer ignore the requirement ifnox is installed a venv without uv, but nox will still ignore the requirement if uv is installed in the same venv as it.
Current Behavior
URL dependencies in a noxfile's PEP 723
dependencies
are silently ignored in some cases.Expected Behavior
Nox should not ignore any PEP 723 dependencies.
Steps To Reproduce
Minimal reproducer:
noxfile.py
:Run
nox
Behavior:
Expected behavior:
For comparison:
Environment
Anything else?
Whether Nox ignores a requirement depends on both the requirement and on the environment of the calling
nox
. For example, if we modify the example above:then now
nox
will no longer ignore the requirement ifnox
is installed a venv without uv, butnox
will still ignore the requirement if uv is installed in the same venv as it.Another example:
With this one, Nox will ignore the httpx requirement if (for example)
httpx==0.28.1
is installed in the same venv asnox
.The text was updated successfully, but these errors were encountered: