Skip to content

Commit dba1c5c

Browse files
authored
back out JLL change for now
1 parent 5c944ec commit dba1c5c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/AutoMerge/guidelines.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,10 @@ function meets_compat_for_all_deps(working_directory::AbstractString, pkg, versi
9191
for version_range in keys(deps)
9292
if version in Pkg.Types.VersionRange(version_range)
9393
for name in keys(deps[version_range])
94-
@debug("Found a new dependency: $(name)")
95-
dep_has_compat_with_upper_bound[name] = false
94+
if !is_jll_name(name)
95+
@debug("Found a new dependency: $(name)")
96+
dep_has_compat_with_upper_bound[name] = false
97+
end
9698
end
9799
end
98100
end

0 commit comments

Comments
 (0)