-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnoxfile.py
70 lines (52 loc) · 1.73 KB
/
noxfile.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""Nox file for hg-setup
```sh
nox -l
nox -s add-tag-for-release
```
"""
import os
from pathlib import Path
import nox
os.environ.update({"PDM_IGNORE_SAVED_PYTHON": "1"})
nox.options.reuse_existing_virtualenvs = 1
def _get_version_from_pyproject(path=Path.cwd()):
if isinstance(path, str):
path = Path(path)
if not path.name == "pyproject.toml":
path /= "pyproject.toml"
in_project = False
version = None
with open(path, encoding="utf-8") as file:
for line in file:
if line.startswith("[project]"):
in_project = True
if line.startswith("version =") and in_project:
version = line.split("=")[1].strip()
version = version[1:-1]
break
assert version is not None
return version
@nox.session(name="add-tag-for-release", venv_backend="none")
def add_tag_for_release(session):
session.run("hg", "pull", external=True)
result = session.run(
*"hg log -r default -G".split(), external=True, silent=True
)
if result[0] != "@":
session.run("hg", "update", "default", external=True)
version = _get_version_from_pyproject()
print(f"{version = }")
result = session.run("hg", "tags", "-T", "{tag},", external=True, silent=True)
last_tag = result.split(",", 2)[1]
print(f"{last_tag = }")
if last_tag == version:
session.error("last_tag == version")
answer = input(
f'Do you really want to add and push the new tag "{version}"? (yes/[no]) '
)
if answer != "yes":
print("Maybe next time then. Bye!")
return
print("Let's go!")
session.run("hg", "tag", version, external=True)
session.run("hg", "push", external=True)