Skip to content

Commit 62fe482

Browse files
chore(deps): bump version to 2025.04.07 (#121)
Co-authored-by: pyproject-schema-store-bot[bot] <181761350+pyproject-schema-store-bot[bot]@users.noreply.github.com>
1 parent 9bccade commit 62fe482

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55

66
[project]
77
name = "validate-pyproject-schema-store"
8-
version = "2025.03.24"
8+
version = "2025.04.07"
99
authors = [
1010
{ name = "Henry Schreiner", email = "[email protected]" },
1111
]

src/validate_pyproject_schema_store/resources/pyright.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
"enableReachabilityAnalysis": {
117117
"type": "boolean",
118118
"title": "Identify code determined to be unreachable through type analysis",
119-
"description": "If enabled, code that is determined to be unreachable by type analysis is reported using a tagged hint. This setting does not affect code that is determined to be unreachable regardless of type analysis; such code is always reported as unreachable. This setting also has no effect when when using the command-line version of pyright because it never emits tagged hints for unreachable code.",
119+
"description": "If enabled, code that is determined to be unreachable by type analysis is reported using a tagged hint. This setting does not affect code that is determined to be unreachable regardless of type analysis; such code is always reported as unreachable. This setting also has no effect when using the command-line version of pyright because it never emits tagged hints for unreachable code.",
120120
"default": true
121121
},
122122
"deprecateTypingAliases": {

src/validate_pyproject_schema_store/resources/ruff.schema.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2944,11 +2944,11 @@
29442944
"AIR0",
29452945
"AIR00",
29462946
"AIR001",
2947+
"AIR002",
29472948
"AIR3",
29482949
"AIR30",
29492950
"AIR301",
29502951
"AIR302",
2951-
"AIR303",
29522952
"ALL",
29532953
"ANN",
29542954
"ANN0",
@@ -4029,6 +4029,7 @@
40294029
"RUF10",
40304030
"RUF100",
40314031
"RUF101",
4032+
"RUF102",
40324033
"RUF2",
40334034
"RUF20",
40344035
"RUF200",

src/validate_pyproject_schema_store/resources/uv.schema.json

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,21 @@
111111
},
112112
"default-groups": {
113113
"description": "The list of `dependency-groups` to install by default.",
114-
"type": [
115-
"array",
116-
"null"
117-
],
118-
"items": {
119-
"$ref": "#/definitions/GroupName"
120-
}
114+
"anyOf": [
115+
{
116+
"type": "array",
117+
"items": {
118+
"$ref": "#/definitions/GroupName"
119+
}
120+
},
121+
{
122+
"type": "string",
123+
"const": "all"
124+
},
125+
{
126+
"type": "null"
127+
}
128+
]
121129
},
122130
"dependency-metadata": {
123131
"description": "Pre-defined static metadata for dependencies of the project (direct or transitive). When provided, enables the resolver to use the specified metadata instead of querying the registry or building the relevant package from source.\n\nMetadata should be provided in adherence with the [Metadata 2.3](https://packaging.python.org/en/latest/specifications/core-metadata/) standard, though only the following fields are respected:\n\n- `name`: The name of the package. - (Optional) `version`: The version of the package. If omitted, the metadata will be applied to all versions of the package. - (Optional) `requires-dist`: The dependencies of the package (e.g., `werkzeug>=0.14`). - (Optional) `requires-python`: The Python version required by the package (e.g., `>=3.10`). - (Optional) `provides-extras`: The extras provided by the package.",

0 commit comments

Comments
 (0)