From 28fb93f55a0f4f5a4cd9e7a0ece4cd6786ffdd56 Mon Sep 17 00:00:00 2001 From: Shuhei Kadowaki Date: Wed, 17 May 2023 22:59:59 +0900 Subject: [PATCH] follow up #49812, fix the wrong type declaration JuliaLang/julia#49812 introduced a bug and broke the CI. This commit fixes it up. --- base/loading.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/loading.jl b/base/loading.jl index 27de1df7f81b5..a7d05e5940ef3 100644 --- a/base/loading.jl +++ b/base/loading.jl @@ -627,7 +627,7 @@ function manifest_deps_get(env::String, where::PkgId, name::String)::Union{Nothi exts = get(d, "extensions", nothing)::Union{Dict{String, Any}, Nothing} if exts !== nothing # Check if `where` is an extension of the project - if where.name in keys(exts) && where.uuid == uuid5(proj.uuid::String, where.name) + if where.name in keys(exts) && where.uuid == uuid5(proj.uuid::UUID, where.name) # Extensions can load weak deps... weakdeps = get(d, "weakdeps", nothing)::Union{Dict{String, Any}, Nothing} if weakdeps !== nothing