Skip to content

Commit c4691f3

Browse files
Fix broken tool.uv.default-groups schema (#5100)
The uv schema (found for `uv.toml` and `pyproject.toml`) had a broken layout for the `tool.uv.default-groups` key, compared to the configuration format required by the uv executable at runtime.
1 parent 3556c92 commit c4691f3

File tree

1 file changed

+4
-11
lines changed

1 file changed

+4
-11
lines changed

src/schemas/json/uv.json

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -737,17 +737,10 @@
737737
},
738738
{
739739
"description": "A list of groups",
740-
"type": "object",
741-
"properties": {
742-
"List": {
743-
"type": "array",
744-
"items": {
745-
"$ref": "#/definitions/GroupName"
746-
}
747-
}
748-
},
749-
"additionalProperties": false,
750-
"required": ["List"]
740+
"type": "array",
741+
"items": {
742+
"$ref": "#/definitions/GroupName"
743+
}
751744
}
752745
]
753746
},

0 commit comments

Comments
 (0)