We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 655a803 commit ca7ffc8Copy full SHA for ca7ffc8
make_release_package.py
@@ -7,16 +7,16 @@
7
import os
8
import subprocess
9
10
-package_version = "0.1.1" # todo
11
-
12
project_root_path = os.path.dirname(os.path.realpath(__file__))
13
parser = argparse.ArgumentParser(description='Create release artifacts.')
14
parser.add_argument(
15
'destination', help='Destination folder for the package.', type=Path)
+parser.add_argument('version', help='Package version in x.x.x format.', type=str)
16
17
args = parser.parse_args()
18
19
package_path = Path(args.destination)
+package_version = args.version
20
21
Path(package_path).mkdir(parents=True, exist_ok=True)
22
0 commit comments