Skip to content

Commit

Permalink
Do not use julia 1.11.3 as well
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Jan 27, 2025
1 parent a85eb43 commit dcecb31
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions images/minimal-notebook/setup-scripts/setup_julia.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ def get_latest_julia_url() -> tuple[str, str]:
triplet = unify_aarch64(platform.machine()) + "-linux-gnu"
file_info = [vf for vf in latest_version_files if vf["triplet"] == triplet][0]
LOGGER.info(f"Latest version: {file_info['version']} url: {file_info['url']}")
if file_info["version"] == "1.11.2":
BROKEN_VERSION = "1.11.3"
if file_info["version"] == BROKEN_VERSION:
LOGGER.warning(
"Not using Julia 1.11.2, because it hangs in GitHub self-hosted runners"
f"Not using Julia {BROKEN_VERSION}, because it hangs in GitHub self-hosted runners"
)
return file_info["url"].replace("1.11.2", "1.11.1"), "1.11.1"
return file_info["url"].replace(BROKEN_VERSION, "1.11.1"), "1.11.1"
return file_info["url"], file_info["version"]


Expand Down

0 comments on commit dcecb31

Please sign in to comment.