Skip to content

Commit

Permalink
Downgrade to Julia 1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mathbunnyru committed Dec 3, 2024
1 parent f632f54 commit 95aca9d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions images/minimal-notebook/setup-scripts/setup_julia.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ 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":
LOGGER.warning(
"Not using Julia 1.11.2, 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"], file_info["version"]


Expand Down

0 comments on commit 95aca9d

Please sign in to comment.