17 lines
520 B
Python
17 lines
520 B
Python
import datetime
|
|
import os
|
|
import re
|
|
|
|
PATH_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
# get today date
|
|
now = datetime.datetime.now()
|
|
now_date = now.strftime("%Y%m%d")
|
|
PATH_INIT = os.path.join(PATH_ROOT, 'pytorch_lightning', '__init__.py')
|
|
print(f"prepare init '{PATH_INIT}' - replace version by {now_date}")
|
|
with open(PATH_INIT, 'r') as fp:
|
|
init = fp.read()
|
|
init = re.sub(r'__version__ = [\d\.rc\'"]+', f'__version__ = "{now_date}"', init)
|
|
with open(PATH_INIT, 'w') as fp:
|
|
fp.write(init)
|