Skip to content

Commit 9811f1e

Browse files
committed
global: bump PYTHON.json version to 1
I think this is good enough to formalize as a stable version.
1 parent 17cfd03 commit 9811f1e

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,7 @@ without having to resort to heuristics.
259259
The file contains a JSON map. This map has the following keys:
260260

261261
version
262-
Version number of the file format. Currently ``0`` until semantics are
263-
stabilized.
262+
Version number of the file format. Currently ``1``.
264263

265264
os
266265
Target operating system for the distribution. e.g. ``linux``, ``macos``,

cpython-linux/build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,7 @@ def build_cpython(client, image, platform, optimized=False):
651651

652652
# Create PYTHON.json file describing this distribution.
653653
python_info = {
654-
# TODO bump version number once format is somewhat stable.
655-
'version': '0',
654+
'version': '1',
656655
'os': 'linux',
657656
'arch': 'x86_64',
658657
'python_flavor': 'cpython',

cpython-macos/build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,8 +365,7 @@ def build_cpython(optimized=False):
365365

366366
# Create PYTHON.json file describing this distribution.
367367
python_info = {
368-
# TODO bump version number once format is somewhat stable.
369-
'version': '0',
368+
'version': '1',
370369
'os': 'macos',
371370
'arch': 'x86_64',
372371
'python_flavor': 'cpython',

cpython-windows/build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,8 +1363,7 @@ def build_cpython(pgo=False):
13631363

13641364
# Create PYTHON.json file describing this distribution.
13651365
python_info = {
1366-
# TODO bump version number once format is somewhat stable.
1367-
'version': '0',
1366+
'version': '1',
13681367
'os': 'windows',
13691368
'arch': 'x86_64',
13701369
'python_flavor': 'cpython',

0 commit comments

Comments
 (0)