forked from ComposioHQ/composio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbump.py
147 lines (120 loc) · 4.61 KB
/
bump.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
"""
Script for bumping the frameworks and plugins.
Usage:
python scripts/bump.py --major/--minor/--patch/--pre/--post
"""
import re
import sys
from enum import Enum
from pathlib import Path
from semver import VersionInfo
class BumpType(Enum):
MAJOR = "major"
MINOR = "minor"
PATCH = "patch"
PRE = "pre"
POST = "post"
def _get_bumped_version(current: VersionInfo, btype: BumpType) -> VersionInfo:
if btype == BumpType.MAJOR:
return current.next_version("major")
if btype == BumpType.MINOR:
return current.next_version("minor")
if btype == BumpType.PATCH:
return current.next_version("patch")
if btype == BumpType.PRE:
return current.next_version("prerelease")
return current.bump_build(token="post")
def _bump_setup(
file: Path, bump_type: BumpType, latest_core_version: VersionInfo
) -> None:
print("=" * 64)
print(f"Bumping {file}")
content = file.read_text(encoding="utf-8")
(version_str,) = re.findall(pattern='version="(.*)",', string=content)
version = VersionInfo.parse(version=version_str)
print(f"Current version {version}")
update = _get_bumped_version(current=version, btype=bump_type)
print(f"Next version {update}")
content = content.replace(f'version="{version}"', f'version="{update}"')
print("Bumping dependencies")
for chunk in content.split('"'):
if not chunk.startswith("composio") or ">" not in chunk:
continue
dependency, version_range = chunk.split(">")
min_version, max_version = map(
VersionInfo.parse,
version_range.replace("=", "").replace(">", "").replace("<", "").split(","),
)
min_version._patch = max_version.patch - ( # pylint: disable=protected-access
max_version.patch % 10
)
content = content.replace(
chunk,
# TODO: for now this BumpType is minor because we do breaking change on a minor release while
# doing breaking changes. Change this to MAJOR once we are past v1.0
f"{dependency}>={min_version},<{_get_bumped_version(current=latest_core_version, btype=BumpType.MINOR)}",
)
file.write_text(content, encoding="utf-8")
print(f"Bumped {file} to {update}")
def _bump_setups(bump_type: BumpType, latest_core_version: VersionInfo) -> None:
cwd = Path.cwd()
for setup in (
cwd / "setup.py",
cwd / "swe" / "setup.py",
*(cwd / "plugins").glob("**/setup.py"),
):
_bump_setup(setup, bump_type, latest_core_version)
def _bump_dockerfile(file: Path, bump_type: BumpType) -> None:
print("=" * 64)
print(f"Bumping {file}")
content = file.read_text(encoding="utf-8")
try:
(version_str,) = re.findall(
pattern=r"composio-core\[all\]==(\d+\.\d+\.\d+.*?) ", string=content
)
except ValueError as error:
print(f"{error=}")
global failed
failed = True
return
version = VersionInfo.parse(version=version_str)
print(f"Current version {version}")
update = _get_bumped_version(current=version, btype=bump_type)
print(f"Next version {update}")
content = content.replace(
f"composio-core[all]=={version}",
f"composio-core[all]=={update}",
)
file.write_text(content, encoding="utf-8")
print(f"Bumped {file} to {update}")
def _bump_dockerfiles(bump_type: BumpType) -> None:
cwd = Path.cwd()
for setup in (cwd / "dockerfiles").glob("**/Dockerfile"):
if setup.suffix == ".ci":
continue
_bump_dockerfile(file=setup, bump_type=bump_type)
def _bump_init(bump_type: BumpType) -> VersionInfo:
file = Path.cwd() / "composio" / "__version__.py"
print("=" * 64)
print(f"Bumping {file}")
content = file.read_text(encoding="utf-8")
(version_str,) = re.findall(pattern='__version__ = "(.*)"', string=content)
version = VersionInfo.parse(version=version_str)
print(f"Current version {version}")
update = _get_bumped_version(current=version, btype=bump_type)
print(f"Next version {update}")
content = content.replace(f'__version__ = "{version}"', f'__version__ = "{update}"')
file.write_text(content, encoding="utf-8")
print(f"Bumped {file} to {update}")
return update
def bump(bump_type: BumpType) -> None:
latest_core_version = _bump_init(bump_type=bump_type)
_bump_setups(bump_type=bump_type, latest_core_version=latest_core_version)
_bump_dockerfiles(bump_type=bump_type)
if __name__ == "__main__":
failed = False
bump(
bump_type=BumpType(sys.argv[1].replace("--", "")),
)
if failed:
sys.exit(1)