Skip to content

Commit

Permalink
[create-pull-request] automated change (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: henryiii <4616906+henryiii@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and henryiii committed Mar 18, 2024
1 parent f807dc0 commit cb37bf0
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "hatchling.build"

[project]
name = "validate-pyproject-schema-store"
version = "2024.03.11"
version = "2024.03.18"
authors = [
{ name = "Henry Schreiner", email = "henryfs@princeton.edu" },
]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://json.schemastore.org/partial-cibuildwheel.json",
"$defs": {
"inherit": {
"enum": [
"none",
"prepend",
"append"
],
"default": "none",
"description": "How to inherit the parent's value."
}
},
"additionalProperties": false,
"description": "cibuildwheel's toml file, generated with ./bin/generate_schema.py --schemastore from cibuildwheel.",
"type": "object",
"additionalProperties": false,
"properties": {
"archs": {
"description": "Change the architectures built on your machine by default.",
Expand Down Expand Up @@ -172,11 +183,11 @@
},
{
"type": "string",
"pattern": "^docker; ?create_args:"
"pattern": "^docker; ?(create_args|disable_host_mount):"
},
{
"type": "string",
"pattern": "^podman; ?create_args:"
"pattern": "^podman; ?(create_args|disable_host_mount):"
},
{
"type": "object",
Expand All @@ -196,6 +207,9 @@
"items": {
"type": "string"
}
},
"disable-host-mount": {
"type": "boolean"
}
}
}
Expand Down Expand Up @@ -420,6 +434,45 @@
}
]
},
"inherit": {
"type": "object",
"additionalProperties": false,
"properties": {
"before-all": {
"$ref": "#/$defs/inherit"
},
"before-build": {
"$ref": "#/$defs/inherit"
},
"before-test": {
"$ref": "#/$defs/inherit"
},
"config-settings": {
"$ref": "#/$defs/inherit"
},
"container-engine": {
"$ref": "#/$defs/inherit"
},
"environment": {
"$ref": "#/$defs/inherit"
},
"environment-pass": {
"$ref": "#/$defs/inherit"
},
"repair-wheel-command": {
"$ref": "#/$defs/inherit"
},
"test-command": {
"$ref": "#/$defs/inherit"
},
"test-extras": {
"$ref": "#/$defs/inherit"
},
"test-requires": {
"$ref": "#/$defs/inherit"
}
}
},
"before-all": {
"$ref": "#/properties/before-all"
},
Expand Down

0 comments on commit cb37bf0

Please sign in to comment.