From 541e8b52976a51d82f7b1587aaa31e60d0eb019e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Fri, 27 Dec 2024 22:03:52 +0100 Subject: [PATCH] [AutoBuild] Fix value of `jllwrappers_compat` --- src/AutoBuild.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoBuild.jl b/src/AutoBuild.jl index adc3fbb4..0b5cd2f5 100644 --- a/src/AutoBuild.jl +++ b/src/AutoBuild.jl @@ -1573,7 +1573,7 @@ function build_jll_package(src_name::String, # Add a Project.toml. Note: here we list _all_ runtime dependencies, including those # that may be required only for some platforms. - jllwrappers_compat = isempty(augment_platform_block) ? "1.2.0" : "1.4.0" + jllwrappers_compat = DEFAULT_JLLWRAPPERS_VERSION_SPEC project = build_project_dict(src_name, build_version, dependencies, julia_compat; lazy_artifacts, jllwrappers_compat, augment_platform_block) open(joinpath(code_dir, "Project.toml"), "w") do io TOML.print(io, project)