Skip to content

Commit e596297

Browse files
committed
Actually host the schema on wheelnext.dev, and use v0.1.0
We've used versions 0.0.x in the demos, so let's use 0.1.x to disambiguate. Signed-off-by: Michał Górny <mgorny@quansight.com>
1 parent 509822b commit e596297

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

peps/pep-0825.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ PEP defines the following structure:
181181
+- {namespace}
182182
+- {feature} : list[str] = []
183183
184-
This structure corresponds to the version ``0.0.1`` of the format. The
184+
This structure corresponds to the version ``0.1.0`` of the format. The
185185
version number is stored as part of the schema_ URL. Whenever the format
186186
changes, the version number must be incremented. Tools MUST assume that
187187
all variant wheels using an unknown format version are unsupported.
@@ -255,7 +255,7 @@ Example
255255
256256
{
257257
// The schema URL will be replaced with the final URL on packaging.python.org
258-
"$schema": "https://variants-schema.wheelnext.dev/v0.0.3.json",
258+
"$schema": "https://variants-schema.wheelnext.dev/peps/825/v0.1.0.json",
259259
260260
"default-priorities": {
261261
// REQUIRED: specifies that x86_64 CPU properties are more important than
@@ -333,7 +333,7 @@ like:
333333
334334
{
335335
// The schema URL will be replaced with the final URL on packaging.python.org
336-
"$schema": "https://variants-schema.wheelnext.dev/v0.0.3.json",
336+
"$schema": "https://variants-schema.wheelnext.dev/peps/825/v0.1.0.json",
337337
"default-priorities": {
338338
// identical to above
339339
},

peps/pep-0825/appendix-variant-json-schema.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Appendix: JSON Schema for Variant Metadata
66
==========================================
77

8-
.. literalinclude:: variant-schema-0.0.1.json
8+
.. literalinclude:: variant-schema-0.1.0.json
99
:language: json
1010
:linenos:
1111
:name: variant-json-schema
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://wheelnext.dev/schema/variant-0.0.1.json",
4-
"title": "Variant metadata, v0.0.1",
3+
"$id": "https://variants-schema.wheelnext.dev/peps/825/v0.1.0.json",
4+
"title": "Variant metadata, v0.1.0",
55
"description": "The format for variant metadata (variant.json) and index-level metadata ({name}-{version}-variants.json)",
66
"type": "object",
77
"properties": {

0 commit comments

Comments
 (0)