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
prior to uv 0.4.9, if i do uv sync in workspace, both dev-dependencies in worspace and project gets installed. after uv 0.4.10+ uv sync in workspace removes project dev-dependencies
root workspace pyproject.yaml
[project]
name = "workspace"
version = "0.1.0"
dependencies = ["project"]
[tool.uv.sources]
project = { workspace = true }
[tool.uv.workspace]
members = ["project"]
[tool.uv]
package=false
dev-dependencies = [
"coverage==7.5.3",
]
The text was updated successfully, but these errors were encountered:
bugzpodder
changed the title
dev dependencies
two layers of dev dependencies does not get installed
Oct 19, 2024
bugzpodder
changed the title
two layers of dev dependencies does not get installed
uv sync: project dev dependencies does not get installed
Oct 19, 2024
I believe this is related to modification #7318.
The PR and its related issue should provide you with more details.
Please note that I am not a member of the UV team, so I can only provide PR that I believe are relevant for your reference. If you have any other ideas, I am not in a position to make decisions.
prior to uv 0.4.9, if i do
uv sync
in workspace, both dev-dependencies in worspace and project gets installed. after uv 0.4.10+uv sync
in workspace removes project dev-dependenciesroot workspace pyproject.yaml
project pyproject.yaml
The text was updated successfully, but these errors were encountered: