mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-16 14:32:57 +00:00
Do not use julia 1.11.3 as well
This commit is contained in:
@@ -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"]
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user