-
Notifications
You must be signed in to change notification settings - Fork 0
/
_tasks.py
52 lines (41 loc) · 1.55 KB
/
_tasks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import re
import subprocess
import sys
from pathlib import Path
HERE = Path(__file__).parent
def update_version_strings(file_path, new_version):
# taken from:
# https://stackoverflow.com/questions/57108712/replace-updated-version-strings-in-files-via-python
version_regex = re.compile(r"(^_*?version_*?\s*=\s*\")(\d+\.\d+\.\d+-?\S*)\"", re.M)
with open(file_path, "r+") as f:
content = f.read()
f.seek(0)
f.write(
re.sub(
version_regex,
lambda match: f'{match.group(1)}{new_version}"',
content,
)
)
f.truncate()
def update_version(version):
subprocess.run(["poetry", "version", version], shell=False, check=True)
new_version = (
subprocess.run(["poetry", "version"], shell=False, check=True, capture_output=True)
.stdout.decode()
.strip()
.split(" ", 1)[1]
)
update_version_strings(HERE.joinpath("sok_ldp_analysis/__init__.py"), new_version)
def task_update_version():
update_version(sys.argv[1])
def task_new_experiment():
name = sys.argv[1]
files = ["__init__.py", "helper/__init__.py", "notebooks/.gitkeep", "scripts/.gitkeep", "README.md"]
base_path: Path = HERE / "experiments" / name
if base_path.is_file() or base_path.is_dir():
raise ValueError(f"Experiment with name {name} already exists at {base_path}")
for f in files:
path = HERE / "experiments" / name / f
path.parent.mkdir(exist_ok=True, parents=True)
path.touch(exist_ok=True)