forked from p15670423/monkey
Changed build to static file so that build scripts can change it dynamically
This commit is contained in:
parent
fcef4f154f
commit
46952ed0ae
|
@ -0,0 +1 @@
|
||||||
|
dev
|
|
@ -1,10 +1,13 @@
|
||||||
# To get the version from shell, run `python ./version.py` (see `python ./version.py -h` for details).
|
# To get the version from shell, run `python ./version.py` (see `python ./version.py -h` for details).
|
||||||
import argparse
|
import argparse
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
MAJOR = "1"
|
MAJOR = "1"
|
||||||
MINOR = "8"
|
MINOR = "8"
|
||||||
PATCH = "0"
|
PATCH = "0"
|
||||||
BUILD = "dev"
|
build_file_path = Path(__file__).parent.joinpath("BUILD")
|
||||||
|
with open(build_file_path, "r") as build_file:
|
||||||
|
BUILD = build_file.read()
|
||||||
|
|
||||||
|
|
||||||
def get_version(build=BUILD):
|
def get_version(build=BUILD):
|
||||||
|
|
|
@ -19,7 +19,9 @@ def main():
|
||||||
hookspath=['./pyinstaller_hooks'],
|
hookspath=['./pyinstaller_hooks'],
|
||||||
runtime_hooks=None,
|
runtime_hooks=None,
|
||||||
binaries=None,
|
binaries=None,
|
||||||
datas=None,
|
datas=[
|
||||||
|
("../common/BUILD", "../common/BUILD")
|
||||||
|
],
|
||||||
excludes=None,
|
excludes=None,
|
||||||
win_no_prefer_redirects=None,
|
win_no_prefer_redirects=None,
|
||||||
win_private_assemblies=None,
|
win_private_assemblies=None,
|
||||||
|
|
|
@ -15,7 +15,9 @@ def main():
|
||||||
hookspath=None,
|
hookspath=None,
|
||||||
runtime_hooks=None,
|
runtime_hooks=None,
|
||||||
binaries=None,
|
binaries=None,
|
||||||
datas=None,
|
datas=[
|
||||||
|
("../common/BUILD", "../common/BUILD")
|
||||||
|
],
|
||||||
excludes=None,
|
excludes=None,
|
||||||
win_no_prefer_redirects=None,
|
win_no_prefer_redirects=None,
|
||||||
win_private_assemblies=None,
|
win_private_assemblies=None,
|
||||||
|
|
Loading…
Reference in New Issue