Skip to content

Commit e2fdd62

Browse files
committed
build: update version scripts
1 parent 4dfa04b commit e2fdd62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/update_git_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def main() -> None:
1616

1717
preview = version.minor % 2 != 0
1818

19-
for f in ["robotcode/_version.py", "pyproject.toml"]:
19+
for f in ["robotcode/__version__.py", "pyproject.toml"]:
2020
replace_in_file(
2121
Path(f),
2222
re.compile(r"""(^_*version_*\s*=\s*['"])([^'"]*)(['"])""", re.MULTILINE),

scripts/update_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def main() -> None:
1717

1818
preview = version.minor % 2 != 0
1919

20-
for f in ["robotcode/_version.py", "pyproject.toml"]:
20+
for f in ["robotcode/__version__.py", "pyproject.toml"]:
2121
replace_in_file(
2222
Path(f),
2323
re.compile(r"""(^_*version_*\s*=\s*['"])([^'"]*)(['"])""", re.MULTILINE),

0 commit comments

Comments
 (0)