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
[tool.uv]
# Require that `package[test1]` and `package[test2]`# requirements are resolved in different forks so that they# cannot conflict with one another.conflicts = [
[
{ extra = "test1" },
{ extra = "test2" },
]
]
# Or, to declare conflicting groups:conflicts = [
[
{ group = "test1" },
{ group = "test2" },
]
]
The { group = "test1" } is referring to a package extra or to a uv dependecy group?
Because the comments have package[test1] it seems that it is referring to a package extra, but there are two identical examples using the key extra and group so it should be referring to a group.
The text was updated successfully, but these errors were encountered:
Here: https://docs.astral.sh/uv/reference/settings/#conflicts
The example usage is:
The
{ group = "test1" }
is referring to a package extra or to a uv dependecy group?Because the comments have
package[test1]
it seems that it is referring to a package extra, but there are two identical examples using the keyextra
andgroup
so it should be referring to a group.The text was updated successfully, but these errors were encountered: