We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2af5020 commit 2a36a04Copy full SHA for 2a36a04
gemd/__version__.py
@@ -1 +1 @@
1
-__version__ = "1.18.1"
+__version__ = "1.18.2"
scripts/validate_version_bump.py
@@ -18,7 +18,7 @@ def main():
18
raise ValueError(f"Couldn't extract version from {version_path}") from e
19
20
try:
21
- with popen(f"git show main:setup.py", mode="r") as fh:
+ with popen(f"git show main:gemd/__version__.py", mode="r") as fh:
22
old_version = extract_version(fh)
23
except Exception as e:
24
raise ValueError(f"Couldn't extract version from main branch") from e
0 commit comments