Skip to content

Commit 54c4f59

Browse files
KristofferCkpamnany
authored andcommitted
shield Base.require from invalidations when loading Symbolics.jl (#49604)
(cherry picked from commit 5039d8a)
1 parent 7d4c0da commit 54c4f59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/loading.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -747,10 +747,10 @@ function explicit_project_deps_get(project_file::String, name::String)::Union{No
747747
return nothing
748748
end
749749

750-
function is_v1_format_manifest(raw_manifest::Dict)
750+
function is_v1_format_manifest(raw_manifest::Dict{String})
751751
if haskey(raw_manifest, "manifest_format")
752752
mf = raw_manifest["manifest_format"]
753-
if mf isa Dict && haskey(mf, "uuid")
753+
if mf isa Dict{String} && haskey(mf, "uuid")
754754
# the off-chance where an old format manifest has a dep called "manifest_format"
755755
return true
756756
end

0 commit comments

Comments
 (0)