Manually update version in package.json (#8057)

This commit is contained in:
Earle Lowe 2021-08-15 20:32:20 -07:00 committed by GitHub
parent 39fbe2aa17
commit e4a802da04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 66 additions and 0 deletions

View File

@ -95,6 +95,7 @@ if [ ! "$CI" ]; then
npm install
npm audit fix || true
npm run build
python ../installhelper.py
else
echo "Skipping node.js in install.sh on MacOS ci."
fi

65
installhelper.py Normal file
View File

@ -0,0 +1,65 @@
#
# Install helper code to manage inserting the correct version for the GUI
# Gets the version from the result of "chia version"
# Converts to proper symver format so NPM doesn't complain
# Adds the version info to the package.json file
#
import json
import os
import subprocess
from pkg_resources import parse_version
#
# The following function is borrowed from
# https://github.com/inveniosoftware/invenio-assets/blob/maint-1.0/invenio_assets/npm.py
# Copyright (C) 2015-2018 CERN.
#
def make_semver(version_str):
v = parse_version(version_str)
major = v._version.release[0]
try:
minor = v._version.release[1]
except IndexError:
minor = 0
try:
patch = v._version.release[2]
except IndexError:
patch = 0
prerelease = []
if v._version.pre:
prerelease.append("".join(str(x) for x in v._version.pre))
if v._version.dev:
prerelease.append("".join(str(x) for x in v._version.dev))
prerelease = ".".join(prerelease)
local = v.local
version = "{0}.{1}.{2}".format(major, minor, patch)
if prerelease:
version += "-{0}".format(prerelease)
if local:
version += "+{0}".format(local)
return version
def update_version():
with open(f"{os.path.dirname(__file__)}/chia-blockchain-gui/package.json") as f:
data = json.load(f)
version: str = "0.0"
output = subprocess.run(["chia", "version"], capture_output=True)
if output.returncode == 0:
version = str(output.stdout.strip(), "utf-8")
data["version"] = make_semver(version)
with open(f"{os.path.dirname(__file__)}/chia-blockchain-gui/package.json", "w") as w:
json.dump(data, indent=4, fp=w)
if __name__ == "__main__":
update_version()