Unverified Commit 364d59d1 authored by Patrick von Platen's avatar Patrick von Platen Committed by GitHub
Browse files

Fix community pipelines (#3266)

parent 2ced899c
...@@ -267,7 +267,7 @@ def get_cached_module_file( ...@@ -267,7 +267,7 @@ def get_cached_module_file(
# retrieve github version that matches # retrieve github version that matches
if revision is None: if revision is None:
revision = latest_version if latest_version in available_versions else "main" revision = latest_version if latest_version[1:] in available_versions else "main"
logger.info(f"Defaulting to latest_version: {revision}.") logger.info(f"Defaulting to latest_version: {revision}.")
elif revision in available_versions: elif revision in available_versions:
revision = f"v{revision}" revision = f"v{revision}"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment