From a0d6b3fb60147f62ea162676e093aac96d8f41b5 Mon Sep 17 00:00:00 2001 From: Benjamin Lorenz Date: Tue, 9 Dec 2025 11:18:57 +0100 Subject: [PATCH] fix: fixup historical stdlibs in manifest --- src/Operations.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Operations.jl b/src/Operations.jl index 3cf9c77fe5..95d1862344 100644 --- a/src/Operations.jl +++ b/src/Operations.jl @@ -425,8 +425,8 @@ function fixups_from_projectfile!(ctx::Context) pkg.weakdeps = Dict{String, Base.UUID}(stdlibs[uuid].name => uuid for uuid in p.weakdeps) # pkg.exts = p.exts # TODO: STDLIBS_BY_VERSION doesn't record this # pkg.entryfile = p.entryfile # TODO: STDLIBS_BY_VERSION doesn't record this - for (name, _) in pkg.weakdeps - if !(name in p.deps) + for (name, uuid) in pkg.weakdeps + if !(uuid in p.deps) delete!(pkg.deps, name) end end