Skip to content

Commit dcecb31

Browse files
committed
Do not use julia 1.11.3 as well
1 parent a85eb43 commit dcecb31

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

images/minimal-notebook/setup-scripts/setup_julia.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ def get_latest_julia_url() -> tuple[str, str]:
4343
triplet = unify_aarch64(platform.machine()) + "-linux-gnu"
4444
file_info = [vf for vf in latest_version_files if vf["triplet"] == triplet][0]
4545
LOGGER.info(f"Latest version: {file_info['version']} url: {file_info['url']}")
46-
if file_info["version"] == "1.11.2":
46+
BROKEN_VERSION = "1.11.3"
47+
if file_info["version"] == BROKEN_VERSION:
4748
LOGGER.warning(
48-
"Not using Julia 1.11.2, because it hangs in GitHub self-hosted runners"
49+
f"Not using Julia {BROKEN_VERSION}, because it hangs in GitHub self-hosted runners"
4950
)
50-
return file_info["url"].replace("1.11.2", "1.11.1"), "1.11.1"
51+
return file_info["url"].replace(BROKEN_VERSION, "1.11.1"), "1.11.1"
5152
return file_info["url"], file_info["version"]
5253

5354

0 commit comments

Comments
 (0)