Skip to content

Commit 926b2fe

Browse files
committed
[Dependencies] Do not pass the content to Pkg.add in recent Julia
1 parent c925b84 commit 926b2fe

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/Prefix.jl

+9
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,15 @@ function Pkg_add(args...; kwargs...)
615615
end
616616
end
617617

618+
function Pkg_add(::Pkg.Types.Context, rest...; kwargs...)
619+
@static if VERSION >= v"1.13-"
620+
# No need to pass the context anymore.
621+
Pkg_add(rest...; kwargs)
622+
else
623+
Pkg_add(ctx, rest...; kwargs)
624+
end
625+
end
626+
618627
"""
619628
setup_dependencies(prefix::Prefix, dependencies::Vector{PackageSpec}, platform::AbstractPlatform; verbose::Bool = false)
620629

test/dependencies.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ end
373373
with_temp_project() do dir
374374
prefix = Prefix(dir)
375375
dependencies = [
376-
PackageSpec(; name="CMake_jll", version = v"3.24.3")
376+
PackageSpec(; name="CMake_jll", version = "3.24.3")
377377
]
378378
platform = Platform("x86_64", "linux"; libc="musl", cxxstring_abi="cxx11")
379379
if v"1.9" <= VERSION < v"1.11"

0 commit comments

Comments
 (0)