Skip to content

Commit 7bdb19c

Browse files
authored
Downgrade to Julia 1.11.1 (#2178)
1 parent f632f54 commit 7bdb19c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ def get_latest_julia_url() -> tuple[str, str]:
4747
triplet = unify_aarch64(platform.machine()) + "-linux-gnu"
4848
file_info = [vf for vf in latest_version_files if vf["triplet"] == triplet][0]
4949
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"
5055
return file_info["url"], file_info["version"]
5156

5257

0 commit comments

Comments
 (0)