Skip to content

Commit 66982bd

Browse files
committed
fix(cli): add missing plugin package
1 parent 69d69e5 commit 66982bd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ classifiers = [
4949
"Framework :: Robot Framework :: Tool",
5050
]
5151
requires-python = ">=3.8"
52-
dependencies = ["robotcode-core==0.76.1"]
52+
dependencies = ["robotcode-core==0.76.1", "robotcode-plugin==0.76.1"]
5353
dynamic = ["version"]
5454

5555

scripts/update_git_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def main() -> None:
6969
for f in [Path("pyproject.toml"), *pyproject_files]:
7070
replace_in_file(
7171
f,
72-
re.compile(r'("robotcode\S*==)([0-9]+\.[0-9]+\.[0-9]+.*)(")', re.MULTILINE),
72+
re.compile(r"""("robotcode\S*==)([0-9]+\.[0-9]+\.[0-9]+[^'"]*)(")""", re.MULTILINE),
7373
rf"\g<1>{version or ''}\g<3>",
7474
)
7575

0 commit comments

Comments
 (0)