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
In the following minimal pyproject.toml file, we are creating a package where the self optional dependency that depends on the base extra (the tomli package) through a self-dependency together with a platform marker that is not satisfied on my Linux machine. When running uv sync --extra self the packages from the base extra get installed, even though the platform marker should exclude them.
$ uv sync --extra self
Using CPython 3.13.0
Creating virtual environment at: .venv
Resolved 2 packages in 5ms
Installed 1 package in 2ms
+ tomli==2.2.1
In the following minimal
pyproject.toml
file, we are creating a package where theself
optional dependency that depends on thebase
extra (thetomli
package) through a self-dependency together with a platform marker that is not satisfied on my Linux machine. When runninguv sync --extra self
the packages from thebase
extra get installed, even though the platform marker should exclude them.The text was updated successfully, but these errors were encountered: