Skip to content
Merged
Changes from all commits
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
11 changes: 5 additions & 6 deletions L/legate_jl_wrapper/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include(joinpath(YGGDRASIL_DIR, "platforms", "cuda.jl"))
include("make_script.jl")

name = "legate_jl_wrapper"
version = v"25.10" # legate has 05, but Julia doesn't like that
version = v"25.10.1" # legate has 05, but Julia doesn't like that
sources = [
GitSource("https://github.com/JuliaLegate/legate_jl_wrapper.git","b45876b1a766083cd95f10ffd85652af6150acfe"),
]
Expand All @@ -16,9 +16,8 @@ MIN_JULIA_VERSION = v"1.10"
MAX_JULIA_VERSION = v"1.11.999"

# These should match the legate_jll build_tarballs script
MIN_CUDA_VERSION = v"12.2"
MAX_CUDA_VERSION = v"12.8.999"

MIN_CUDA_VERSION = v"13.0"
MAX_CUDA_VERSION = v"13.0.999" # none of the dependency JLLs have 13.1 builds rn

julia_versions = filter!(v -> v >= MIN_JULIA_VERSION && v <= MAX_JULIA_VERSION , julia_versions)
cpu_platform = [Platform("x86_64", "linux")]
Expand Down Expand Up @@ -53,10 +52,10 @@ products = [


dependencies = [
Dependency("legate_jll"; compat = "=25.10"), # Legate versioning is Year.Month
Dependency("legate_jll"; compat = "=25.10.1"), # Legate versioning is Year.Month
Dependency("libcxxwrap_julia_jll"; compat="0.14.3"),
BuildDependency("libjulia_jll"),
HostBuildDependency(PackageSpec(; name = "CMake_jll", version = v"3.31.9")),
HostBuildDependency(PackageSpec(; name = "CMake_jll", version = "3.31.9")),
Dependency(PackageSpec(name="CompilerSupportLibraries_jll", uuid="e66e0078-7015-5450-92f7-15fbd957f2ae"))
]

Expand Down