File tree 1 file changed +4
-3
lines changed
images/minimal-notebook/setup-scripts
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,12 @@ def get_latest_julia_url() -> tuple[str, str]:
43
43
triplet = unify_aarch64 (platform .machine ()) + "-linux-gnu"
44
44
file_info = [vf for vf in latest_version_files if vf ["triplet" ] == triplet ][0 ]
45
45
LOGGER .info (f"Latest version: { file_info ['version' ]} url: { file_info ['url' ]} " )
46
- if file_info ["version" ] == "1.11.2" :
46
+ BROKEN_VERSION = "1.11.3"
47
+ if file_info ["version" ] == BROKEN_VERSION :
47
48
LOGGER .warning (
48
- "Not using Julia 1.11.2 , because it hangs in GitHub self-hosted runners"
49
+ f "Not using Julia { BROKEN_VERSION } , because it hangs in GitHub self-hosted runners"
49
50
)
50
- return file_info ["url" ].replace ("1.11.2" , "1.11.1" ), "1.11.1"
51
+ return file_info ["url" ].replace (BROKEN_VERSION , "1.11.1" ), "1.11.1"
51
52
return file_info ["url" ], file_info ["version" ]
52
53
53
54
You can’t perform that action at this time.
0 commit comments