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 f632f54 commit 7bdb19cCopy full SHA for 7bdb19c
images/minimal-notebook/setup-scripts/setup_julia.py
@@ -47,6 +47,11 @@ def get_latest_julia_url() -> tuple[str, str]:
47
triplet = unify_aarch64(platform.machine()) + "-linux-gnu"
48
file_info = [vf for vf in latest_version_files if vf["triplet"] == triplet][0]
49
LOGGER.info(f"Latest version: {file_info['version']} url: {file_info['url']}")
50
+ if file_info["version"] == "1.11.2":
51
+ LOGGER.warning(
52
+ "Not using Julia 1.11.2, because it hangs in GitHub self-hosted runners"
53
+ )
54
+ return file_info["url"].replace("1.11.2", "1.11.1"), "1.11.1"
55
return file_info["url"], file_info["version"]
56
57
0 commit comments