Skip to content

julia 1.11.5 #220075

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 15, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Formula/j/julia.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class Julia < Formula
stable do
# Use the `-full` tarball to avoid having to download during the build.
# TODO: Check if we can unbundle `curl`: https://github.com/JuliaLang/Downloads.jl/issues/260
url "https://github.com/JuliaLang/julia/releases/download/v1.11.4/julia-1.11.4-full.tar.gz"
sha256 "c4936562d05128842d7fe2be30734333519ea94a54861b5d0bfe38d103e96b5b"
url "https://github.com/JuliaLang/julia/releases/download/v1.11.5/julia-1.11.5-full.tar.gz"
sha256 "147626db6b6887bfb6612cb6cd2a48d689806649fae34dc749fddc8375c2c625"

depends_on "[email protected]"

Expand Down Expand Up @@ -171,6 +171,8 @@ def install
if build.head?
args << "USE_SYSTEM_CURL=1"
else
# Fix for cmake version 4 compatibility
inreplace "deps/tools/common.mk", "CMAKE_COMMON :=", "CMAKE_COMMON := -DCMAKE_POLICY_VERSION_MINIMUM=3.5"
args += ["USE_SYSTEM_CURL=0", "USE_SYSTEM_MBEDTLS=0"]
# Julia 1.11 is incompatible with curl >= 8.10
# Issue ref: https://github.com/JuliaLang/Downloads.jl/issues/260
Expand Down
Loading