Skip to content

Commit

Permalink
fix(schema): schema kw is supposed to have a number sign
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Oct 6, 2023
1 parent f59c29e commit 0255807
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/generate_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

starter = """
$id: https://github.com/pypa/cibuildwheel/blob/main/cibuildwheel/resources/cibuildwheel.schema.json
$schema: http://json-schema.org/draft-07/schema
$schema: http://json-schema.org/draft-07/schema#
additionalProperties: false
description: cibuildwheel's settings.
type: object
Expand Down
2 changes: 1 addition & 1 deletion cibuildwheel/resources/cibuildwheel.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$id": "https://github.com/pypa/cibuildwheel/blob/main/cibuildwheel/resources/cibuildwheel.schema.json",
"$schema": "http://json-schema.org/draft-07/schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"description": "cibuildwheel's settings.",
"type": "object",
Expand Down

0 comments on commit 0255807

Please sign in to comment.