1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/env python3
import os
import re
import subprocess
tag = subprocess.check_output(['git', 'describe', '--tags'])
# strip the leading v
version = str(tag[1:].strip(), 'utf8')
init_path = os.path.join(os.path.dirname(__file__), '..', 'awscrt', '__init__.py')
print("Updating awscrt.__version__ to version {}".format(version))
contents = None
with open(init_path, 'r+') as init_py:
contents = init_py.read()
contents = re.sub(r"__version__ = '[^']+'", f"__version__ = '{version}'", contents)
with open(init_path, 'w') as init_py:
init_py.write(contents)
|