Skip to content

Commit

Permalink
global: bump PYTHON.json version to 1
Browse files Browse the repository at this point in the history
I think this is good enough to formalize as a stable version.
  • Loading branch information
indygreg committed May 6, 2019
1 parent 17cfd03 commit 9811f1e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,7 @@ without having to resort to heuristics.
The file contains a JSON map. This map has the following keys:

version
Version number of the file format. Currently ``0`` until semantics are
stabilized.
Version number of the file format. Currently ``1``.

os
Target operating system for the distribution. e.g. ``linux``, ``macos``,
Expand Down
3 changes: 1 addition & 2 deletions cpython-linux/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,8 +651,7 @@ def build_cpython(client, image, platform, optimized=False):

# Create PYTHON.json file describing this distribution.
python_info = {
# TODO bump version number once format is somewhat stable.
'version': '0',
'version': '1',
'os': 'linux',
'arch': 'x86_64',
'python_flavor': 'cpython',
Expand Down
3 changes: 1 addition & 2 deletions cpython-macos/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,7 @@ def build_cpython(optimized=False):

# Create PYTHON.json file describing this distribution.
python_info = {
# TODO bump version number once format is somewhat stable.
'version': '0',
'version': '1',
'os': 'macos',
'arch': 'x86_64',
'python_flavor': 'cpython',
Expand Down
3 changes: 1 addition & 2 deletions cpython-windows/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -1363,8 +1363,7 @@ def build_cpython(pgo=False):

# Create PYTHON.json file describing this distribution.
python_info = {
# TODO bump version number once format is somewhat stable.
'version': '0',
'version': '1',
'os': 'windows',
'arch': 'x86_64',
'python_flavor': 'cpython',
Expand Down

0 comments on commit 9811f1e

Please sign in to comment.