We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0df25a commit 9f8e11aCopy full SHA for 9f8e11a
src/Operations.jl
@@ -247,6 +247,13 @@ end
247
####################
248
249
function load_tree_hash!(registries::Vector{Registry.RegistryInstance}, pkg::PackageSpec, julia_version)
250
+ if is_stdlib(pkg.uuid, julia_version) && pkg.tree_hash !== nothing
251
+ # manifests from newer julia versions might have stdlibs that are upgradable (FORMER_STDLIBS)
252
+ # that have tree_hash recorded, which we need to clear for this version where they are not upgradable
253
+ # given regular stdlibs don't have tree_hash recorded
254
+ pkg.tree_hash = nothing
255
+ return pkg
256
+ end
257
tracking_registered_version(pkg, julia_version) || return pkg
258
hash = nothing
259
for reg in registries
0 commit comments