Skip to content

Commit 5b70a19

Browse files
author
JeanRobin
committed
Fix release process issue: LATEST_TAIPY_VERSION is now well set.
(cherry picked from commit 104ef37)
1 parent 7b7be97 commit 5b70a19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/release/setup_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def _check_repository_name(value: str) -> str:
185185
# Print out the 'taipy' version that should be tagged latest at the end of the workflow
186186
latest_release = fetch_latest_github_taipy_releases(all_releases)
187187
if args.release_type == "production":
188-
if target_versions.get("taipy", Version.UNKNOWN) >= latest_release:
188+
if not target_versions.get("taipy", Version.UNKNOWN) < latest_release:
189189
latest_release = target_versions["taipy"]
190190
print(f"LATEST_TAIPY_VERSION={latest_release}") # noqa: T201
191191

0 commit comments

Comments
 (0)