Skip to content

Instantly share code, notes, and snippets.

@StefanKarpinski
Created September 8, 2026 13:29
Show Gist options
  • Select an option

  • Save StefanKarpinski/b8ed44549025cc6f34762e6b43ccd16c to your computer and use it in GitHub Desktop.

Select an option

Save StefanKarpinski/b8ed44549025cc6f34762e6b43ccd16c to your computer and use it in GitHub Desktop.
Resolver.jl realistic-structure evaluation corpus — 115 unsatisfiable projects built the way projects arise (hub + direct deps, caret compat, transitive deps free), with the generator
# Realistic-structure evaluation corpus: a hub plus a few direct deps a user
# would add, caret compat as Pkg.add writes it, transitive deps unconstrained;
# conflict triggered by (A) bumping one companion to latest, (B) upgrading all
# direct deps to latest, (C) adding a popular package at latest.
# julia --project build_realistic_corpus.jl SHARD NSHARDS OUTDIR
using Resolver: Resolver, Problem, Diagnosis, resolve
using Resolver.Diagnostics: report_problems
using Pkg.Versions: VersionSpec, semver_spec
# a small JSON writer, so the metadata needs no package
jsonstr(x::AbstractString) = '"' * replace(replace(x, "\\" => "\\\\"), "\"" => "\\\"") * '"'
jsonstr(x::Union{Integer,Bool}) = string(x)
jsonstr(x::AbstractVector) = "[" * join((jsonstr(e) for e in x), ",") * "]"
jsonstr(x::AbstractDict) = "{" * join((jsonstr(string(k)) * ":" * jsonstr(v) for (k, v) in sort!(collect(x); by = first)), ",") * "}"
include(joinpath(@__DIR__, "test", "registry.jl"))
const HUBS = ["DataFrames","Flux","Plots","JuMP","Turing","Makie","GLMakie",
"CairoMakie","DifferentialEquations","MLJ","Optim","Distributions","CSV",
"Images","Symbolics","Zygote","Pluto","Franklin","Genie","Oceananigans",
"Agents","Gadfly","StatsModels","Gen","Yao","Catlab","ModelingToolkit",
"Trixi","QuantumOptics","Molly","DynamicalSystems","Bloqade","Soss",
"TensorKit","ITensors","ApproxFun","Gridap","Ferrite","Knet",
"Lux","Transformers","GeometricFlux","AlphaZero","POMDPs","Convex",
"NeuralPDE","DiffEqFlux","Metatheory","StaticArrays","Unitful","Meshes",
"GeoStats","Rasters","ClimaCore","VoronoiFVM","LazySets","IntervalArithmetic"]
# what people add next to a hub, roughly in order of how often
const POPULAR = ["DataFrames","CSV","Plots","CairoMakie","StaticArrays",
"Distributions","StatsBase","OrdinaryDiffEq","ForwardDiff","Zygote","JSON",
"Unitful","BenchmarkTools","Optim","Symbolics","Flux","Images","Makie",
"HTTP","DataStructures","Interpolations","ProgressMeter","JSON3","Lux",
"ModelingToolkit","Turing","JuMP","DifferentialEquations"]
caret(v) = semver_spec(string(VersionNumber(v.major, v.minor, v.patch)))
latest(rp, p) = maximum(rp.provider(p).versions)
isjll(p) = endswith(p, "_jll")
function shape(d::Diagnosis)
kinds = Dict{String,Int}()
for c in d.conflicts
kinds[string(c.kind)] = get(kinds, string(c.kind), 0) + 1
end
rep = sprint(show, MIME("text/plain"), d)
ls = split(rep, '\n')
Dict("conflicts" => length(d.conflicts), "kinds" => kinds,
"maxlayers" => maximum((length(c.layers) for c in d.conflicts); init = 0),
"lines" => length(ls),
"compat_closers" => count(l -> occursin("your compat leaves", l), ls),
"unless" => count(l -> occursin("would not help unless", l) || occursin("would only help", l), ls),
"flat" => count(l -> occursin("does not help", l) || occursin("do not help", l), ls),
"problems" => length(report_problems(d)))
end
function score(m)
k = m["kinds"]
5 * get(k, "cover", 0) + 5 * get(k, "ways", 0) + 3 * get(k, "product", 0) +
m["conflicts"] + 2 * m["unless"] +
(m["conflicts"] > 0 && m["compat_closers"] < m["conflicts"] ? 4 : 0)
end
function trycase!(rp, out, id, hub, variant, reqs, compat)
prob = Problem(reqs; compat)
d = try resolve(rp, prob) catch e; println(stderr, " $id: ERROR $(sprint(showerror, e))"); flush(stderr); return end
d isa Diagnosis || (println(stderr, " $id: sat"); flush(stderr); return)
rep = sprint(show, MIME("text/plain"), d)
m = shape(d)
m["score"] = score(m)
write(joinpath(out, "$id.txt"), rep)
write(joinpath(out, "$id.json"), jsonstr(Dict{String,Any}("id" => id, "hub" => hub,
"variant" => variant, "reqs" => reqs,
"compat" => Dict{String,Any}(p => string(s) for (p, s) in compat),
"metrics" => Dict{String,Any}(m))))
println(stderr, " $id: UNSAT conflicts=$(m["conflicts"]) kinds=$(m["kinds"]) lines=$(m["lines"]) score=$(m["score"])")
flush(stderr)
end
# how many packages depend directly on each (at their latest version): the
# packages people depend on directly are the ones many packages depend on
function indegree(rp)
deg = Dict{String,Int}()
for p in rp.packages
pd = try rp.provider(p) catch; continue end
isempty(pd.versions) && continue
for q in get(pd.depends, maximum(pd.versions), String[])
deg[q] = get(deg, q, 0) + 1
end
end
return deg
end
function main(shard, nshards, out)
mkpath(out)
rp = registry.provider()
deg = indegree(rp)
println(stderr, "in-degree table: $(length(deg)) packages"); flush(stderr)
for (i, h) in enumerate(HUBS)
(i - 1) % nshards == shard - 1 || continue
h in rp.packages || continue
sol = try resolve(rp, Problem([h]); diagnose = false) catch; nothing end
sol isa Dict || (println(stderr, "$h: hub alone does not resolve"); flush(stderr); continue)
vh = sol[h]
pd = rp.provider(h)
direct = String[p for p in get(pd.depends, vh, String[]) if p in rp.packages && !isjll(p)]
# companions: popular first, then the most-versioned (a proxy for active)
sort!(direct; by = p -> (findfirst(==(p), POPULAR) === nothing ? 1000 : findfirst(==(p), POPULAR), -length(rp.provider(p).versions), p))
comps = direct[1:min(3, end)]
# two additions, from POPULAR rotated by the hub's index so they vary
n = length(POPULAR)
rot = String[POPULAR[mod1(i + j, n)] for j in 0:n-1]
adds = String[]
for p in rot
length(adds) == 2 && break
(p == h || p in comps || p ∉ rp.packages || p in adds) && continue
push!(adds, p)
end
D = [h; comps]
base = Dict{String,VersionSpec}(p => caret(sol[p]) for p in D if haskey(sol, p))
println(stderr, "$h: project = $(D) additions = $(adds)"); flush(stderr)
# A. bump one companion to latest
for c in comps
haskey(sol, c) || continue
lv = latest(rp, c)
lv in base[c] && continue # already at latest, nothing to bump
compat = copy(base); compat[c] = caret(lv)
trycase!(rp, out, "$h+bump-$c", h, "bump", D, compat)
end
# B. upgrade every direct dep to latest
compat = Dict{String,VersionSpec}(p => caret(latest(rp, p)) for p in D)
compat != base && trycase!(rp, out, "$h+upgrade-direct", h, "upgrade", D, compat)
# C. add popular packages at latest to the project as created
for a in adds
compat = copy(base); compat[a] = caret(latest(rp, a))
trycase!(rp, out, "$h+add-$a", h, "add", [D; a], compat)
end
# P. bump two companions at once (a partial upgrade)
bumpable = String[c for c in comps if haskey(sol, c) && !(latest(rp, c) in base[c])]
for x in 1:length(bumpable), y in x+1:length(bumpable)
compat = copy(base)
compat[bumpable[x]] = caret(latest(rp, bumpable[x]))
compat[bumpable[y]] = caret(latest(rp, bumpable[y]))
trycase!(rp, out, "$h+bump2-$(bumpable[x])-$(bumpable[y])", h, "bump2", D, compat)
end
# M. the manifest preserved: the project's whole closure held at the
# versions the project resolved to (Pkg's preserve-all tier), while one
# direct dep is bumped to latest, or a package is added at latest
psol = try resolve(rp, Problem(D; compat = base); diagnose = false) catch; nothing end
if psol isa Dict
manifest = Dict{String,VersionSpec}(p => VersionSpec("$(v.major).$(v.minor).$(v.patch)-*") for (p, v) in psol)
for c in bumpable
compat = copy(manifest); compat[c] = caret(latest(rp, c))
trycase!(rp, out, "$h+manifest-bump-$c", h, "manifest-bump", D, compat)
end
for a in adds
compat = copy(manifest); compat[a] = caret(latest(rp, a))
trycase!(rp, out, "$h+manifest-add-$a", h, "manifest-add", [D; a], compat)
end
else
println(stderr, " $h: project as created does not resolve"); flush(stderr)
end
# BIG. a large application: the hub, its own family, and the most
# depended-on packages of its closure as direct deps, all wanted at
# latest; transitive deps free
fam = String[p for p in keys(sol) if p != h && startswith(p, h) && !isjll(p)]
pool = String[p for p in keys(sol) if p != h && p ∉ fam && !isjll(p) && p in rp.packages]
sort!(pool; by = p -> (-get(deg, p, 0), p))
for n in (10, 20)
big = [h; fam; pool[1:min(n, end)]]
compat = Dict{String,VersionSpec}(p => caret(latest(rp, p)) for p in big)
trycase!(rp, out, "$h+big$n-upgrade", h, "big$n-upgrade", big, compat)
# ... and the partial upgrade: only the ones that have moved on are
# wanted at latest, the rest stay where the hub had them
compat = Dict{String,VersionSpec}(p => caret(sol[p]) for p in big if haskey(sol, p))
moved = String[p for p in big if haskey(sol, p) && !(latest(rp, p) in compat[p])]
for (j, p) in enumerate(moved)
isodd(j) && (compat[p] = caret(latest(rp, p)))
end
trycase!(rp, out, "$h+big$n-partial", h, "big$n-partial", big, compat)
end
end
println(stderr, "shard $shard done"); flush(stderr)
end
main(parse(Int, ARGS[1]), parse(Int, ARGS[2]), ARGS[3])

Realistic-structure evaluation corpus

A hub plus a few direct deps a user would add, caret compat as Pkg.add writes it, transitive deps unconstrained. Conflict triggered by bumping one companion to latest (bump), upgrading every direct dep to latest (upgrade), or adding a popular package at latest (add). General registry as of 2026-09-08. 115 distinct unsatisfiable cases from 162 generated; by trigger: {'big20-upgrade': 15, 'big20-partial': 18, 'bump2': 12, 'bump': 16, 'upgrade': 5, 'big10-upgrade': 6, 'big10-partial': 12, 'manifest-bump': 11, 'manifest-add': 15, 'add': 5}; sections by kind: {'menu': 111, 'ways': 5, 'cover': 6}.

# case reqs conflicts kinds lines registry-closed unless flat
1 Bloqade+big20-upgrade 27 4 {'menu': 3, 'ways': 1} 57 0 2 6
2 Bloqade+big20-partial 27 3 {'menu': 3} 43 0 3 5
3 Franklin+big20-upgrade 22 2 {'menu': 2} 31 0 3 2
4 CSV+big20-upgrade 19 1 {'ways': 1} 26 0 1 1
5 Knet+big20-partial 21 1 {'cover': 1} 52 0 1 2
6 Knet+bump2-NNlib-JLD2 4 1 {'cover': 1} 33 0 1 1
7 Pluto+big20-upgrade 22 1 {'cover': 1} 27 0 1 3
8 Transformers+bump2-Zygote-HTTP 4 1 {'cover': 1} 30 0 1 2
9 Knet+bump-NNlib 4 1 {'menu': 1} 17 0 3 0
10 Knet+bump2-CUDA-NNlib 4 1 {'menu': 1} 16 0 3 0
11 Knet+upgrade-direct 4 1 {'menu': 1} 16 0 3 0
12 Molly+big20-upgrade 21 1 {'menu': 1} 18 0 3 0
13 Transformers+bump-Zygote 4 1 {'menu': 1} 17 0 3 0
14 Franklin+big10-upgrade 12 1 {'ways': 1} 24 0 0 2
15 Franklin+big20-partial 22 1 {'ways': 1} 26 0 0 2
16 Franklin+upgrade-direct 4 1 {'ways': 1} 24 0 0 2
17 Knet+bump2-CUDA-JLD2 4 1 {'cover': 1} 28 0 0 0
18 Transformers+bump2-Flux-HTTP 4 1 {'cover': 1} 24 0 0 2
19 Bloqade+bump2-CairoMakie-ForwardDiff 4 1 {'menu': 1} 14 0 2 1
20 Bloqade+upgrade-direct 4 1 {'menu': 1} 14 0 2 1
21 Metatheory+big10-partial 10 1 {'menu': 1} 14 0 2 1
22 Metatheory+bump2-DataStructures-TermInterface 4 1 {'menu': 1} 14 0 2 1
23 Transformers+bump-Flux 4 1 {'menu': 1} 14 0 2 1
24 Transformers+bump2-Zygote-Flux 4 1 {'menu': 1} 15 0 2 1
25 Transformers+upgrade-direct 4 1 {'menu': 1} 15 0 2 1
26 Gadfly+big20-partial 21 2 {'menu': 2} 29 0 1 3
27 Bloqade+big10-partial 17 1 {'menu': 1} 16 0 1 2
28 Bloqade+manifest-bump-CairoMakie 4 1 {'menu': 1} 18 0 1 1
29 CSV+big20-partial 19 1 {'menu': 1} 14 0 1 2
30 CSV+manifest-bump-Parsers 4 1 {'menu': 1} 17 0 1 1
31 ClimaCore+manifest-add-Turing 5 1 {'menu': 1} 18 0 1 2
32 Convex+add-Images 5 1 {'menu': 1} 17 0 1 1
33 Convex+manifest-add-Images 5 1 {'menu': 1} 18 0 1 1
34 DataFrames+big20-partial 21 1 {'menu': 1} 16 0 1 1
35 Franklin+big10-partial 12 1 {'menu': 1} 13 0 1 2
36 Gadfly+big20-upgrade 21 1 {'menu': 1} 13 0 1 2
37 Gen+add-Lux 5 1 {'menu': 1} 16 0 1 1
38 Gen+add-ModelingToolkit 5 1 {'menu': 1} 16 0 1 1
39 Gen+big20-partial 21 1 {'menu': 1} 13 0 1 2
40 Gen+bump2-ForwardDiff-JSON 4 1 {'menu': 1} 13 0 1 2
41 GeoStats+manifest-add-ModelingToolkit 5 1 {'menu': 1} 19 0 1 0
42 GeometricFlux+add-Symbolics 5 1 {'menu': 1} 15 0 1 0
43 GeometricFlux+big20-partial 21 1 {'menu': 1} 12 0 1 1
44 GeometricFlux+big20-upgrade 21 1 {'menu': 1} 15 0 1 1
45 GeometricFlux+bump2-Flux-DataStructures 4 1 {'menu': 1} 13 0 1 2
46 Images+big20-partial 21 1 {'menu': 1} 16 0 1 2
47 Images+big20-upgrade 21 1 {'menu': 1} 16 0 1 3
48 Knet+big10-partial 11 1 {'menu': 1} 16 0 1 1
49 Knet+big10-upgrade 11 1 {'menu': 1} 16 0 1 1
50 Knet+big20-upgrade 21 1 {'menu': 1} 16 0 1 2
51 Knet+bump-CUDA 4 1 {'menu': 1} 14 0 1 0
52 Knet+bump-JLD2 4 1 {'menu': 1} 16 0 1 1
53 Knet+manifest-bump-JLD2 4 1 {'menu': 1} 16 0 1 1
54 Metatheory+big10-upgrade 10 1 {'menu': 1} 13 0 1 1
55 Metatheory+bump2-TimerOutputs-TermInterface 4 1 {'menu': 1} 16 0 1 1
56 Metatheory+upgrade-direct 4 1 {'menu': 1} 12 0 1 1
57 ModelingToolkit+big20-upgrade 23 1 {'menu': 1} 17 0 1 2
58 Molly+big20-partial 21 1 {'menu': 1} 16 0 1 2
59 Oceananigans+big10-partial 11 1 {'menu': 1} 19 0 1 2
60 Rasters+big20-partial 21 1 {'menu': 1} 13 0 1 2
61 Soss+big20-partial 21 1 {'menu': 1} 14 0 1 2
62 Soss+bump-DataStructures 4 1 {'menu': 1} 14 0 1 2
63 Soss+bump2-StatsBase-DataStructures 4 1 {'menu': 1} 14 0 1 2
64 Symbolics+big20-upgrade 21 1 {'menu': 1} 19 0 1 2
65 Transformers+big10-partial 11 1 {'menu': 1} 18 0 1 2
66 Transformers+big20-partial 21 1 {'menu': 1} 17 0 1 4
67 Transformers+big20-upgrade 21 1 {'menu': 1} 13 0 1 2
68 Yao+manifest-add-ModelingToolkit 5 1 {'menu': 1} 19 0 1 0
69 Yao+manifest-add-Turing 5 1 {'menu': 1} 19 0 1 2
70 Bloqade+bump-CairoMakie 4 1 {'menu': 1} 16 0 0 1
71 Bloqade+bump-ForwardDiff 4 1 {'menu': 1} 14 0 0 2
72 CSV+bump-Parsers 4 1 {'menu': 1} 16 0 0 1
73 Catlab+big10-partial 11 1 {'menu': 1} 14 0 0 2
74 Catlab+manifest-add-Turing 5 1 {'menu': 1} 21 0 0 3
75 DataFrames+manifest-add-CSV 5 1 {'menu': 1} 16 0 0 1
76 DiffEqFlux+big10-upgrade 11 1 {'menu': 1} 16 0 0 1
77 DynamicalSystems+big10-upgrade 12 1 {'menu': 1} 18 0 0 2
78 DynamicalSystems+big20-upgrade 22 1 {'menu': 1} 22 0 0 3
79 Gadfly+big10-partial 11 1 {'menu': 1} 14 0 0 2
80 Gadfly+bump-DataStructures 4 1 {'menu': 1} 14 0 0 2
81 Gen+big10-partial 11 1 {'menu': 1} 14 0 0 2
82 Gen+big20-upgrade 21 1 {'menu': 1} 13 0 0 2
83 Gen+bump-ForwardDiff 4 1 {'menu': 1} 14 0 0 2
84 Gen+manifest-add-Lux 5 1 {'menu': 1} 18 0 0 3
85 Gen+manifest-add-ModelingToolkit 5 1 {'menu': 1} 18 0 0 3
86 GeoStats+big20-partial 27 1 {'menu': 1} 20 0 0 2
87 GeometricFlux+big10-partial 11 1 {'menu': 1} 14 0 0 2
88 GeometricFlux+bump-Flux 4 1 {'menu': 1} 14 0 0 2
89 GeometricFlux+manifest-add-Symbolics 5 1 {'menu': 1} 16 0 0 1
90 ITensors+big20-partial 21 1 {'menu': 1} 14 0 0 2
91 Knet+manifest-bump-CUDA 4 1 {'menu': 1} 15 0 0 0
92 Knet+manifest-bump-NNlib 4 1 {'menu': 1} 16 0 0 0
93 Metatheory+bump-DataStructures 4 1 {'menu': 1} 14 0 0 2
94 Metatheory+bump-TermInterface 4 1 {'menu': 1} 16 0 0 1
95 Metatheory+bump-TimerOutputs 4 1 {'menu': 1} 16 0 0 1
96 Metatheory+manifest-bump-TermInterface 4 1 {'menu': 1} 16 0 0 1
97 Metatheory+manifest-bump-TimerOutputs 4 1 {'menu': 1} 16 0 0 1
98 Oceananigans+big20-partial 21 1 {'menu': 1} 20 0 0 4
99 POMDPs+manifest-add-Images 5 1 {'menu': 1} 19 0 0 2
100 Pluto+big10-partial 12 1 {'menu': 1} 14 0 0 2
101 Pluto+big10-upgrade 12 1 {'menu': 1} 12 0 0 1
102 Rasters+manifest-add-Turing 5 1 {'menu': 1} 19 0 0 2
103 Soss+add-OrdinaryDiffEq 5 1 {'menu': 1} 16 0 0 1
104 Soss+big10-partial 11 1 {'menu': 1} 16 0 0 2
105 Soss+big20-upgrade 21 1 {'menu': 1} 15 0 0 3
106 Soss+manifest-add-OrdinaryDiffEq 5 1 {'menu': 1} 17 0 0 1
107 Soss+manifest-bump-DataStructures 4 1 {'menu': 1} 15 0 0 2
108 Symbolics+manifest-add-Images 5 1 {'menu': 1} 20 0 0 3
109 Transformers+bump-HTTP 4 1 {'menu': 1} 15 0 0 2
110 Transformers+manifest-bump-Flux 4 1 {'menu': 1} 14 0 0 2
111 Transformers+manifest-bump-HTTP 4 1 {'menu': 1} 14 0 0 2
112 Transformers+manifest-bump-Zygote 4 1 {'menu': 1} 23 0 0 5
113 Turing+big20-partial 21 1 {'menu': 1} 22 0 0 4
114 VoronoiFVM+big20-partial 21 1 {'menu': 1} 19 0 0 2
115 Zygote+manifest-add-Images 5 1 {'menu': 1} 19 0 0 1

1. Bloqade+big20-upgrade

reqs: ['Bloqade', 'BloqadeExpr', 'BloqadeMIS', 'BloqadeKrylov', 'BloqadeODE', 'BloqadeLattices', 'BloqadeWaveforms', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'Tables', 'OrderedCollections', 'Graphs', 'Unitful', 'RecipesBase', 'MacroTools', 'Interpolations']

compat: {'Bloqade': '0.2.5 - 0.2', 'BloqadeExpr': '0.2.3 - 0.2', 'BloqadeKrylov': '0.2.2 - 0.2', 'BloqadeLattices': '0.2.3 - 0.2', 'BloqadeMIS': '0.2.2 - 0.2', 'BloqadeODE': '0.2.3 - 0.2', 'BloqadeWaveforms': '0.2.2 - 0.2', 'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'Interpolations': '0.16.3 - 0.16', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 4 conflicts, each of which must be fixed:

Conflict 1: Bloqade
  • Bloqade requires ForwardDiff 0.10.13–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: relax your compat on ForwardDiff
    → allows: ForwardDiff 0.10.39
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement ForwardDiff does not help.

Conflict 2: Bloqade
  • Bloqade requires Interpolations 0.13.1–0.13.2, 0.13.4–0.15.2 (through
    BloqadeWaveforms)
  • your compat leaves Interpolations 0.16.3
  and also:
  • Bloqade requires OrderedCollections 1.3.0–1.8.2 (through BloqadeKrylov and
    Configurations)
  • your compat leaves OrderedCollections 2.0.1
  Fix it in any one of these ways:
    1. relax your compat on Interpolations and relax your compat on
       OrderedCollections
       → allows: Interpolations 0.15.2, OrderedCollections 1.8.2
    2. drop requirement BloqadeKrylov and drop requirement BloqadeWaveforms
       → allows: Interpolations 0.16.3, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement Interpolations does not help.

Conflict 3: Bloqade
  • Bloqade requires DataStructures 0.18.0–0.18.22 (through BloqadeODE and
    DiffEqCallbacks)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Bloqade
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on ForwardDiff, relaxed your compat on Graphs,
      relaxed your compat on Interpolations, relaxed your compat on JSON and
      relaxed your compat on OrderedCollections.

Conflict 4: BloqadeODE
  • BloqadeODE requires DataStructures 0.18.0–0.18.22 (through
    DiffEqCallbacks)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement BloqadeODE
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on BloqadeODE does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on ForwardDiff, relaxed your compat on Graphs,
      relaxed your compat on Interpolations, relaxed your compat on JSON and
      relaxed your compat on OrderedCollections.

There may be more to say about some of these.

2. Bloqade+big20-partial

reqs: ['Bloqade', 'BloqadeExpr', 'BloqadeMIS', 'BloqadeKrylov', 'BloqadeODE', 'BloqadeLattices', 'BloqadeWaveforms', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'Tables', 'OrderedCollections', 'Graphs', 'Unitful', 'RecipesBase', 'MacroTools', 'Interpolations']

compat: {'Bloqade': '0.2.5 - 0.2', 'BloqadeExpr': '0.2.3 - 0.2', 'BloqadeKrylov': '0.2.2 - 0.2', 'BloqadeLattices': '0.2.3 - 0.2', 'BloqadeMIS': '0.2.2 - 0.2', 'BloqadeODE': '0.2.3 - 0.2', 'BloqadeWaveforms': '0.2.2 - 0.2', 'DataStructures': '0.18.22 - 0.18', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.13.1 - 1', 'Interpolations': '0.16.3 - 0.16', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '1.8.2 - 1', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 3 conflicts, each of which must be fixed:

Conflict 1: Bloqade
  • Bloqade requires ForwardDiff 0.10.13–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: relax your compat on ForwardDiff
    → allows: Bloqade 0.2.5, ForwardDiff 0.10.39
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement Bloqade would not help unless you also relaxed your
      compat on ForwardDiff, relaxed your compat on Interpolations and dropped
      requirement BloqadeODE.

Conflict 2: Bloqade
  • Bloqade requires Interpolations 0.13.1–0.13.2, 0.13.4–0.15.2 (through
    BloqadeWaveforms)
  • your compat leaves Interpolations 0.16.3
  The only minimal fix: relax your compat on Interpolations
    → allows: Bloqade 0.2.5, Interpolations 0.15.2
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement Interpolations does not help.
    • dropping requirement Bloqade would not help unless you also relaxed your
      compat on ForwardDiff, relaxed your compat on Interpolations and dropped
      requirement BloqadeODE.

Conflict 3: Bloqade
  • your compat leaves Bloqade 0.2.5
  • Bloqade 0.2.5 requires JSON 0.21.0–0.21.4 (through BloqadeExpr,
    OMEinsumContractionOrders, Yao, YaoSubspaceArrayReg, OMEinsum, YaoBlocks
    and YaoToEinsum)
  • your compat leaves JSON 1.8.0
  The only minimal fix: relax your compat on JSON
    → allows: Bloqade 0.2.5, JSON 0.21.4
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement JSON does not help.
    • dropping requirement Bloqade would not help unless you also relaxed your
      compat on ForwardDiff, relaxed your compat on Interpolations and dropped
      requirement BloqadeODE.

There may be more to say about some of these.

3. Franklin+big20-upgrade

reqs: ['Franklin', 'FranklinTemplates', 'JLLWrappers', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'HTTP', 'DelimitedFiles', 'OrderedCollections', 'Preferences', 'CodecZlib', 'URIs', 'LoggingExtras', 'TranscodingStreams', 'ExprTools', 'Parsers', 'MbedTLS', 'Literate', 'IOCapture', 'MIMEs', 'StructUtils', 'LiveServer']

compat: {'CodecZlib': '0.7.9 - 0.7', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'ExprTools': '0.1.11 - 0.1', 'Franklin': '0.10.97 - 0.10', 'FranklinTemplates': '0.10.4 - 0.10', 'HTTP': '2.6.7 - 2', 'IOCapture': '1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'Literate': '2.21.0 - 2', 'LiveServer': '1.6.0 - 1', 'LoggingExtras': '1.2.0 - 1', 'MIMEs': '1.1.0 - 1', 'MbedTLS': '1.1.10 - 1', 'OrderedCollections': '2.0.1 - 2', 'Parsers': '3', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'StructUtils': '2.8.5 - 2', 'TranscodingStreams': '0.11.3 - 0.11', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 2 conflicts, each of which must be fixed:

Conflict 1: FranklinTemplates
  • your compat leaves FranklinTemplates 0.10.4
  • FranklinTemplates 0.10.4 requires HTTP 1.0.0–1.11.0 (through Franklin)
  • your compat leaves HTTP 2.6.7
  Fix it by any one of:
    1. relax your compat on FranklinTemplates
       → allows: FranklinTemplates 0.10.3, HTTP 2.6.7
    2. drop requirement FranklinTemplates
       → allows: HTTP 2.6.7
  Blocked fixes:
    • dropping requirement HTTP does not help.
    • relaxing your compat on HTTP would not help unless you also relaxed your
      compat on LiveServer, relaxed your compat on MIMEs and relaxed your
      compat on OrderedCollections.

Conflict 2: Franklin
  • Franklin requires HTTP 0.8.0–1.11.0
  • your compat leaves HTTP 2.6.7
  The only minimal fix: drop requirement Franklin
    → allows: HTTP 2.6.7
  Blocked fixes:
    • dropping requirement HTTP does not help.
    • relaxing your compat on Franklin would not help unless you also relaxed
      your compat on FranklinTemplates, relaxed your compat on HTTP, relaxed
      your compat on LiveServer and relaxed your compat on OrderedCollections.
    • relaxing your compat on HTTP would not help unless you also relaxed your
      compat on LiveServer, relaxed your compat on MIMEs and relaxed your
      compat on OrderedCollections.

4. CSV+big20-upgrade

reqs: ['CSV', 'PrecompileTools', 'Tables', 'OrderedCollections', 'Compat', 'Preferences', 'CodecZlib', 'DataAPI', 'TranscodingStreams', 'FilePathsBase', 'IteratorInterfaceExtensions', 'TableTraits', 'Parsers', 'PooledArrays', 'InlineStrings', 'SentinelArrays', 'WeakRefStrings', 'DataValueInterfaces', 'WorkerUtilities']

compat: {'CSV': '0.10.17 - 0.10', 'CodecZlib': '0.7.9 - 0.7', 'Compat': '4.18.1 - 4', 'DataAPI': '1.16.0 - 1', 'DataValueInterfaces': '1', 'FilePathsBase': '0.9.24 - 0.9', 'InlineStrings': '2.0.1 - 2', 'IteratorInterfaceExtensions': '1', 'OrderedCollections': '2.0.1 - 2', 'Parsers': '3', 'PooledArrays': '1.4.3 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'SentinelArrays': '1.4.10 - 1', 'TableTraits': '1.0.1 - 1', 'Tables': '1.14.0 - 1', 'TranscodingStreams': '0.11.3 - 0.11', 'WeakRefStrings': '1.4.3 - 1', 'WorkerUtilities': '1.6.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: CSV and WeakRefStrings
  • your compat leaves WeakRefStrings 1.4.3
  • WeakRefStrings 1.4.3 requires InlineStrings ≤1.4.6
  • your compat leaves InlineStrings 2.0.1
  and also:
  • your compat leaves CSV 0.10.17
  • CSV 0.10.17 requires InlineStrings ≤1.4.6
  • your compat leaves InlineStrings 2.0.1
  Fix it in any one of these ways:
    1. settle each of these:
       • relax your compat on WeakRefStrings, or drop requirement
         WeakRefStrings
         → relaxing your compat on WeakRefStrings allows: InlineStrings 2.0.1,
           WeakRefStrings 0.6.2
         → dropping requirement WeakRefStrings allows: InlineStrings 2.0.1
       • drop requirement CSV
         → allows: InlineStrings 2.0.1, WeakRefStrings 0.6.2
    2. relax your compat on InlineStrings and relax your compat on Parsers
       → allows: CSV 0.10.17, InlineStrings 1.4.6, WeakRefStrings 1.4.3
  Blocked fixes:
    • dropping requirement InlineStrings does not help.
    • relaxing your compat on CSV would not help unless you also relaxed your
      compat on Parsers and relaxed your compat on WeakRefStrings.

5. Knet+big20-partial

reqs: ['Knet', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'OrderedCollections', 'MacroTools', 'JLD2', 'FileIO', 'Requires', 'Colors', 'Compat', 'ChainRulesCore', 'Adapt', 'Preferences', 'CUDA', 'OffsetArrays', 'CEnum']

compat: {'Adapt': '3.7.2 - 3', 'CEnum': '0.4.2 - 0.4', 'CUDA': '6.3.1 - 6', 'ChainRulesCore': '1.26.1 - 1', 'Colors': '0.13.1 - 0.13', 'Compat': '4.18.1 - 4', 'DocStringExtensions': '0.9.5 - 0.9', 'FileIO': '1.20.0 - 1', 'JLD2': '0.4.55 - 0.4', 'JLLWrappers': '1.8.0 - 1', 'Knet': '1.4.10 - 1', 'MacroTools': '0.5.16 - 0.5', 'OffsetArrays': '1.17.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: CUDA, JLD2 and Knet
  • your compat leaves CUDA 6.3.1
  • CUDA 6.3.1 requires Adapt ≥4.4.0 (through CUDACore)
  • your compat leaves Adapt 3.7.2
  and also:
  • your compat leaves JLD2 0.4.55
  • JLD2 0.4.55 requires OrderedCollections 1.0.0–1.8.2
  • your compat leaves OrderedCollections 2.0.1
  and also:
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires CUDA ≤3.13.1
  • your compat leaves CUDA 6.3.1
  Fix it by settling each of these:
    • relax your compat on Adapt, relax your compat on CUDA, or drop
      requirement CUDA
      → relaxing your compat on Adapt allows: Adapt 4.7.0, CUDA 6.3.1, JLD2
        0.6.6, OrderedCollections 2.0.1
      → relaxing your compat on CUDA allows: Adapt 3.7.2, CUDA 5.1.2, JLD2
        0.6.6, OrderedCollections 2.0.1
      → dropping requirement CUDA allows: Adapt 3.7.2, JLD2 0.6.6,
        OrderedCollections 2.0.1
    • relax your compat on JLD2, relax your compat on OrderedCollections, or
      drop requirement JLD2
      → relaxing your compat on JLD2 allows: Adapt 4.7.0, CUDA 6.3.1, JLD2
        0.6.6, OrderedCollections 2.0.1
      → relaxing your compat on OrderedCollections allows: Adapt 4.7.0, CUDA
        6.3.1, JLD2 0.4.55, OrderedCollections 1.8.2
      → dropping requirement JLD2 allows: Adapt 4.7.0, CUDA 6.3.1,
        OrderedCollections 2.0.1
    • drop requirement Knet
      → allows: Adapt 4.7.0, CUDA 6.3.1, JLD2 0.6.6, OrderedCollections 2.0.1
  Or, in one of these other ways:
    1. any one of:
       • relax your compat on CUDA, relax your compat on Colors and relax your
         compat on JLD2
         → allows: Adapt 3.7.2, CUDA 3.13.1, JLD2 0.1.3, Knet 1.4.10,
           OrderedCollections 2.0.1
       • relax your compat on CUDA, relax your compat on Colors and relax your
         compat on OrderedCollections
         → allows: Adapt 3.7.2, CUDA 3.13.1, JLD2 0.4.55, Knet 1.4.10,
           OrderedCollections 1.8.2
  Blocked fixes:
    • dropping requirement Adapt does not help.
    • dropping requirement OrderedCollections does not help.
    • relaxing your compat on Knet would not help unless you also relaxed your
      compat on OrderedCollections, relaxed your compat on SpecialFunctions
      and dropped requirement CUDA.

There may be more to say about some of these.

6. Knet+bump2-NNlib-JLD2

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '3.13.1 - 3', 'JLD2': '0.6.6 - 0.6', 'Knet': '1.4.10 - 1', 'NNlib': '0.9.45 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: CUDA, Knet and NNlib
  • your compat leaves CUDA 3.13.1
  • CUDA 3.13.1 requires BFloat16s 0.2.0
  • BFloat16s 0.2.0 constrains NNlib ≤0.9.44
  • your compat leaves NNlib 0.9.45
  and also:
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires JLD2 ≤0.4.55
  • your compat leaves JLD2 0.6.6
  Fix it by settling each of these:
    • relax your compat on CUDA, relax your compat on NNlib, drop requirement
      CUDA, or drop requirement NNlib
      → relaxing your compat on CUDA allows: BFloat16s 0.6.1, CUDA 6.3.1, JLD2
        0.6.6, NNlib 0.9.45
      → relaxing your compat on NNlib allows: BFloat16s 0.2.0, CUDA 3.13.1,
        JLD2 0.6.6, NNlib 0.8.21
      → dropping requirement CUDA allows: BFloat16s 0.6.1, JLD2 0.6.6, NNlib
        0.9.45
      → dropping requirement NNlib allows: BFloat16s 0.2.0, CUDA 3.13.1, JLD2
        0.6.6
    • drop requirement Knet
      → allows: BFloat16s 0.6.1, CUDA 6.3.1, JLD2 0.6.6, NNlib 0.9.45
  Or, in one of these other ways:
    1. relax your compat on JLD2 and relax your compat on NNlib
       → allows: BFloat16s 0.2.0, CUDA 3.13.1, JLD2 0.4.55, Knet 1.4.10, NNlib
         0.8.21
  Blocked fixes:
    • dropping requirement JLD2 does not help.
    • relaxing your compat on Knet would not help unless you also dropped
      requirement CUDA and dropped requirement NNlib.

7. Pluto+big20-upgrade

reqs: ['Pluto', 'PlutoDependencyExplorer', 'JLLWrappers', 'PrecompileTools', 'HTTP', 'Tables', 'OrderedCollections', 'Compat', 'Preferences', 'Scratch', 'CodecZlib', 'URIs', 'LoggingExtras', 'DataAPI', 'TranscodingStreams', 'LRUCache', 'RelocatableFolders', 'HypertextLiteral', 'IteratorInterfaceExtensions', 'TableTraits', 'Configurations', 'MbedTLS']

compat: {'CodecZlib': '0.7.9 - 0.7', 'Compat': '4.18.1 - 4', 'Configurations': '0.17.6 - 0.17', 'DataAPI': '1.16.0 - 1', 'HTTP': '2.6.7 - 2', 'HypertextLiteral': '1', 'IteratorInterfaceExtensions': '1', 'JLLWrappers': '1.8.0 - 1', 'LRUCache': '1.6.2 - 1', 'LoggingExtras': '1.2.0 - 1', 'MbedTLS': '1.1.10 - 1', 'OrderedCollections': '2.0.1 - 2', 'Pluto': '1.0.3 - 1', 'PlutoDependencyExplorer': '1.2.2 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'RelocatableFolders': '1.0.1 - 1', 'Scratch': '1.3.0 - 1', 'TableTraits': '1.0.1 - 1', 'Tables': '1.14.0 - 1', 'TranscodingStreams': '0.11.3 - 0.11', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Configurations and Pluto
  • Pluto requires HTTP ≤0.9.17, 1.0.2–1.11.0
  • your compat leaves HTTP 2.6.7
  and also:
  • Configurations requires OrderedCollections 1.3.0–1.8.2
  • your compat leaves OrderedCollections 2.0.1
  Fix it by settling each of these:
    • relax your compat on HTTP, or drop requirement Pluto
      → relaxing your compat on HTTP allows: Configurations 0.17.6, HTTP
        1.11.0, OrderedCollections 1.8.2, Pluto 1.0.3
      → dropping requirement Pluto allows: Configurations 0.17.6, HTTP 2.6.7,
        OrderedCollections 1.8.2
    • relax your compat on OrderedCollections
      → allows: Configurations 0.17.6, HTTP 1.11.0, OrderedCollections 1.8.2,
        Pluto 1.0.3
  Or, in one of these other ways:
    1. drop requirement Configurations and drop requirement Pluto
       → allows: HTTP 2.6.7, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on Configurations does not help.
    • dropping requirement HTTP does not help.
    • dropping requirement OrderedCollections does not help.
    • relaxing your compat on Pluto would not help unless you also relaxed
      your compat on HTTP and dropped requirement Configurations.

8. Transformers+bump2-Zygote-HTTP

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.14.25 - 0.14', 'HTTP': '2.6.7 - 2', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.7.13 - 0.7'}

Unsatisfiable — 1 conflict:

Conflict 1: Flux and Transformers
  • your compat leaves Flux 0.14.25
  • Flux 0.14.25 requires Zygote ≤0.6.77
  • your compat leaves Zygote 0.7.13
  and also:
  • Transformers requires HTTP ≤1.11.0 (through ArgParse, CUDAnative,
    DataDeps, Compat and Statistics)
  • your compat leaves HTTP 2.6.7
  Fix it by settling each of these:
    • relax your compat on Flux, relax your compat on Zygote, or drop
      requirement Flux
      → relaxing your compat on Flux allows: Flux 0.16.11, HTTP 2.6.7, Zygote
        0.7.13
      → relaxing your compat on Zygote allows: Flux 0.14.25, HTTP 2.6.7,
        Zygote 0.6.77
      → dropping requirement Flux allows: HTTP 2.6.7, Zygote 0.7.13
    • drop requirement Transformers
      → allows: Flux 0.16.11, HTTP 2.6.7, Zygote 0.7.13
  Or, in one of these other ways:
    1. relax your compat on HTTP and relax your compat on Zygote
       → allows: Flux 0.14.25, HTTP 1.11.0, Transformers 0.3.1, Zygote 0.6.77
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement HTTP does not help.
    • dropping requirement Zygote would not help unless you also relaxed your
      compat on Flux, relaxed your compat on HTTP and relaxed your compat on
      Transformers.

9. Knet+bump-NNlib

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '3.13.1 - 3', 'JLD2': '0.4.55 - 0.4', 'Knet': '1.4.10 - 1', 'NNlib': '0.9.45 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires NNlib ≤0.9.39 (through Adapt, BFloat16s, CUDA and
    GPUArraysCore)
  • your compat leaves NNlib 0.9.45
  The only minimal fix: relax your compat on NNlib
    → allows: Knet 1.4.10, NNlib 0.8.21
  Blocked fixes:
    • dropping requirement Knet would not help unless you also relaxed your
      compat on CUDA.
    • relaxing your compat on Knet would not help unless you also dropped
      requirement CUDA and dropped requirement NNlib.
    • dropping requirement NNlib would not help unless you also dropped
      requirement Knet.

10. Knet+bump2-CUDA-NNlib

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '6.3.1 - 6', 'JLD2': '0.4.55 - 0.4', 'Knet': '1.4.10 - 1', 'NNlib': '0.9.45 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires CUDA ≤3.13.1
  • your compat leaves CUDA 6.3.1
  The only minimal fix: drop requirement Knet
    → allows: CUDA 6.3.1
  Blocked fixes:
    • relaxing your compat on CUDA would not help unless you also relaxed your
      compat on NNlib.
    • relaxing your compat on Knet would not help unless you also relaxed your
      compat on NNlib and dropped requirement CUDA.
    • dropping requirement CUDA would not help unless you also relaxed your
      compat on Knet and dropped requirement NNlib.

11. Knet+upgrade-direct

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '6.3.1 - 6', 'JLD2': '0.6.6 - 0.6', 'Knet': '1.4.10 - 1', 'NNlib': '0.9.45 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires CUDA ≤3.13.1
  • your compat leaves CUDA 6.3.1
  The only minimal fix: drop requirement Knet
    → allows: CUDA 6.3.1
  Blocked fixes:
    • relaxing your compat on CUDA would not help unless you also relaxed your
      compat on JLD2 and relaxed your compat on NNlib.
    • relaxing your compat on Knet would not help unless you also relaxed your
      compat on CUDA and relaxed your compat on NNlib.
    • dropping requirement CUDA would not help unless you also relaxed your
      compat on Knet and dropped requirement NNlib.

12. Molly+big20-upgrade

reqs: ['Molly', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'Tables', 'OrderedCollections', 'FFTW', 'Graphs', 'Unitful', 'RecipesBase', 'MacroTools', 'Parameters', 'Requires']

compat: {'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'Graphs': '1.14.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'Molly': '0.23.3 - 0.23', 'OrderedCollections': '2.0.1 - 2', 'Parameters': '0.13.1 - 0.13', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Molly
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Molly together require
    OrderedCollections ≤2.0.0 (through BioStructures, CellListMap, JLD2,
    LightGraphs, Parameters and MetaGraphs)
  • your compat leaves OrderedCollections 2.0.1
  The only minimal fix: drop requirement Molly
    → allows: DataStructures 0.19.6, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on Molly and dropped requirement Graphs.
    • relaxing your compat on Molly would not help unless you also relaxed
      your compat on OrderedCollections.
    • relaxing your compat on OrderedCollections would not help unless you
      also relaxed your compat on Parameters.

13. Transformers+bump-Zygote

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.14.25 - 0.14', 'HTTP': '1.11.0 - 1', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.7.13 - 0.7'}

Unsatisfiable — 1 conflict:

Conflict 1: Flux
  • your compat leaves Flux 0.14.25
  • Flux 0.14.25 requires Zygote ≤0.6.77
  • your compat leaves Zygote 0.7.13
  The only minimal fix: relax your compat on Zygote
    → allows: Flux 0.14.25, Zygote 0.6.77
  Blocked fixes:
    • dropping requirement Zygote would not help unless you also relaxed your
      compat on Flux, relaxed your compat on HTTP and relaxed your compat on
      Transformers.
    • relaxing your compat on Flux would not help unless you also dropped
      requirement Transformers.
    • dropping requirement Flux would not help unless you also dropped
      requirement Transformers.

14. Franklin+big10-upgrade

reqs: ['Franklin', 'FranklinTemplates', 'JLLWrappers', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'HTTP', 'DelimitedFiles', 'OrderedCollections', 'Preferences', 'CodecZlib', 'URIs']

compat: {'CodecZlib': '0.7.9 - 0.7', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'Franklin': '0.10.97 - 0.10', 'FranklinTemplates': '0.10.4 - 0.10', 'HTTP': '2.6.7 - 2', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Franklin and FranklinTemplates
  • your compat leaves FranklinTemplates 0.10.4
  • FranklinTemplates 0.10.4 requires HTTP 1.0.0–1.11.0 (through Franklin)
  • your compat leaves HTTP 2.6.7
  and also:
  • Franklin requires HTTP 0.8.0–1.11.0
  • your compat leaves HTTP 2.6.7
  Fix it in any one of these ways:
    1. settle each of these:
       • relax your compat on FranklinTemplates, or drop requirement
         FranklinTemplates
         → relaxing your compat on FranklinTemplates allows: FranklinTemplates
           0.10.3, HTTP 2.6.7
         → dropping requirement FranklinTemplates allows: HTTP 2.6.7
       • drop requirement Franklin
         → allows: FranklinTemplates 0.10.3, HTTP 2.6.7
    2. relax your compat on HTTP and relax your compat on OrderedCollections
       → allows: Franklin 0.10.97, FranklinTemplates 0.10.4, HTTP 1.11.0
  Blocked fixes:
    • relaxing your compat on Franklin does not help.
    • dropping requirement HTTP does not help.

15. Franklin+big20-partial

reqs: ['Franklin', 'FranklinTemplates', 'JLLWrappers', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'HTTP', 'DelimitedFiles', 'OrderedCollections', 'Preferences', 'CodecZlib', 'URIs', 'LoggingExtras', 'TranscodingStreams', 'ExprTools', 'Parsers', 'MbedTLS', 'Literate', 'IOCapture', 'MIMEs', 'StructUtils', 'LiveServer']

compat: {'CodecZlib': '0.7.9 - 0.7', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'ExprTools': '0.1.11 - 0.1', 'Franklin': '0.10.97 - 0.10', 'FranklinTemplates': '0.10.4 - 0.10', 'HTTP': '2.6.7 - 2', 'IOCapture': '1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'Literate': '2.21.0 - 2', 'LiveServer': '1.5.0 - 1', 'LoggingExtras': '1.2.0 - 1', 'MIMEs': '1.1.0 - 1', 'MbedTLS': '1.1.10 - 1', 'OrderedCollections': '1.8.2 - 1', 'Parsers': '3', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'StructUtils': '2.8.5 - 2', 'TranscodingStreams': '0.11.3 - 0.11', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Franklin and FranklinTemplates
  • your compat leaves FranklinTemplates 0.10.4
  • FranklinTemplates 0.10.4 requires HTTP 1.0.0–1.11.0 (through Franklin)
  • your compat leaves HTTP 2.6.7
  and also:
  • Franklin requires HTTP 0.8.0–1.11.0
  • your compat leaves HTTP 2.6.7
  Fix it in any one of these ways:
    1. settle each of these:
       • relax your compat on FranklinTemplates, or drop requirement
         FranklinTemplates
         → relaxing your compat on FranklinTemplates allows: FranklinTemplates
           0.10.3, HTTP 2.6.7
         → dropping requirement FranklinTemplates allows: HTTP 2.6.7
       • drop requirement Franklin
         → allows: FranklinTemplates 0.10.3, HTTP 2.6.7
    2. relax your compat on HTTP and relax your compat on MIMEs
       → allows: Franklin 0.10.97, FranklinTemplates 0.10.4, HTTP 1.11.0
  Blocked fixes:
    • relaxing your compat on Franklin does not help.
    • dropping requirement HTTP does not help.

Costlier fixes also exist.

16. Franklin+upgrade-direct

reqs: ['Franklin', 'HTTP', 'FranklinTemplates', 'LiveServer']

compat: {'Franklin': '0.10.97 - 0.10', 'FranklinTemplates': '0.10.4 - 0.10', 'HTTP': '2.6.7 - 2', 'LiveServer': '1.6.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Franklin and FranklinTemplates
  • your compat leaves FranklinTemplates 0.10.4
  • FranklinTemplates 0.10.4 requires HTTP 1.0.0–1.11.0 (through Franklin)
  • your compat leaves HTTP 2.6.7
  and also:
  • Franklin requires HTTP 0.8.0–1.11.0
  • your compat leaves HTTP 2.6.7
  Fix it in any one of these ways:
    1. settle each of these:
       • relax your compat on FranklinTemplates, or drop requirement
         FranklinTemplates
         → relaxing your compat on FranklinTemplates allows: FranklinTemplates
           0.10.3, HTTP 2.6.7
         → dropping requirement FranklinTemplates allows: HTTP 2.6.7
       • drop requirement Franklin
         → allows: FranklinTemplates 0.10.3, HTTP 2.6.7
    2. relax your compat on HTTP and relax your compat on LiveServer
       → allows: Franklin 0.10.97, FranklinTemplates 0.10.4, HTTP 1.11.0
  Blocked fixes:
    • relaxing your compat on Franklin does not help.
    • dropping requirement HTTP does not help.

17. Knet+bump2-CUDA-JLD2

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '6.3.1 - 6', 'JLD2': '0.6.6 - 0.6', 'Knet': '1.4.10 - 1', 'NNlib': '0.8.21 - 0.8'}

Unsatisfiable — 1 conflict:

Conflict 1: CUDA, Knet and NNlib
  • your compat leaves CUDA 6.3.1
  • CUDA 6.3.1 constrains NNlib ≤0.8.20, ≥0.9.0 (through Adapt and cuBLAS)
  • your compat leaves NNlib 0.8.21
  and also:
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires CUDA ≤3.13.1
  • your compat leaves CUDA 6.3.1
  Fix it by settling each of these:
    • relax your compat on CUDA, relax your compat on NNlib, drop requirement
      CUDA, or drop requirement NNlib
      → relaxing your compat on CUDA allows: CUDA 5.1.2, NNlib 0.8.21
      → relaxing your compat on NNlib allows: CUDA 6.3.1, NNlib 0.9.45
      → dropping requirement CUDA allows: NNlib 0.8.21
      → dropping requirement NNlib allows: CUDA 6.3.1
    • drop requirement Knet
      → allows: CUDA 5.1.2, NNlib 0.8.21
  Or, in one of these other ways:
    1. any one of:
       • relax your compat on CUDA and relax your compat on JLD2
         → allows: CUDA 3.13.1, Knet 1.4.10, NNlib 0.8.21
       • relax your compat on Knet and drop requirement CUDA
         → allows: Knet 1.0.0, NNlib 0.8.21

Costlier fixes also exist.

18. Transformers+bump2-Flux-HTTP

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.16.11 - 0.16', 'HTTP': '2.6.7 - 2', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.6.77 - 0.6'}

Unsatisfiable — 1 conflict:

Conflict 1: Flux and Transformers
  • your compat leaves Flux 0.16.11
  • Flux 0.16.11 requires Zygote ≤0.6.76, ≥0.7.0
  • your compat leaves Zygote 0.6.77
  and also:
  • Transformers requires Flux ≤0.14.25
  • your compat leaves Flux 0.16.11
  Fix it by settling each of these:
    • relax your compat on Flux, relax your compat on Zygote, or drop
      requirement Flux
      → relaxing your compat on Flux allows: Flux 0.16.10, Zygote 0.6.77
      → relaxing your compat on Zygote allows: Flux 0.16.11, Zygote 0.7.13
      → dropping requirement Flux allows: Zygote 0.6.77
    • drop requirement Transformers
      → allows: Flux 0.16.10, Zygote 0.6.77
  Or, in one of these other ways:
    1. relax your compat on Flux and relax your compat on HTTP
       → allows: Flux 0.14.25, Transformers 0.3.1, Zygote 0.6.77
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement Zygote does not help.

19. Bloqade+bump2-CairoMakie-ForwardDiff

reqs: ['Bloqade', 'CairoMakie', 'ForwardDiff', 'Yao']

compat: {'Bloqade': '0.2.5 - 0.2', 'CairoMakie': '0.15.14 - 0.15', 'ForwardDiff': '1.4.5 - 1', 'Yao': '0.9.1 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Bloqade
  • Bloqade requires ForwardDiff 0.10.13–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: drop requirement Bloqade
    → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on Bloqade would not help unless you also relaxed
      your compat on ForwardDiff.
    • relaxing your compat on ForwardDiff would not help unless you also
      relaxed your compat on CairoMakie.

20. Bloqade+upgrade-direct

reqs: ['Bloqade', 'CairoMakie', 'ForwardDiff', 'Yao']

compat: {'Bloqade': '0.2.5 - 0.2', 'CairoMakie': '0.15.14 - 0.15', 'ForwardDiff': '1.4.5 - 1', 'Yao': '0.9.3 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Bloqade
  • Bloqade requires ForwardDiff 0.10.13–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: drop requirement Bloqade
    → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on Bloqade would not help unless you also relaxed
      your compat on ForwardDiff and relaxed your compat on Yao.
    • relaxing your compat on ForwardDiff would not help unless you also
      relaxed your compat on CairoMakie and relaxed your compat on Yao.

21. Metatheory+big10-partial

reqs: ['Metatheory', 'Reexport', 'DocStringExtensions', 'DataStructures', 'OrderedCollections', 'Compat', 'TimerOutputs', 'AutoHashEquals', 'ExprTools', 'TermInterface']

compat: {'AutoHashEquals': '2.2.0 - 2', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'ExprTools': '0.1.11 - 0.1', 'Metatheory': '2.0.2 - 2', 'OrderedCollections': '1.8.2 - 1', 'Reexport': '1.2.2 - 1', 'TermInterface': '0.3.3 - 0.3', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • Metatheory requires DataStructures 0.18.0–0.18.22
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Metatheory
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • dropping requirement DataStructures does not help.
    • relaxing your compat on Metatheory would not help unless you also
      relaxed your compat on DataStructures.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on TimerOutputs.

22. Metatheory+bump2-DataStructures-TermInterface

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'DataStructures': '0.19.6 - 0.19', 'Metatheory': '2.0.2 - 2', 'TermInterface': '2', 'TimerOutputs': '0.5.29 - 0.5'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • Metatheory requires DataStructures 0.18.0–0.18.22
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Metatheory
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • dropping requirement DataStructures does not help.
    • relaxing your compat on Metatheory would not help unless you also
      relaxed your compat on DataStructures.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on TermInterface.

23. Transformers+bump-Flux

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.16.11 - 0.16', 'HTTP': '1.11.0 - 1', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.6.77 - 0.6'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires Flux ≤0.14.25
  • your compat leaves Flux 0.16.11
  The only minimal fix: relax your compat on Flux
    → allows: Flux 0.14.25, Transformers 0.3.1
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement Transformers would not help unless you also relaxed
      your compat on Zygote.
    • dropping requirement Flux would not help unless you also dropped
      requirement Transformers.

24. Transformers+bump2-Zygote-Flux

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.16.11 - 0.16', 'HTTP': '1.11.0 - 1', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.7.13 - 0.7'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires Flux ≤0.14.25
  • your compat leaves Flux 0.16.11
  The only minimal fix: drop requirement Transformers
    → allows: Flux 0.16.11
  Blocked fixes:
    • dropping requirement Flux does not help.
    • relaxing your compat on Transformers would not help unless you also
      relaxed your compat on Flux, relaxed your compat on HTTP and dropped
      requirement Zygote.
    • relaxing your compat on Flux would not help unless you also relaxed your
      compat on Zygote.

25. Transformers+upgrade-direct

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.16.11 - 0.16', 'HTTP': '2.6.7 - 2', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.7.13 - 0.7'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires Flux ≤0.14.25
  • your compat leaves Flux 0.16.11
  The only minimal fix: drop requirement Transformers
    → allows: Flux 0.16.11
  Blocked fixes:
    • dropping requirement Flux does not help.
    • relaxing your compat on Transformers would not help unless you also
      relaxed your compat on Flux, relaxed your compat on HTTP and dropped
      requirement Zygote.
    • relaxing your compat on Flux would not help unless you also relaxed your
      compat on HTTP and relaxed your compat on Zygote.

26. Gadfly+big20-partial

reqs: ['Gadfly', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'OrderedCollections', 'MacroTools', 'Interpolations', 'Requires', 'Colors', 'Distances', 'Compat', 'ChainRulesCore', 'Adapt']

compat: {'Adapt': '4.7.0 - 4', 'ChainRulesCore': '1.26.1 - 1', 'Colors': '0.13.1 - 0.13', 'Compat': '4.18.1 - 4', 'DataStructures': '0.18.22 - 0.18', 'Distances': '0.10.12 - 0.10', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'Gadfly': '1.4.1 - 1', 'Interpolations': '0.16.3 - 0.16', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 2 conflicts, each of which must be fixed:

Conflict 1: DataStructures
  • your compat leaves DataStructures 0.18.22
  • DataStructures 0.18.22 requires OrderedCollections 1.1.0–1.8.2
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on DataStructures
       → allows: DataStructures 0.12.0, OrderedCollections 2.0.1
    2. relax your compat on OrderedCollections
       → allows: DataStructures 0.18.22, OrderedCollections 1.8.2
  Blocked fixes:
    • dropping requirement OrderedCollections does not help.
    • dropping requirement DataStructures would not help unless you also
      dropped requirement Distributions, dropped requirement Gadfly and
      dropped requirement StatsBase.

Conflict 2: Gadfly
  • Gadfly requires JSON ≤0.21.4 (through Compose)
  • your compat leaves JSON 1.8.0
  Fix it by any one of:
    1. relax your compat on JSON
       → allows: Gadfly 1.4.1, JSON 0.21.4
    2. drop requirement Gadfly
       → allows: JSON 1.8.0
  Blocked fixes:
    • relaxing your compat on Gadfly does not help.
    • dropping requirement JSON does not help.

27. Bloqade+big10-partial

reqs: ['Bloqade', 'BloqadeExpr', 'BloqadeMIS', 'BloqadeKrylov', 'BloqadeODE', 'BloqadeLattices', 'BloqadeWaveforms', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions']

compat: {'Bloqade': '0.2.5 - 0.2', 'BloqadeExpr': '0.2.3 - 0.2', 'BloqadeKrylov': '0.2.2 - 0.2', 'BloqadeLattices': '0.2.3 - 0.2', 'BloqadeMIS': '0.2.2 - 0.2', 'BloqadeODE': '0.2.3 - 0.2', 'BloqadeWaveforms': '0.2.2 - 0.2', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Bloqade
  • your compat leaves Bloqade 0.2.5
  • Bloqade 0.2.5 requires JSON 0.21.0–0.21.4 (through BloqadeExpr,
    OMEinsumContractionOrders, Yao, YaoSubspaceArrayReg, OMEinsum, YaoBlocks
    and YaoToEinsum)
  • your compat leaves JSON 1.8.0
  The only minimal fix: relax your compat on JSON
    → allows: Bloqade 0.2.5, JSON 0.21.4
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement JSON does not help.
    • dropping requirement Bloqade would not help unless you also dropped
      requirement BloqadeODE.

28. Bloqade+manifest-bump-CairoMakie

reqs: ['Bloqade', 'CairoMakie', 'ForwardDiff', 'Yao']

compat: {'ADTypes': '1.24.0 - *', 'AbstractFFTs': '1.5.0 - *', 'AbstractTrees': '0.4.5 - *', 'Accessors': '0.1.45 - *', 'Adapt': '4.7.0 - *', 'AdaptivePredicates': '1.2.0 - *', 'AliasTables': '1.1.3 - *', 'Animations': '0.4.2 - *', 'ArgCheck': '2.5.0 - *', 'ArnoldiMethod': '0.4.0 - *', 'ArrayInterface': '7.30.1 - *', 'ArrayLayouts': '1.12.2 - *', 'ArrowTypes': '2.3.0 - *', 'Atomix': '1.1.3 - *', 'Automa': '1.2.0 - *', 'AxisAlgorithms': '1.1.0 - *', 'AxisArrays': '0.4.8 - *', 'BandedMatrices': '1.12.0 - *', 'BangBang': '0.4.9 - *', 'BaseDirs': '1.4.0 - *', 'Baselet': '0.1.1 - *', 'BatchedRoutines': '0.2.2 - *', 'BenchmarkTools': '1.8.0 - *', 'BitBasis': '0.9.10 - *', 'BitTwiddlingConvenienceFunctions': '0.1.6 - *', 'Bloqade': '0.2.5 - *', 'BloqadeExpr': '0.2.3 - *', 'BloqadeKrylov': '0.2.2 - *', 'BloqadeLattices': '0.2.3 - *', 'BloqadeMIS': '0.2.2 - *', 'BloqadeODE': '0.2.3 - *', 'BloqadeWaveforms': '0.2.2 - *', 'BracketingNonlinearSolve': '1.5.0 - *', 'Bzip2_jll': '1.0.9 - *', 'CEnum': '0.5.0 - *', 'CPUSummary': '0.2.7 - *', 'CRlibm': '1.0.2 - *', 'CRlibm_jll': '1.0.1 - *', 'CacheServers': '0.2.0 - *', 'Cairo': '1.1.1 - *', 'CairoMakie': '0.15.14 - 0.15', 'Cairo_jll': '1.18.7 - *', 'Calculus': '0.5.2 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CliqueTrees': '1.19.6 - *', 'CloseOpenIntervals': '0.1.13 - *', 'CodecBzip2': '0.8.5 - *', 'CodecZlib': '0.7.9 - *', 'CodecZstd': '0.8.7 - *', 'Collects': '1.1.0 - *', 'ColorBrewer': '0.4.2 - *', 'ColorSchemes': '3.31.0 - *', 'ColorTypes': '0.11.5 - *', 'ColorVectorSpace': '0.10.0 - *', 'Colors': '0.13.1 - *', 'Combinatorics': '1.1.0 - *', 'CommonSolve': '0.2.14 - *', 'CommonSubexpressions': '0.3.1 - *', 'CommonWorldInvalidations': '1.2.2 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConcreteStructs': '0.2.8 - *', 'Configurations': '0.17.6 - *', 'ConstructionBase': '1.6.0 - *', 'Contour': '0.6.3 - *', 'CpuId': '0.3.1 - *', 'Crayons': '4.2.0 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.18.22 - *', 'DataValueInterfaces': '1.0.0 - *', 'DefineSingletons': '0.1.2 - *', 'DelaunayTriangulation': '1.6.6 - *', 'DensityInterface': '0.4.0 - *', 'DiffEqBase': '6.194.0 - *', 'DiffEqCallbacks': '4.18.0 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DifferentiationInterface': '0.7.21 - *', 'Distances': '0.10.12 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'EarCut_jll': '2.2.4 - *', 'EliminateGraphs': '0.2.1 - *', 'EnumX': '1.0.7 - *', 'EnzymeCore': '0.8.21 - *', 'ExactPredicates': '2.2.9 - *', 'Expat_jll': '2.8.3 - *', 'ExponentialUtilities': '1.31.0 - *', 'ExprTools': '0.1.11 - *', 'ExproniconLite': '0.10.14 - *', 'Extents': '0.1.6 - *', 'FFMPEG': '0.4.5 - *', 'FFMPEG_jll': '6.1.3 - *', 'FFTA': '0.3.1 - *', 'FastBroadcast': '0.3.5 - *', 'FastClosures': '0.3.2 - *', 'FastGaussQuadrature': '1.3.0 - *', 'FastPower': '1.5.0 - *', 'FileIO': '1.20.0 - *', 'FilePaths': '0.8.3 - *', 'FilePathsBase': '0.9.24 - *', 'FillArrays': '1.17.0 - *', 'FiniteDiff': '2.33.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'FixedSizeArrays': '1.3.0 - *', 'Fontconfig_jll': '2.17.1 - *', 'Format': '1.3.7 - *', 'ForwardDiff': '0.10.39 - *', 'FreeType': '4.1.1 - *', 'FreeType2_jll': '2.14.3 - *', 'FreeTypeAbstraction': '0.10.8 - *', 'FriBidi_jll': '1.0.17 - *', 'FunctionWrappers': '1.1.3 - *', 'FunctionWrappersWrappers': '0.1.3 - *', 'GPUArraysCore': '0.2.0 - *', 'Gamma': '1.1.0 - *', 'GaussQuadrature': '0.5.8 - *', 'GenericSchur': '0.5.8 - *', 'GeoFormatTypes': '0.4.5 - *', 'GeoInterface': '1.4.1 - *', 'GeometryBasics': '0.4.11 - *', 'GettextRuntime_jll': '0.22.4 - *', 'Giflib_jll': '5.2.3 - *', 'Glib_jll': '2.88.3 - *', 'Graphics': '1.1.3 - *', 'Graphite2_jll': '1.3.16 - *', 'Graphs': '1.13.1 - *', 'GridLayoutBase': '0.11.3 - *', 'HarfBuzz_jll': '100.14003.0 - *', 'HypergeometricFunctions': '0.3.30 - *', 'IfElse': '0.1.1 - *', 'ImageAxes': '0.6.12 - *', 'ImageBase': '0.1.7 - *', 'ImageCore': '0.10.5 - *', 'ImageIO': '0.6.10 - *', 'ImageMetadata': '0.9.10 - *', 'Imath_jll': '3.2.2 - *', 'IndirectArrays': '1.0.0 - *', 'Inflate': '0.1.5 - *', 'InitialValues': '0.3.1 - *', 'InlineStrings': '1.4.6 - *', 'IntegerMathUtils': '0.1.4 - *', 'IntelOpenMP_jll': '2025.2.0 - *', 'Interpolations': '0.15.2 - *', 'IntervalArithmetic': '0.22.36 - *', 'IntervalSets': '0.7.14 - *', 'Intervals': '1.11.0 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'Isoband': '0.1.1 - *', 'IterTools': '1.10.0 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '0.21.4 - *', 'JSON3': '1.14.3 - *', 'Jieko': '0.2.1 - *', 'JpegTurbo': '0.1.6 - *', 'JpegTurbo_jll': '3.2.0 - *', 'KernelDensity': '0.6.12 - *', 'Krylov': '0.10.9 - *', 'KrylovKit': '0.9.5 - *', 'LAME_jll': '3.100.3 - *', 'LERC_jll': '4.1.0 - *', 'LLVMOpenMP_jll': '22.1.7 - *', 'LaTeXStrings': '1.4.1 - *', 'LayoutPointers': '0.1.17 - *', 'LazyArrays': '2.12.0 - *', 'LazyModules': '0.3.1 - *', 'LegibleLambdas': '0.3.0 - *', 'Libffi_jll': '3.4.7 - *', 'Libglvnd_jll': '1.7.1 - *', 'Libiconv_jll': '1.18.0 - *', 'Libmount_jll': '2.42.0 - *', 'Librsvg_jll': '2.58.5 - *', 'Libtiff_jll': '4.7.3 - *', 'Libuuid_jll': '2.42.0 - *', 'LineSearch': '0.1.14 - *', 'LineSearches': '7.5.1 - *', 'LinearSolve': '3.26.0 - *', 'LogExpFunctions': '0.3.29 - *', 'LoggingExtras': '1.2.0 - *', 'Luxor': '4.3.0 - *', 'LuxorGraphPlot': '0.5.1 - *', 'LuxurySparse': '0.7.5 - *', 'MKL_jll': '2025.2.0 - *', 'MLStyle': '0.4.17 - *', 'MPC_jll': '1.4.1 - *', 'MacroTools': '0.5.16 - *', 'Makie': '0.21.18 - *', 'MakieCore': '0.8.12 - *', 'ManualMemory': '0.1.8 - *', 'MappedArrays': '0.4.3 - *', 'MarchingCubes': '0.1.11 - *', 'MathOptInterface': '1.48.0 - *', 'MathTeXEngine': '0.6.9 - *', 'MatrixFactorizations': '3.1.3 - *', 'MaybeInplace': '0.1.8 - *', 'Measurements': '2.14.1 - *', 'MicroCollections': '0.2.0 - *', 'Missings': '1.2.0 - *', 'Mocking': '0.8.1 - *', 'MosaicViews': '0.3.4 - *', 'Moshi': '0.3.12 - *', 'MuladdMacro': '0.2.7 - *', 'MutableArithmetics': '1.8.0 - *', 'NLSolversBase': '7.10.0 - *', 'NaNMath': '1.1.4 - *', 'NearestNeighbors': '0.4.29 - *', 'Netpbm': '1.1.1 - *', 'NonlinearSolve': '4.12.0 - *', 'NonlinearSolveBase': '2.0.0 - *', 'NonlinearSolveFirstOrder': '1.9.0 - *', 'NonlinearSolveQuasiNewton': '1.10.0 - *', 'NonlinearSolveSpectralMethods': '1.5.0 - *', 'OMEinsum': '0.8.8 - *', 'OMEinsumContractionOrders': '0.9.11 - *', 'Observables': '0.5.5 - *', 'OffsetArrays': '1.17.0 - *', 'Ogg_jll': '1.3.6 - *', 'OpenBLASConsistentFPCSR_jll': '0.3.34 - *', 'OpenEXR': '0.3.3 - *', 'OpenEXR_jll': '3.4.14 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optim': '1.13.3 - *', 'Opus_jll': '1.6.1 - *', 'OrderedCollections': '1.8.2 - *', 'OrdinaryDiffEq': '6.101.0 - *', 'OrdinaryDiffEqAdamsBashforthMoulton': '1.5.0 - *', 'OrdinaryDiffEqBDF': '1.10.1 - *', 'OrdinaryDiffEqCore': '1.36.0 - *', 'OrdinaryDiffEqDefault': '1.8.0 - *', 'OrdinaryDiffEqDifferentiation': '1.16.1 - *', 'OrdinaryDiffEqExplicitRK': '1.4.0 - *', 'OrdinaryDiffEqExponentialRK': '1.8.0 - *', 'OrdinaryDiffEqExtrapolation': '1.9.0 - *', 'OrdinaryDiffEqFIRK': '1.16.0 - *', 'OrdinaryDiffEqFeagin': '1.4.0 - *', 'OrdinaryDiffEqFunctionMap': '1.5.0 - *', 'OrdinaryDiffEqHighOrderRK': '1.5.0 - *', 'OrdinaryDiffEqIMEXMultistep': '1.7.0 - *', 'OrdinaryDiffEqLinear': '1.6.0 - *', 'OrdinaryDiffEqLowOrderRK': '1.6.0 - *', 'OrdinaryDiffEqLowStorageRK': '1.7.0 - *', 'OrdinaryDiffEqNonlinearSolve': '1.15.0 - *', 'OrdinaryDiffEqNordsieck': '1.4.0 - *', 'OrdinaryDiffEqPDIRK': '1.6.0 - *', 'OrdinaryDiffEqPRK': '1.4.0 - *', 'OrdinaryDiffEqQPRK': '1.4.0 - *', 'OrdinaryDiffEqRKN': '1.5.0 - *', 'OrdinaryDiffEqRosenbrock': '1.18.1 - *', 'OrdinaryDiffEqSDIRK': '1.7.0 - *', 'OrdinaryDiffEqSSPRK': '1.7.0 - *', 'OrdinaryDiffEqStabilizedIRK': '1.6.0 - *', 'OrdinaryDiffEqStabilizedRK': '1.4.0 - *', 'OrdinaryDiffEqSymplecticRK': '1.7.0 - *', 'OrdinaryDiffEqTsit5': '1.5.0 - *', 'OrdinaryDiffEqVerner': '1.6.0 - *', 'PDMats': '0.11.41 - *', 'PNGFiles': '0.4.5 - *', 'PackageExtensionCompat': '1.0.2 - *', 'Packing': '0.5.1 - *', 'PaddedViews': '0.5.12 - *', 'Pango_jll': '1.58.2 - *', 'Parsers': '2.8.8 - *', 'Pixman_jll': '0.46.4 - *', 'PkgVersion': '0.3.3 - *', 'PlotUtils': '1.4.4 - *', 'Polyester': '0.7.19 - *', 'PolyesterWeave': '0.2.2 - *', 'PolygonAlgorithms': '0.4.0 - *', 'PolygonOps': '0.1.2 - *', 'PositiveFactorizations': '0.2.4 - *', 'PreallocationTools': '0.4.34 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'Primes': '0.5.7 - *', 'ProgressLogging': '0.1.6 - *', 'ProgressMeter': '1.11.0 - *', 'PtrArrays': '1.4.0 - *', 'QOI': '1.0.2 - *', 'QuadGK': '2.11.3 - *', 'RangeArrays': '0.3.2 - *', 'Ratios': '0.4.5 - *', 'RecipesBase': '1.3.4 - *', 'RecursiveArrayTools': '3.36.0 - *', 'Reexport': '1.2.2 - *', 'Referenceables': '0.1.3 - *', 'RelocatableFolders': '1.0.1 - *', 'Requires': '1.3.1 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'RoundingEmulator': '0.2.1 - *', 'Rsvg': '1.1.0 - *', 'RuntimeGeneratedFunctions': '0.5.25 - *', 'SIMD': '3.7.2 - *', 'SIMDTypes': '0.1.0 - *', 'SciMLBase': '2.146.0 - *', 'SciMLJacobianOperators': '0.1.12 - *', 'SciMLLogging': '1.10.1 - *', 'SciMLOperators': '1.30.0 - *', 'SciMLPublic': '1.3.0 - *', 'SciMLStructures': '1.10.5 - *', 'Scratch': '1.3.0 - *', 'Setfield': '1.1.2 - *', 'ShaderAbstractions': '0.4.1 - *', 'Showoff': '1.1.1 - *', 'SignedDistanceFields': '0.4.1 - *', 'SimpleNonlinearSolve': '2.9.0 - *', 'SimpleTraits': '0.9.6 - *', 'SimpleUnPack': '1.1.0 - *', 'Sixel': '0.1.5 - *', 'SortingAlgorithms': '1.2.3 - *', 'SparseMatricesCSR': '0.6.12 - *', 'SparseMatrixColorings': '0.4.28 - *', 'SpecialFunctions': '2.9.0 - *', 'SplittablesBase': '0.1.15 - *', 'StableRNGs': '1.0.4 - *', 'StackViews': '0.1.2 - *', 'Static': '1.4.6 - *', 'StaticArrayInterface': '1.10.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StatsFuns': '1.5.3 - *', 'StrideArraysCore': '0.5.9 - *', 'StructArrays': '0.6.21 - *', 'StructTypes': '1.11.0 - *', 'Suppressor': '0.2.8 - *', 'SymEngine': '0.12.0 - *', 'SymEngine_jll': '0.12.0 - *', 'SymbolicIndexingInterface': '0.3.55 - *', 'TZJData': '1.6.0 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TensorCore': '0.1.1 - *', 'ThreadingUtilities': '0.5.6 - *', 'ThreadsX': '0.1.12 - *', 'TiffImages': '0.11.9 - *', 'TimeZones': '1.22.2 - *', 'TimerOutputs': '0.5.29 - *', 'TranscodingStreams': '0.11.3 - *', 'Transducers': '0.4.85 - *', 'TreeWidthSolver': '0.3.5 - *', 'TriplotBase': '0.1.0 - *', 'TruncatedStacktraces': '1.4.0 - *', 'TupleTools': '1.6.0 - *', 'UnPack': '1.0.2 - *', 'UnicodeFun': '0.4.1 - *', 'UnicodePlots': '3.8.4 - *', 'Unitful': '1.29.0 - *', 'UnsafeAtomics': '0.3.2 - *', 'VectorInterface': '0.5.0 - *', 'WebP': '0.1.3 - *', 'WoodburyMatrices': '1.1.0 - *', 'XML2_jll': '2.13.9 - *', 'XZ_jll': '5.8.3 - *', 'Xorg_libX11_jll': '1.8.13 - *', 'Xorg_libXau_jll': '1.0.13 - *', 'Xorg_libXdmcp_jll': '1.1.6 - *', 'Xorg_libXext_jll': '1.3.8 - *', 'Xorg_libXrender_jll': '0.9.12 - *', 'Xorg_libxcb_jll': '1.17.1 - *', 'Xorg_xtrans_jll': '1.6.0 - *', 'Yao': '0.9.1 - *', 'YaoAPI': '0.4.9 - *', 'YaoArrayRegister': '0.9.10 - *', 'YaoBlocks': '0.13.15 - *', 'YaoPlots': '0.9.4 - *', 'YaoSubspaceArrayReg': '0.2.2 - *', 'YaoSym': '0.6.9 - *', 'YaoToEinsum': '0.2.5 - *', 'Zstd_jll': '1.5.7 - *', 'gdk_pixbuf_jll': '2.42.13 - *', 'isoband_jll': '0.2.3 - *', 'libaom_jll': '3.14.1 - *', 'libass_jll': '0.17.5 - *', 'libfdk_aac_jll': '2.0.4 - *', 'libpng_jll': '1.6.58 - *', 'libsixel_jll': '1.10.5 - *', 'libvorbis_jll': '1.3.8 - *', 'libwebp_jll': '1.6.0 - *', 'oneTBB_jll': '2022.3.0 - *', 'x264_jll': '10164.0.1 - *', 'x265_jll': '4.1.0 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Bloqade
  • your compat leaves Bloqade 0.2.5
  • Bloqade 0.2.5 requires CairoMakie ≤0.12.18
  • your compat leaves CairoMakie 0.15.14
  Fix it by any one of:
    1. relax your compat on CairoMakie
       → allows: Bloqade 0.2.5, CairoMakie 0.12.18
    2. drop requirement Bloqade
       → allows: CairoMakie 0.15.14
  Blocked fixes:
    • dropping requirement CairoMakie does not help.
    • relaxing your compat on Bloqade would not help unless you also relaxed
      your compat on Colors.

There may be more to say about some of these.

29. CSV+big20-partial

reqs: ['CSV', 'PrecompileTools', 'Tables', 'OrderedCollections', 'Compat', 'Preferences', 'CodecZlib', 'DataAPI', 'TranscodingStreams', 'FilePathsBase', 'IteratorInterfaceExtensions', 'TableTraits', 'Parsers', 'PooledArrays', 'InlineStrings', 'SentinelArrays', 'WeakRefStrings', 'DataValueInterfaces', 'WorkerUtilities']

compat: {'CSV': '0.10.17 - 0.10', 'CodecZlib': '0.7.9 - 0.7', 'Compat': '4.18.1 - 4', 'DataAPI': '1.16.0 - 1', 'DataValueInterfaces': '1', 'FilePathsBase': '0.9.24 - 0.9', 'InlineStrings': '1.4.6 - 1', 'IteratorInterfaceExtensions': '1', 'OrderedCollections': '2.0.1 - 2', 'Parsers': '3', 'PooledArrays': '1.4.3 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'SentinelArrays': '1.4.10 - 1', 'TableTraits': '1.0.1 - 1', 'Tables': '1.14.0 - 1', 'TranscodingStreams': '0.11.3 - 0.11', 'WeakRefStrings': '1.4.3 - 1', 'WorkerUtilities': '1.6.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: CSV
  • your compat leaves CSV 0.10.17
  • CSV 0.10.17 requires Parsers 2.5.0–2.8.8
  • your compat leaves Parsers 3.0.0
  The only minimal fix: relax your compat on Parsers
    → allows: CSV 0.10.17, Parsers 2.8.8
  Blocked fixes:
    • relaxing your compat on CSV does not help.
    • dropping requirement Parsers does not help.
    • dropping requirement CSV would not help unless you also dropped
      requirement WeakRefStrings.

30. CSV+manifest-bump-Parsers

reqs: ['CSV', 'Parsers', 'Tables', 'SentinelArrays']

compat: {'CSV': '0.10.17 - *', 'CodecZlib': '0.7.9 - *', 'Compat': '4.18.1 - *', 'DataAPI': '1.16.0 - *', 'DataValueInterfaces': '1.0.0 - *', 'FilePathsBase': '0.9.24 - *', 'InlineStrings': '1.4.6 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'OrderedCollections': '2.0.1 - *', 'Parsers': '3', 'PooledArrays': '1.4.3 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'SentinelArrays': '1.4.10 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TranscodingStreams': '0.11.3 - *', 'WeakRefStrings': '1.4.3 - *', 'WorkerUtilities': '1.6.1 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: CSV
  • your compat leaves CSV 0.10.17
  • CSV 0.10.17 requires Parsers 2.5.0–2.8.8
  • your compat leaves Parsers 3.0.0
  Fix it by any one of:
    1. relax your compat on Parsers
       → allows: CSV 0.10.17, Parsers 2.8.8
    2. drop requirement CSV
       → allows: Parsers 3.0.0
  Blocked fixes:
    • dropping requirement Parsers does not help.
    • relaxing your compat on CSV would not help unless you also relaxed your
      compat on Compat, relaxed your compat on TranscodingStreams and relaxed
      your compat on WeakRefStrings.

31. ClimaCore+manifest-add-Turing

reqs: ['ClimaCore', 'StaticArrays', 'ForwardDiff', 'DataStructures', 'Turing']

compat: {'Adapt': '4.7.0 - *', 'ArrayLayouts': '1.12.2 - *', 'BandedMatrices': '1.12.0 - *', 'BlockArrays': '1.10.0 - *', 'CEnum': '0.5.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'ClimaComms': '0.6.11 - *', 'ClimaCore': '0.16.0 - *', 'ClimaInterpolations': '0.1.2 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'CubedSphere': '0.3.4 - *', 'DataStructures': '0.19.6 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'Distances': '0.10.12 - *', 'DocStringExtensions': '0.9.5 - *', 'FillArrays': '1.17.0 - *', 'ForwardDiff': '1.4.5 - *', 'GaussQuadrature': '0.5.8 - *', 'GilbertCurves': '0.1.1 - *', 'HDF5': '0.17.3 - *', 'HDF5_jll': '2.1.2 - *', 'Hwloc_jll': '2.14.0 - *', 'IntervalSets': '0.7.14 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'JuliaNVTXCallbacks_jll': '0.2.1 - *', 'KrylovKit': '0.8.3 - *', 'LLVM': '9.13.1 - *', 'LLVMExtra_jll': '0.0.47 - *', 'LazyBroadcast': '1.0.0 - *', 'Libiconv_jll': '1.18.0 - *', 'LogExpFunctions': '1.0.1 - *', 'LoggingExtras': '1.2.0 - *', 'MPIABI_jll': '0.1.5 - *', 'MPICH_jll': '5.0.1 - *', 'MPIPreferences': '0.1.12 - *', 'MPItrampoline_jll': '5.5.6 - *', 'MacroTools': '0.5.16 - *', 'MicrosoftMPI_jll': '10.1.4 - *', 'MultiBroadcastFusion': '0.3.4 - *', 'NVTX': '1.0.3 - *', 'NVTX_jll': '3.2.2 - *', 'NaNMath': '1.1.4 - *', 'OpenMPI_jll': '5.0.11 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '2.0.1 - *', 'PackageExtensionCompat': '1.0.2 - *', 'PkgVersion': '0.3.3 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'RecipesBase': '1.3.4 - *', 'Requires': '1.3.1 - *', 'RootSolvers': '1.1.0 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'TaylorSeries': '0.20.10 - *', 'Turing': '0.48', 'UnrolledUtilities': '0.1.10 - *', 'VectorInterface': '0.4.9 - *', 'XML2_jll': '2.13.9 - *', 'Xorg_libpciaccess_jll': '0.19.0 - *', 'aws_c_auth_jll': '0.9.6 - *', 'aws_c_cal_jll': '0.9.13 - *', 'aws_c_common_jll': '0.12.6 - *', 'aws_c_compression_jll': '0.3.2 - *', 'aws_c_http_jll': '0.10.15 - *', 'aws_c_io_jll': '0.26.3 - *', 'aws_c_s3_jll': '0.11.5 - *', 'aws_c_sdkutils_jll': '0.2.4 - *', 'aws_checksums_jll': '0.2.10 - *', 'dlfcn_win32_jll': '1.4.2 - *', 'libaec_jll': '1.1.7 - *', 'mpif_jll': '0.1.7 - *', 's2n_tls_jll': '1.7.8 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Turing
  • your compat leaves Adapt 4.7.0
  • Adapt 4.7.0 or absent and Turing together require OrderedCollections
    ≤2.0.0 (through AbstractPPL, DataStructures, Distributions, FlexiChains,
    Flux and StatsBase)
  • your compat leaves OrderedCollections 2.0.1
  The only minimal fix: drop requirement Turing
    → allows: Adapt 4.7.0, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on Adapt does not help.
    • relaxing your compat on Turing does not help.
    • relaxing your compat on OrderedCollections would not help unless you
      also relaxed your compat on LogExpFunctions.

There may be more to say about some of these.

32. Convex+add-Images

reqs: ['Convex', 'BenchmarkTools', 'MathOptInterface', 'OrderedCollections', 'Images']

compat: {'BenchmarkTools': '1.8.0 - 1', 'Convex': '0.16.7 - 0.16', 'Images': '0.26.2 - 0.26', 'MathOptInterface': '1.53.0 - 1', 'OrderedCollections': '2.0.1 - 2'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves Images 0.26.2
  • Images 0.26.2 requires OrderedCollections 1.1.0–1.8.2 (through
    ImageContrastAdjustment and Parameters)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: Images 0.26.2, OrderedCollections 1.8.2
    2. drop requirement Images
       → allows: OrderedCollections 2.0.1
  Blocked fixes:
    • dropping requirement OrderedCollections does not help.
    • relaxing your compat on Images would not help unless you also relaxed
      your compat on Convex and dropped requirement MathOptInterface.

33. Convex+manifest-add-Images

reqs: ['Convex', 'BenchmarkTools', 'MathOptInterface', 'OrderedCollections', 'Images']

compat: {'AMD': '0.5.4 - *', 'AbstractTrees': '0.4.5 - *', 'BenchmarkTools': '1.8.0 - *', 'Bzip2_jll': '1.0.9 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CodecBzip2': '0.8.5 - *', 'CodecZlib': '0.7.9 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'Convex': '0.16.7 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DocStringExtensions': '0.9.5 - *', 'ForwardDiff': '1.4.5 - *', 'Images': '0.26.2 - 0.26', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '1.8.0 - *', 'LDLFactorizations': '0.10.2 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'MathOptInterface': '1.53.0 - *', 'MutableArithmetics': '1.8.0 - *', 'NaNMath': '1.1.4 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '2.0.1 - *', 'Parsers': '3.0.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StructUtils': '2.8.5 - *', 'TranscodingStreams': '0.11.3 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves Images 0.26.2
  • Images 0.26.2 requires OrderedCollections 1.1.0–1.8.2 (through
    ImageContrastAdjustment and Parameters)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: Images 0.26.2, OrderedCollections 1.8.2
    2. drop requirement Images
       → allows: OrderedCollections 2.0.1
  Blocked fixes:
    • dropping requirement OrderedCollections does not help.
    • relaxing your compat on Images would not help unless you also relaxed
      your compat on SpecialFunctions, dropped requirement Convex and dropped
      requirement MathOptInterface.

34. DataFrames+big20-partial

reqs: ['DataFrames', 'Statistics', 'Reexport', 'PrecompileTools', 'DataStructures', 'Tables', 'OrderedCollections', 'Compat', 'Preferences', 'PrettyTables', 'LaTeXStrings', 'Crayons', 'Missings', 'DataAPI', 'IteratorInterfaceExtensions', 'TableTraits', 'InvertedIndices', 'Parsers', 'PooledArrays', 'InlineStrings', 'SentinelArrays']

compat: {'Compat': '4.18.1 - 4', 'Crayons': '4.2.0 - 4', 'DataAPI': '1.16.0 - 1', 'DataFrames': '1.8.2 - 1', 'DataStructures': '0.19.6 - 0.19', 'InlineStrings': '2.0.1 - 2', 'InvertedIndices': '1.3.1 - 1', 'IteratorInterfaceExtensions': '1', 'LaTeXStrings': '1.4.1 - 1', 'Missings': '1.2.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'Parsers': '3', 'PooledArrays': '1.4.3 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'PrettyTables': '3.4.8 - 3', 'Reexport': '1.2.2 - 1', 'SentinelArrays': '1.4.10 - 1', 'Statistics': '1.11.5 - 1', 'TableTraits': '1.0.1 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: DataFrames
  • your compat leaves DataFrames 1.8.2
  • DataFrames 1.8.2 requires InlineStrings 1.3.0–1.4.6
  • your compat leaves InlineStrings 2.0.1
  Fix it by any one of:
    1. relax your compat on InlineStrings
       → allows: DataFrames 1.8.2, InlineStrings 1.4.6
    2. drop requirement DataFrames
       → allows: InlineStrings 2.0.1
  Blocked fixes:
    • dropping requirement InlineStrings does not help.
    • relaxing your compat on DataFrames would not help unless you also
      relaxed your compat on PrettyTables.

35. Franklin+big10-partial

reqs: ['Franklin', 'FranklinTemplates', 'JLLWrappers', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'HTTP', 'DelimitedFiles', 'OrderedCollections', 'Preferences', 'CodecZlib', 'URIs']

compat: {'CodecZlib': '0.7.9 - 0.7', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'Franklin': '0.10.97 - 0.10', 'FranklinTemplates': '0.10.4 - 0.10', 'HTTP': '2.6.7 - 2', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'OrderedCollections': '1.8.2 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Franklin
  • Franklin requires HTTP 0.8.0–1.11.0
  • your compat leaves HTTP 2.6.7
  The only minimal fix: relax your compat on HTTP
    → allows: Franklin 0.10.97, HTTP 1.11.0
  Blocked fixes:
    • relaxing your compat on Franklin does not help.
    • dropping requirement HTTP does not help.
    • dropping requirement Franklin would not help unless you also relaxed
      your compat on FranklinTemplates.

36. Gadfly+big20-upgrade

reqs: ['Gadfly', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'OrderedCollections', 'MacroTools', 'Interpolations', 'Requires', 'Colors', 'Distances', 'Compat', 'ChainRulesCore', 'Adapt']

compat: {'Adapt': '4.7.0 - 4', 'ChainRulesCore': '1.26.1 - 1', 'Colors': '0.13.1 - 0.13', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'Distances': '0.10.12 - 0.10', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'Gadfly': '1.4.1 - 1', 'Interpolations': '0.16.3 - 0.16', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Gadfly
  • Gadfly requires DataStructures ≤0.18.22 (through Compose)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Gadfly
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on Gadfly does not help.
    • dropping requirement DataStructures does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on JSON.

37. Gen+add-Lux

reqs: ['Gen', 'Distributions', 'ForwardDiff', 'JSON', 'Lux']

compat: {'Distributions': '0.25.131 - 0.25', 'ForwardDiff': '0.10.39 - 0.10', 'Gen': '0.4.8 - 0.4', 'JSON': '0.21.4 - 0.21', 'Lux': '1.31.4 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Lux
  • your compat leaves Lux 1.31.4
  • Lux 1.31.4 requires ForwardDiff ≥1.0.0
  • your compat leaves ForwardDiff 0.10.39
  Fix it by any one of:
    1. relax your compat on Lux
       → allows: ForwardDiff 0.10.39, Lux 1.31.2
    2. drop requirement Lux
       → allows: ForwardDiff 0.10.39
  Blocked fixes:
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on ForwardDiff would not help unless you also
      dropped requirement Gen.

38. Gen+add-ModelingToolkit

reqs: ['Gen', 'Distributions', 'ForwardDiff', 'JSON', 'ModelingToolkit']

compat: {'Distributions': '0.25.131 - 0.25', 'ForwardDiff': '0.10.39 - 0.10', 'Gen': '0.4.8 - 0.4', 'JSON': '0.21.4 - 0.21', 'ModelingToolkit': '11.41.0 - 11'}

Unsatisfiable — 1 conflict:

Conflict 1: ModelingToolkit
  • your compat leaves ModelingToolkit 11.41.0
  • ModelingToolkit 11.41.0 requires ForwardDiff ≥1.0.1
  • your compat leaves ForwardDiff 0.10.39
  Fix it by any one of:
    1. relax your compat on ModelingToolkit
       → allows: ForwardDiff 0.10.39, ModelingToolkit 10.32.1
    2. drop requirement ModelingToolkit
       → allows: ForwardDiff 0.10.39
  Blocked fixes:
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on ForwardDiff would not help unless you also
      dropped requirement Gen.

39. Gen+big20-partial

reqs: ['Gen', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'OrderedCollections', 'MacroTools', 'Parameters', 'Compat', 'ChainRulesCore', 'Preferences', 'QuadGK', 'Roots']

compat: {'ChainRulesCore': '1.26.1 - 1', 'Compat': '4.18.1 - 4', 'DataStructures': '0.18.22 - 0.18', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'Gen': '0.4.8 - 0.4', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '1.8.2 - 1', 'Parameters': '0.13.1 - 0.13', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'QuadGK': '2.11.3 - 2', 'Reexport': '1.2.2 - 1', 'Roots': '3.0.8 - 3', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen
  • Gen requires ForwardDiff 0.10.10–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: drop requirement Gen
    → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • relaxing your compat on Gen does not help.
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on ForwardDiff would not help unless you also
      relaxed your compat on JSON and relaxed your compat on Parameters.

40. Gen+bump2-ForwardDiff-JSON

reqs: ['Gen', 'Distributions', 'ForwardDiff', 'JSON']

compat: {'Distributions': '0.25.131 - 0.25', 'ForwardDiff': '1.4.5 - 1', 'Gen': '0.4.8 - 0.4', 'JSON': '1.8.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen
  • Gen requires ForwardDiff 0.10.10–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: drop requirement Gen
    → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • relaxing your compat on Gen does not help.
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on ForwardDiff would not help unless you also
      relaxed your compat on JSON.

41. GeoStats+manifest-add-ModelingToolkit

reqs: ['GeoStats', 'Unitful', 'Meshes', 'GeoStatsBase', 'ModelingToolkit']

compat: {'ADTypes': '1.24.0 - *', 'AbstractFFTs': '1.5.0 - *', 'AbstractTrees': '0.4.5 - *', 'Accessors': '0.1.45 - *', 'Adapt': '4.7.0 - *', 'AdaptivePredicates': '1.2.0 - *', 'AliasTables': '1.1.3 - *', 'ArnoldiMethod': '0.4.0 - *', 'ArrayInterface': '7.30.1 - *', 'AxisAlgorithms': '1.1.0 - *', 'AxisArrays': '0.4.8 - *', 'BangBang': '0.4.9 - *', 'Bessels': '0.2.8 - *', 'BitFlags': '0.1.10 - *', 'CRlibm': '1.0.2 - *', 'CRlibm_jll': '1.0.1 - *', 'CatIndices': '0.2.2 - *', 'CategoricalArrays': '1.1.1 - *', 'Chain': '1.0.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'ChunkSplitters': '3.2.0 - *', 'CircularArrays': '1.5.0 - *', 'Clustering': '0.15.8 - *', 'CoDa': '1.5.1 - *', 'CodecZlib': '0.7.9 - *', 'CodecZstd': '0.8.7 - *', 'ColorSchemes': '3.31.0 - *', 'ColorTypes': '0.12.1 - *', 'ColorVectorSpace': '0.11.0 - *', 'Colorfy': '2.2.2 - *', 'Colors': '0.13.1 - *', 'ColumnSelectors': '1.0.0 - *', 'Combinatorics': '1.1.0 - *', 'CommonSolve': '0.2.14 - *', 'CommonSubexpressions': '0.3.1 - *', 'CommonWorldInvalidations': '1.2.2 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ComputationalResources': '0.3.2 - *', 'ConcurrentUtilities': '2.6.0 - *', 'ConstructionBase': '1.6.0 - *', 'CoordGridTransforms': '0.1.11 - *', 'CoordRefSystems': '0.20.0 - *', 'CoreMath': '0.1.0 - *', 'CoreMath_jll': '0.1.0 - *', 'CpuId': '0.3.1 - *', 'Crayons': '4.2.0 - *', 'CustomUnitRanges': '1.0.2 - *', 'DataAPI': '1.16.0 - *', 'DataDeps': '0.7.14 - *', 'DataScienceTraits': '1.2.3 - *', 'DataStructures': '0.19.6 - *', 'DataValueInterfaces': '1.0.0 - *', 'DecisionTree': '0.12.4 - *', 'DelaunayTriangulation': '1.6.6 - *', 'DelimitedFiles': '1.9.1 - *', 'DensityInterface': '0.4.0 - *', 'DensityRatioEstimation': '1.4.0 - *', 'Dictionaries': '0.4.6 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DifferentiationInterface': '0.7.21 - *', 'Distances': '0.10.12 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'EnumX': '1.0.7 - *', 'ExactPredicates': '2.2.9 - *', 'ExceptionUnwrapping': '0.1.11 - *', 'FFTViews': '0.3.2 - *', 'FFTW': '1.10.0 - *', 'FFTW_jll': '3.3.12 - *', 'FileIO': '1.20.0 - *', 'FillArrays': '1.17.0 - *', 'FiniteDiff': '2.33.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'ForwardDiff': '1.4.5 - *', 'GLM': '1.9.5 - *', 'GPUArraysCore': '0.2.0 - *', 'Gamma': '1.2.0 - *', 'GeoStats': '0.90.0 - *', 'GeoStatsBase': '0.49.3 - *', 'GeoStatsFunctions': '0.16.5 - *', 'GeoStatsModels': '0.13.12 - *', 'GeoStatsProcesses': '0.13.2 - *', 'GeoStatsTransforms': '0.14.20 - *', 'GeoStatsValidation': '0.4.10 - *', 'GeoTIFF': '0.5.1 - *', 'GeoTables': '1.29.2 - *', 'HAdaptiveIntegration': '1.1.1 - *', 'HTTP': '1.11.0 - *', 'HashArrayMappedTries': '0.2.0 - *', 'HypergeometricFunctions': '0.3.30 - *', 'IfElse': '0.1.1 - *', 'ImageBase': '0.1.7 - *', 'ImageCore': '0.10.5 - *', 'ImageFiltering': '0.7.12 - *', 'Indexing': '1.1.1 - *', 'IndirectArrays': '1.0.0 - *', 'Inflate': '0.1.5 - *', 'InitialValues': '0.3.1 - *', 'IntegrationInterface': '0.1.3 - *', 'IntelOpenMP_jll': '2025.2.0 - *', 'Interpolations': '0.16.3 - *', 'IntervalArithmetic': '1.0.11 - *', 'IntervalSets': '0.7.14 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'IterTools': '1.10.0 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '1.8.0 - *', 'LaTeXStrings': '1.4.1 - *', 'LineSearches': '7.8.1 - *', 'LogExpFunctions': '1.0.1 - *', 'LoggingExtras': '1.2.0 - *', 'LossFunctions': '1.2.2 - *', 'MKL_jll': '2025.2.0 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MbedTLS': '1.1.10 - *', 'MbedTLS_jll': '2.28.1010 - *', 'Meshes': '0.58.3 - *', 'Missings': '1.2.0 - *', 'ModelingToolkit': '11.41.0 - 11', 'MosaicViews': '0.3.4 - *', 'NLSolversBase': '8.0.1 - *', 'NaNMath': '1.1.4 - *', 'NearestNeighbors': '0.4.29 - *', 'NelderMead': '0.4.0 - *', 'OffsetArrays': '1.17.0 - *', 'OhMyThreads': '0.8.6 - *', 'OpenBLASConsistentFPCSR_jll': '0.3.34 - *', 'OpenSSL': '1.6.1 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optim': '2.3.1 - *', 'OrderedCollections': '2.0.1 - *', 'PDMats': '0.11.41 - *', 'PaddedViews': '0.5.12 - *', 'Parsers': '3.0.0 - *', 'PkgVersion': '0.3.3 - *', 'PositiveFactorizations': '0.2.4 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrettyTables': '3.4.8 - *', 'ProgressMeter': '1.11.0 - *', 'PtrArrays': '1.4.0 - *', 'QuadGK': '2.11.3 - *', 'Quaternions': '0.7.7 - *', 'RangeArrays': '0.3.2 - *', 'Ratios': '0.4.5 - *', 'RealDot': '0.1.0 - *', 'RecipesBase': '1.3.4 - *', 'Reexport': '1.2.2 - *', 'Requires': '1.3.1 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'Rotations': '1.7.1 - *', 'RoundingEmulator': '0.2.1 - *', 'SIMD': '3.7.2 - *', 'SciMLPublic': '1.3.0 - *', 'ScikitLearnBase': '0.5.0 - *', 'ScopedValues': '1.6.2 - *', 'Scratch': '1.3.0 - *', 'Setfield': '1.1.2 - *', 'ShiftedArrays': '2.0.0 - *', 'SimpleBufferStream': '1.2.0 - *', 'SortingAlgorithms': '1.2.3 - *', 'SpecialFunctions': '2.9.0 - *', 'SpectralIndices': '0.2.20 - *', 'SplitApplyCombine': '1.3.0 - *', 'StableTasks': '0.1.7 - *', 'StackViews': '0.1.2 - *', 'Static': '1.4.6 - *', 'StaticArrayInterface': '1.10.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StatsFuns': '2.2.1 - *', 'StatsLearnModels': '1.3.1 - *', 'StatsModels': '0.7.10 - *', 'StringManipulation': '0.5.0 - *', 'StructUtils': '2.8.5 - *', 'TableDistances': '1.2.0 - *', 'TableTraits': '1.0.1 - *', 'TableTransforms': '1.38.10 - *', 'Tables': '1.14.0 - *', 'TaskLocalValues': '0.1.3 - *', 'TensorCore': '0.1.1 - *', 'TiffImages': '0.11.9 - *', 'TiledIteration': '0.5.0 - *', 'TranscodingStreams': '0.11.3 - *', 'TransformsBase': '1.6.0 - *', 'TypedTables': '1.4.6 - *', 'URIs': '1.7.0 - *', 'Unitful': '1.29.0 - *', 'WoodburyMatrices': '1.1.0 - *', 'Zstd_jll': '1.5.7 - *', 'oneTBB_jll': '2022.3.0 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: ModelingToolkit
  • your compat leaves ModelingToolkit 11.41.0
  • ModelingToolkit 11.41.0 requires Combinatorics 1.0.2 (through
    SymbolicUtils)
  • your compat leaves Combinatorics 1.1.0
  Fix it by any one of:
    1. relax your compat on Combinatorics
       → allows: Combinatorics 1.0.2, ModelingToolkit 11.41.0
    2. drop requirement ModelingToolkit
       → allows: Combinatorics 1.1.0
  Blocked fixes:
    • relaxing your compat on ModelingToolkit would not help unless you also
      relaxed your compat on Gamma, relaxed your compat on LogExpFunctions and
      relaxed your compat on OrderedCollections.

There may be more to say about some of these.

42. GeometricFlux+add-Symbolics

reqs: ['GeometricFlux', 'StatsBase', 'Flux', 'DataStructures', 'Symbolics']

compat: {'DataStructures': '0.18.22 - 0.18', 'Flux': '0.14.25 - 0.14', 'GeometricFlux': '0.14', 'StatsBase': '0.34.13 - 0.34', 'Symbolics': '7.39.0 - 7'}

Unsatisfiable — 1 conflict:

Conflict 1: Symbolics
  • your compat leaves Symbolics 7.39.0
  • Symbolics 7.39.0 requires DataStructures ≤0.18.21, ≥0.19.0
  • your compat leaves DataStructures 0.18.22
  Fix it by any one of:
    1. relax your compat on Symbolics
       → allows: DataStructures 0.18.22, Symbolics 6.58.0
    2. drop requirement Symbolics
       → allows: DataStructures 0.18.22
  Blocked fixes:
    • relaxing your compat on DataStructures would not help unless you also
      dropped requirement GeometricFlux.

43. GeometricFlux+big20-partial

reqs: ['GeometricFlux', 'Statistics', 'JLLWrappers', 'StaticArrays', 'DataFrames', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'CSV', 'ForwardDiff', 'HTTP', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'Graphs', 'Unitful', 'MacroTools', 'JLD2']

compat: {'CSV': '0.10.17 - 0.10', 'DataFrames': '1.8.2 - 1', 'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'GeometricFlux': '0.14', 'Graphs': '1.11.2 - 1', 'HTTP': '1.11.0 - 1', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: GeometricFlux
  • GeometricFlux requires DataStructures ≤0.18.22 (through LightGraphs)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement GeometricFlux
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on GeometricFlux does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on OrderedCollections.

44. GeometricFlux+big20-upgrade

reqs: ['GeometricFlux', 'Statistics', 'JLLWrappers', 'StaticArrays', 'DataFrames', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'CSV', 'ForwardDiff', 'HTTP', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'Graphs', 'Unitful', 'MacroTools', 'JLD2']

compat: {'CSV': '0.10.17 - 0.10', 'DataFrames': '1.8.2 - 1', 'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'GeometricFlux': '0.14', 'Graphs': '1.14.0 - 1', 'HTTP': '2.6.7 - 2', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: GeometricFlux
  • GeometricFlux requires DataStructures ≤0.18.22 (through LightGraphs)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement GeometricFlux
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on GeometricFlux does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on Graphs, relaxed your compat on HTTP and relaxed
      your compat on OrderedCollections.

There may be more to say about some of these.

45. GeometricFlux+bump2-Flux-DataStructures

reqs: ['GeometricFlux', 'StatsBase', 'Flux', 'DataStructures']

compat: {'DataStructures': '0.19.6 - 0.19', 'Flux': '0.16.11 - 0.16', 'GeometricFlux': '0.14', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: GeometricFlux
  • GeometricFlux requires DataStructures ≤0.18.22 (through LightGraphs)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement GeometricFlux
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on GeometricFlux does not help.
    • dropping requirement DataStructures does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on Flux.

46. Images+big20-partial

reqs: ['Images', 'Statistics', 'JLLWrappers', 'StaticArrays', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'OrderedCollections', 'FFTW', 'Graphs', 'RecipesBase', 'MacroTools', 'JLD2', 'Parameters', 'Interpolations', 'FileIO']

compat: {'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'FileIO': '1.20.0 - 1', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'Images': '0.26.2 - 0.26', 'Interpolations': '0.16.3 - 0.16', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'Parameters': '0.12.3 - 0.12', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Images together require
    OrderedCollections 1.1.0–1.8.2 (through ImageContrastAdjustment,
    ImageFiltering, Parameters and StatsBase)
  • your compat leaves OrderedCollections 2.0.1
  The only minimal fix: relax your compat on OrderedCollections
    → allows: DataStructures 0.19.6, Images 0.26.2, OrderedCollections 1.8.2
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Images does not help.
    • dropping requirement Images would not help unless you also dropped
      requirement Parameters.

47. Images+big20-upgrade

reqs: ['Images', 'Statistics', 'JLLWrappers', 'StaticArrays', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'OrderedCollections', 'FFTW', 'Graphs', 'RecipesBase', 'MacroTools', 'JLD2', 'Parameters', 'Interpolations', 'FileIO']

compat: {'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'FileIO': '1.20.0 - 1', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'Images': '0.26.2 - 0.26', 'Interpolations': '0.16.3 - 0.16', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'Parameters': '0.13.1 - 0.13', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Images together require
    OrderedCollections ≤2.0.0 (through ImageFiltering and StatsBase)
  • your compat leaves OrderedCollections 2.0.1
  The only minimal fix: drop requirement Images
    → allows: DataStructures 0.19.6, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Images does not help.
    • dropping requirement DataStructures does not help.
    • relaxing your compat on OrderedCollections would not help unless you
      also relaxed your compat on Parameters.

48. Knet+big10-partial

reqs: ['Knet', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'OrderedCollections', 'MacroTools', 'JLD2']

compat: {'DocStringExtensions': '0.9.5 - 0.9', 'JLD2': '0.4.55 - 0.4', 'JLLWrappers': '1.8.0 - 1', 'Knet': '1.4.10 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: JLD2
  • your compat leaves JLD2 0.4.55
  • JLD2 0.4.55 requires OrderedCollections 1.0.0–1.8.2
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on JLD2
       → allows: JLD2 0.1.3, OrderedCollections 2.0.1
    2. relax your compat on OrderedCollections
       → allows: JLD2 0.4.55, OrderedCollections 1.8.2
  Blocked fixes:
    • dropping requirement OrderedCollections does not help.
    • dropping requirement JLD2 would not help unless you also dropped
      requirement Knet.

49. Knet+big10-upgrade

reqs: ['Knet', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'OrderedCollections', 'MacroTools', 'JLD2']

compat: {'DocStringExtensions': '0.9.5 - 0.9', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'Knet': '1.4.10 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires JLD2 ≤0.4.55
  • your compat leaves JLD2 0.6.6
  Fix it by any one of:
    1. relax your compat on JLD2
       → allows: JLD2 0.1.3, Knet 1.4.10
    2. drop requirement Knet
       → allows: JLD2 0.6.6
  Blocked fixes:
    • dropping requirement JLD2 does not help.
    • relaxing your compat on Knet would not help unless you also relaxed your
      compat on SpecialFunctions.

50. Knet+big20-upgrade

reqs: ['Knet', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'OrderedCollections', 'MacroTools', 'JLD2', 'FileIO', 'Requires', 'Colors', 'Compat', 'ChainRulesCore', 'Adapt', 'Preferences', 'CUDA', 'OffsetArrays', 'CEnum']

compat: {'Adapt': '4.7.0 - 4', 'CEnum': '0.5', 'CUDA': '6.3.1 - 6', 'ChainRulesCore': '1.26.1 - 1', 'Colors': '0.13.1 - 0.13', 'Compat': '4.18.1 - 4', 'DocStringExtensions': '0.9.5 - 0.9', 'FileIO': '1.20.0 - 1', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'Knet': '1.4.10 - 1', 'MacroTools': '0.5.16 - 0.5', 'OffsetArrays': '1.17.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires Adapt 2.2.0–3.7.2 (through CUDA)
  • your compat leaves Adapt 4.7.0
  The only minimal fix: drop requirement Knet
    → allows: Adapt 4.7.0
  Blocked fixes:
    • relaxing your compat on Adapt does not help.
    • dropping requirement Adapt does not help.
    • relaxing your compat on Knet would not help unless you also relaxed your
      compat on SpecialFunctions and dropped requirement CUDA.

There may be more to say about some of these.

51. Knet+bump-CUDA

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '6.3.1 - 6', 'JLD2': '0.4.55 - 0.4', 'Knet': '1.4.10 - 1', 'NNlib': '0.8.21 - 0.8'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires CUDA ≤3.13.1
  • your compat leaves CUDA 6.3.1
  The only minimal fix: relax your compat on CUDA
    → allows: CUDA 3.13.1, Knet 1.4.10
  Blocked fixes:
    • relaxing your compat on Knet or dropping requirement CUDA would only
      help if you do both.
    • dropping requirement Knet would not help unless you also relaxed your
      compat on NNlib.

52. Knet+bump-JLD2

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'CUDA': '3.13.1 - 3', 'JLD2': '0.6.6 - 0.6', 'Knet': '1.4.10 - 1', 'NNlib': '0.8.21 - 0.8'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires JLD2 ≤0.4.55
  • your compat leaves JLD2 0.6.6
  Fix it by any one of:
    1. relax your compat on JLD2
       → allows: JLD2 0.4.55, Knet 1.4.10
    2. drop requirement Knet
       → allows: JLD2 0.6.6
  Blocked fixes:
    • dropping requirement JLD2 does not help.
    • relaxing your compat on Knet would not help unless you also dropped
      requirement CUDA.

53. Knet+manifest-bump-JLD2

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'AbstractFFTs': '1.5.0 - *', 'Adapt': '3.7.2 - *', 'Atomix': '0.1.0 - *', 'AutoGrad': '1.2.5 - *', 'BFloat16s': '0.2.0 - *', 'Bzip2_jll': '1.0.9 - *', 'CEnum': '0.4.2 - *', 'CUDA': '3.13.1 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'ColorTypes': '0.11.5 - *', 'ColorVectorSpace': '0.9.10 - *', 'Colors': '0.12.11 - *', 'Compat': '4.18.1 - *', 'DocStringExtensions': '0.9.5 - *', 'EnzymeCore': '0.8.21 - *', 'ExprTools': '0.1.11 - *', 'FFTW_jll': '3.3.12 - *', 'FileIO': '1.20.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'GPUArrays': '8.8.1 - *', 'GPUArraysCore': '0.1.5 - *', 'GPUCompiler': '0.17.3 - *', 'Ghostscript_jll': '9.55.1 - *', 'Giflib_jll': '5.2.3 - *', 'Graphics': '1.1.3 - *', 'ImageCore': '0.9.4 - *', 'ImageMagick': '1.4.2 - *', 'ImageMagick_jll': '7.1.2029 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - *', 'JpegTurbo_jll': '3.2.0 - *', 'KernelAbstractions': '0.9.42 - *', 'Knet': '1.4.10 - *', 'LERC_jll': '4.1.0 - *', 'LLVM': '4.17.1 - *', 'LLVMExtra_jll': '0.0.18 - *', 'Libglvnd_jll': '1.7.1 - *', 'Libtiff_jll': '4.7.3 - *', 'LittleCMS_jll': '2.19.1 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MosaicViews': '0.3.4 - *', 'NNlib': '0.8.21 - *', 'NaNMath': '1.1.4 - *', 'OffsetArrays': '1.17.0 - *', 'OpenJpeg_jll': '2.5.5 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '1.8.2 - *', 'PaddedViews': '0.5.12 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'Random123': '1.7.1 - *', 'RandomNumbers': '1.6.0 - *', 'Reexport': '1.2.2 - *', 'Requires': '1.3.1 - *', 'SpecialFunctions': '2.9.0 - *', 'StackViews': '0.1.2 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'TensorCore': '0.1.1 - *', 'TimerOutputs': '0.5.29 - *', 'TranscodingStreams': '0.11.3 - *', 'UnsafeAtomics': '0.2.1 - *', 'XZ_jll': '5.8.3 - *', 'Xorg_libX11_jll': '1.8.13 - *', 'Xorg_libXau_jll': '1.0.13 - *', 'Xorg_libXdmcp_jll': '1.1.6 - *', 'Xorg_libXext_jll': '1.3.8 - *', 'Xorg_libxcb_jll': '1.17.1 - *', 'Xorg_xtrans_jll': '1.6.0 - *', 'Zstd_jll': '1.5.7 - *', 'libpng_jll': '1.6.58 - *', 'libwebp_jll': '1.6.0 - *', 'libzip_jll': '1.11.4 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires JLD2 ≤0.4.55
  • your compat leaves JLD2 0.6.6
  Fix it by any one of:
    1. relax your compat on JLD2
       → allows: JLD2 0.4.55, Knet 1.4.10
    2. drop requirement Knet
       → allows: JLD2 0.6.6
  Blocked fixes:
    • dropping requirement JLD2 does not help.
    • relaxing your compat on Knet would not help unless you also relaxed your
      compat on SpecialFunctions and dropped requirement CUDA.

54. Metatheory+big10-upgrade

reqs: ['Metatheory', 'Reexport', 'DocStringExtensions', 'DataStructures', 'OrderedCollections', 'Compat', 'TimerOutputs', 'AutoHashEquals', 'ExprTools', 'TermInterface']

compat: {'AutoHashEquals': '2.2.0 - 2', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'ExprTools': '0.1.11 - 0.1', 'Metatheory': '2.0.2 - 2', 'OrderedCollections': '2.0.1 - 2', 'Reexport': '1.2.2 - 1', 'TermInterface': '2', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • Metatheory requires DataStructures 0.18.0–0.18.22
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Metatheory
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • dropping requirement DataStructures does not help.
    • relaxing your compat on DataStructures or relaxing your compat on
      Metatheory would only help if you do both and also relaxed your compat
      on OrderedCollections.

55. Metatheory+bump2-TimerOutputs-TermInterface

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'DataStructures': '0.18.22 - 0.18', 'Metatheory': '2.0.2 - 2', 'TermInterface': '2', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • your compat leaves Metatheory 2.0.2
  • Metatheory 2.0.2 requires TermInterface 0.3.3
  • your compat leaves TermInterface 2.0.0
  Fix it by any one of:
    1. relax your compat on Metatheory
       → allows: Metatheory 0.4.0, TermInterface 2.0.0
    2. drop requirement Metatheory
       → allows: TermInterface 2.0.0
  Blocked fixes:
    • dropping requirement TermInterface does not help.
    • relaxing your compat on TermInterface would not help unless you also
      relaxed your compat on TimerOutputs.

56. Metatheory+upgrade-direct

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'DataStructures': '0.19.6 - 0.19', 'Metatheory': '2.0.2 - 2', 'TermInterface': '2', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • Metatheory requires DataStructures 0.18.0–0.18.22
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Metatheory
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • dropping requirement DataStructures does not help.
    • relaxing your compat on DataStructures or relaxing your compat on
      Metatheory would only help if you do both.

57. ModelingToolkit+big20-upgrade

reqs: ['ModelingToolkit', 'ModelingToolkitTearing', 'ModelingToolkitBase', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'Tables', 'OrderedCollections', 'Graphs', 'RecipesBase', 'MacroTools', 'Combinatorics', 'SciMLBase', 'Compat', 'ChainRulesCore', 'Adapt', 'Preferences']

compat: {'Adapt': '4.7.0 - 4', 'ChainRulesCore': '1.26.1 - 1', 'Combinatorics': '1.1.0 - 1', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'ModelingToolkit': '11.41.0 - 11', 'ModelingToolkitBase': '1.68.2 - 1', 'ModelingToolkitTearing': '1.20.6 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SciMLBase': '3.51.0 - 3', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: ModelingToolkitBase
  • ModelingToolkitBase requires Combinatorics 1.0.0–1.0.2 (through
    SymbolicUtils, Symbolics and SymbolicLimits)
  • your compat leaves Combinatorics 1.1.0
  The only minimal fix: relax your compat on Combinatorics
    → allows: Combinatorics 1.0.2, ModelingToolkitBase 1.68.2
  Blocked fixes:
    • relaxing your compat on ModelingToolkitBase does not help.
    • dropping requirement Combinatorics does not help.
    • dropping requirement ModelingToolkitBase would not help unless you also
      dropped requirement ModelingToolkit and dropped requirement
      ModelingToolkitTearing.

There may be more to say about some of these.

58. Molly+big20-partial

reqs: ['Molly', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'Tables', 'OrderedCollections', 'FFTW', 'Graphs', 'Unitful', 'RecipesBase', 'MacroTools', 'Parameters', 'Requires']

compat: {'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'Graphs': '1.14.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'Molly': '0.23.3 - 0.23', 'OrderedCollections': '2.0.1 - 2', 'Parameters': '0.12.3 - 0.12', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Molly
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Molly together require
    OrderedCollections 1.1.0–1.8.2 (through BioStructures, CellListMap,
    Distributions, JLD2, LightGraphs, Parameters, QuadGK and MetaGraphs)
  • your compat leaves OrderedCollections 2.0.1
  The only minimal fix: relax your compat on OrderedCollections
    → allows: DataStructures 0.19.6, Molly 0.23.3, OrderedCollections 1.8.2
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Molly does not help.
    • dropping requirement Molly would not help unless you also relaxed your
      compat on Parameters.

59. Oceananigans+big10-partial

reqs: ['Oceananigans', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'Tables', 'OrderedCollections', 'FFTW', 'RecipesBase']

compat: {'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'Oceananigans': '0.111', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Oceananigans
  • your compat leaves FFTW 1.10.0
  • FFTW 1.10.0 or absent and Oceananigans together require OrderedCollections
    ≤2.0.0 (through AbstractFFTs)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: FFTW 1.10.0, Oceananigans 0.111.0, OrderedCollections 1.8.2
    2. drop requirement Oceananigans
       → allows: FFTW 1.10.0, OrderedCollections 2.0.1
  Blocked fixes:
    • dropping requirement FFTW does not help.
    • dropping requirement OrderedCollections does not help.
    • relaxing your compat on FFTW or relaxing your compat on Oceananigans
      would only help if you do both and also relaxed your compat on Reexport
      and relaxed your compat on StaticArrays.

60. Rasters+big20-partial

reqs: ['Rasters', 'Statistics', 'Reexport', 'PrecompileTools', 'DataStructures', 'ProgressMeter', 'Tables', 'OrderedCollections', 'RecipesBase', 'MacroTools', 'Adapt', 'Preferences', 'FillArrays', 'OffsetArrays', 'Setfield', 'ColorTypes', 'IntervalSets', 'FixedPointNumbers', 'ConstructionBase', 'Missings', 'DataAPI']

compat: {'Adapt': '4.7.0 - 4', 'ColorTypes': '0.12.1 - 0.12', 'ConstructionBase': '1.6.0 - 1', 'DataAPI': '1.16.0 - 1', 'DataStructures': '0.19.6 - 0.19', 'FillArrays': '1.17.0 - 1', 'FixedPointNumbers': '0.9.1 - 0.9', 'IntervalSets': '0.7.14 - 0.7', 'MacroTools': '0.5.16 - 0.5', 'Missings': '1.2.0 - 1', 'OffsetArrays': '1.17.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'ProgressMeter': '1.11.0 - 1', 'Rasters': '0.15', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Setfield': '1.1.2 - 1', 'Statistics': '1.11.5 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: ColorTypes
  • ColorTypes requires FixedPointNumbers ≤0.8.6
  • your compat leaves FixedPointNumbers 0.9.1
  The only minimal fix: relax your compat on FixedPointNumbers
    → allows: ColorTypes 0.12.1, FixedPointNumbers 0.8.6
  Blocked fixes:
    • relaxing your compat on ColorTypes does not help.
    • dropping requirement FixedPointNumbers does not help.
    • dropping requirement ColorTypes would not help unless you also dropped
      requirement Rasters.

61. Soss+big20-partial

reqs: ['Soss', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'Tables', 'OrderedCollections', 'RecipesBase', 'MacroTools', 'Parameters', 'Requires', 'Combinatorics', 'JSON3']

compat: {'Combinatorics': '1.1.0 - 1', 'DataStructures': '0.18.22 - 0.18', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'JSON3': '1.14.3 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '1.8.2 - 1', 'Parameters': '0.13.1 - 0.13', 'PrecompileTools': '1.3.4 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'Soss': '0.21.2 - 0.21', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Soss
  • Soss requires ForwardDiff ≤0.10.39 (through MeasureTheory and
    TransformVariables)
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: drop requirement Soss
    → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • relaxing your compat on Soss does not help.
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on ForwardDiff would not help unless you also
      relaxed your compat on Parameters and relaxed your compat on StatsBase.

62. Soss+bump-DataStructures

reqs: ['Soss', 'Distributions', 'StatsBase', 'DataStructures']

compat: {'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'Soss': '0.21.2 - 0.21', 'StatsBase': '0.33.22 - 0.33'}

Unsatisfiable — 1 conflict:

Conflict 1: Soss
  • Soss requires DataStructures ≤0.18.22 (through GeneralizedGenerated and
    SimpleGraphs)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: relax your compat on DataStructures
    → allows: DataStructures 0.18.22, Soss 0.21.2
  Blocked fixes:
    • relaxing your compat on Soss does not help.
    • dropping requirement DataStructures does not help.
    • dropping requirement Soss would not help unless you also relaxed your
      compat on StatsBase.

63. Soss+bump2-StatsBase-DataStructures

reqs: ['Soss', 'Distributions', 'StatsBase', 'DataStructures']

compat: {'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'Soss': '0.21.2 - 0.21', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Soss
  • Soss requires DataStructures ≤0.18.22 (through GeneralizedGenerated and
    SimpleGraphs)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Soss
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on Soss does not help.
    • dropping requirement DataStructures does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on StatsBase.

64. Symbolics+big20-upgrade

reqs: ['Symbolics', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'OrderedCollections', 'Graphs', 'RecipesBase', 'MacroTools', 'Combinatorics', 'Compat', 'ChainRulesCore', 'Adapt', 'Preferences', 'AbstractTrees', 'RecursiveArrayTools']

compat: {'AbstractTrees': '0.4.5 - 0.4', 'Adapt': '4.7.0 - 4', 'ChainRulesCore': '1.26.1 - 1', 'Combinatorics': '1.1.0 - 1', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'RecipesBase': '1.3.4 - 1', 'RecursiveArrayTools': '4.5.1 - 4', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'Symbolics': '7.39.0 - 7'}

Unsatisfiable — 1 conflict:

Conflict 1: Symbolics
  • your compat leaves RecursiveArrayTools 4.5.1
  • RecursiveArrayTools 4.5.1 or absent and Symbolics together require
    Combinatorics 1.0.0–1.0.2 (through NaNMath, SciMLBase and SymbolicUtils)
  • your compat leaves Combinatorics 1.1.0
  Fix it by any one of:
    1. relax your compat on Combinatorics
       → allows: Combinatorics 1.0.2, RecursiveArrayTools 4.5.1, Symbolics
         7.39.0
    2. drop requirement Symbolics
       → allows: Combinatorics 1.1.0, RecursiveArrayTools 4.5.1
  Blocked fixes:
    • dropping requirement Combinatorics does not help.
    • dropping requirement RecursiveArrayTools does not help.
    • relaxing your compat on RecursiveArrayTools or relaxing your compat on
      Symbolics would only help if you do both.

65. Transformers+big10-partial

reqs: ['Transformers', 'Statistics', 'JLLWrappers', 'StaticArrays', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter']

compat: {'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'JLLWrappers': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Transformers': '0.3.1 - 0.3'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Transformers together require Reexport
    0.2.0 (through DataDeps)
  • your compat leaves Reexport 1.2.2
  Fix it by any one of:
    1. relax your compat on DataStructures
       → allows: DataStructures 0.18.22, Reexport 1.2.2, Transformers 0.3.1
    2. drop requirement Transformers
       → allows: DataStructures 0.19.6, Reexport 1.2.2
  Blocked fixes:
    • dropping requirement DataStructures does not help.
    • dropping requirement Reexport does not help.
    • relaxing your compat on Reexport or relaxing your compat on Transformers
      would only help if you do both.

66. Transformers+big20-partial

reqs: ['Transformers', 'Statistics', 'JLLWrappers', 'StaticArrays', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'HTTP', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'MacroTools', 'Requires', 'JSON3', 'Compat', 'ChainRulesCore']

compat: {'ChainRulesCore': '1.26.1 - 1', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'HTTP': '1.11.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'JSON3': '1.14.3 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Transformers': '0.3.1 - 0.3'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Transformers together require
    ForwardDiff ≤1.4.4 (through Flux)
  • your compat leaves ForwardDiff 1.4.5
  The only minimal fix: drop requirement Transformers
    → allows: DataStructures 0.19.6, ForwardDiff 1.4.5
  Blocked fixes:
    • relaxing your compat on ForwardDiff does not help.
    • relaxing your compat on Transformers does not help.
    • dropping requirement DataStructures does not help.
    • dropping requirement ForwardDiff does not help.
    • relaxing your compat on DataStructures would not help unless you also
      relaxed your compat on OrderedCollections.

67. Transformers+big20-upgrade

reqs: ['Transformers', 'Statistics', 'JLLWrappers', 'StaticArrays', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'HTTP', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'MacroTools', 'Requires', 'JSON3', 'Compat', 'ChainRulesCore']

compat: {'ChainRulesCore': '1.26.1 - 1', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'HTTP': '2.6.7 - 2', 'JLLWrappers': '1.8.0 - 1', 'JSON3': '1.14.3 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Transformers': '0.3.1 - 0.3'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires HTTP ≤1.11.0 (through DataDeps)
  • your compat leaves HTTP 2.6.7
  The only minimal fix: drop requirement Transformers
    → allows: HTTP 2.6.7
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement HTTP does not help.
    • relaxing your compat on HTTP would not help unless you also relaxed your
      compat on DataStructures and relaxed your compat on OrderedCollections.

68. Yao+manifest-add-ModelingToolkit

reqs: ['Yao', 'YaoBlocks', 'YaoArrayRegister', 'LuxurySparse', 'ModelingToolkit']

compat: {'AbstractTrees': '0.4.5 - *', 'Adapt': '4.7.0 - *', 'AliasTables': '1.1.3 - *', 'ArnoldiMethod': '0.4.0 - *', 'Automa': '1.2.0 - *', 'BaseDirs': '1.4.0 - *', 'BatchedRoutines': '0.2.2 - *', 'BitBasis': '0.9.10 - *', 'Bzip2_jll': '1.0.9 - *', 'CEnum': '0.5.0 - *', 'CacheServers': '0.2.0 - *', 'Cairo': '1.1.1 - *', 'Cairo_jll': '1.18.7 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CliqueTrees': '1.19.6 - *', 'Collects': '1.1.0 - *', 'ColorTypes': '0.12.1 - *', 'ColorVectorSpace': '0.11.0 - *', 'Colors': '0.13.1 - *', 'Combinatorics': '1.1.0 - *', 'Compat': '4.18.1 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.19.6 - *', 'DocStringExtensions': '0.9.5 - *', 'EarCut_jll': '2.2.4 - *', 'Expat_jll': '2.8.3 - *', 'FFMPEG': '0.4.5 - *', 'FFMPEG_jll': '8.1.2 - *', 'FileIO': '1.20.0 - *', 'FillArrays': '1.17.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'FixedSizeArrays': '1.3.0 - *', 'Fontconfig_jll': '2.17.1 - *', 'FreeType': '4.1.1 - *', 'FreeType2_jll': '2.14.3 - *', 'FreeTypeAbstraction': '0.10.8 - *', 'FriBidi_jll': '1.0.17 - *', 'GeometryBasics': '0.5.12 - *', 'GettextRuntime_jll': '0.22.4 - *', 'Glib_jll': '2.88.3 - *', 'Graphics': '1.1.3 - *', 'Graphite2_jll': '1.3.16 - *', 'Graphs': '1.14.0 - *', 'HarfBuzz_jll': '100.14003.0 - *', 'Inflate': '0.1.5 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '1.8.0 - *', 'JpegTurbo_jll': '3.2.0 - *', 'KrylovKit': '0.10.4 - *', 'LAME_jll': '3.100.3 - *', 'LERC_jll': '4.1.0 - *', 'LLVMOpenMP_jll': '22.1.7 - *', 'LaTeXStrings': '1.4.1 - *', 'LegibleLambdas': '0.3.0 - *', 'Libffi_jll': '3.4.7 - *', 'Libiconv_jll': '1.18.0 - *', 'Libmount_jll': '2.42.0 - *', 'Librsvg_jll': '2.58.5 - *', 'Libtiff_jll': '4.7.3 - *', 'Libuuid_jll': '2.42.0 - *', 'LogExpFunctions': '1.0.1 - *', 'Luxor': '4.5.0 - *', 'LuxurySparse': '0.8.2 - *', 'MLStyle': '0.4.17 - *', 'MPC_jll': '1.4.1 - *', 'MacroTools': '0.5.16 - *', 'MathTeXEngine': '0.6.9 - *', 'Missings': '1.2.0 - *', 'ModelingToolkit': '11.41.0 - 11', 'NaNMath': '1.1.4 - *', 'OMEinsum': '0.9.4 - *', 'OMEinsumContractionOrders': '1.3.0 - *', 'Ogg_jll': '1.3.6 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Opus_jll': '1.6.1 - *', 'OrderedCollections': '2.0.1 - *', 'PackageExtensionCompat': '1.0.2 - *', 'Pango_jll': '1.58.2 - *', 'Parsers': '3.0.0 - *', 'Pixman_jll': '0.46.4 - *', 'PolygonAlgorithms': '0.4.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PtrArrays': '1.4.0 - *', 'RecipesBase': '1.3.4 - *', 'Reexport': '1.2.2 - *', 'RelocatableFolders': '1.0.1 - *', 'Requires': '1.3.1 - *', 'Rsvg': '1.1.0 - *', 'Scratch': '1.3.0 - *', 'SimpleTraits': '0.9.6 - *', 'SortingAlgorithms': '1.2.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StructUtils': '2.8.5 - *', 'Suppressor': '0.2.8 - *', 'SymEngine': '0.13.2 - *', 'SymEngine_jll': '0.12.0 - *', 'TensorCore': '0.1.1 - *', 'TranscodingStreams': '0.11.3 - *', 'TreeWidthSolver': '0.3.5 - *', 'TupleTools': '1.6.0 - *', 'UnicodeFun': '0.4.1 - *', 'VectorInterface': '0.6.0 - *', 'XML2_jll': '2.13.9 - *', 'XZ_jll': '5.8.3 - *', 'Xorg_libX11_jll': '1.8.13 - *', 'Xorg_libXau_jll': '1.0.13 - *', 'Xorg_libXdmcp_jll': '1.1.6 - *', 'Xorg_libXext_jll': '1.3.8 - *', 'Xorg_libXfixes_jll': '6.0.2 - *', 'Xorg_libXrender_jll': '0.9.12 - *', 'Xorg_libpciaccess_jll': '0.19.0 - *', 'Xorg_libxcb_jll': '1.17.1 - *', 'Xorg_xtrans_jll': '1.6.0 - *', 'Yao': '0.9.3 - *', 'YaoAPI': '0.4.9 - *', 'YaoArrayRegister': '0.9.13 - *', 'YaoBlocks': '0.14.3 - *', 'YaoPlots': '0.9.6 - *', 'YaoSym': '0.6.12 - *', 'YaoToEinsum': '0.2.9 - *', 'Zstd_jll': '1.5.7 - *', 'gdk_pixbuf_jll': '2.42.13 - *', 'libaom_jll': '3.14.1 - *', 'libass_jll': '0.17.5 - *', 'libdrm_jll': '2.4.134 - *', 'libfdk_aac_jll': '2.0.4 - *', 'libpng_jll': '1.6.58 - *', 'libva_jll': '2.23.0 - *', 'libvorbis_jll': '1.3.8 - *', 'x264_jll': '10164.0.1 - *', 'x265_jll': '4.1.0 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: ModelingToolkit
  • your compat leaves ModelingToolkit 11.41.0
  • ModelingToolkit 11.41.0 requires Combinatorics 1.0.2 (through
    SymbolicUtils)
  • your compat leaves Combinatorics 1.1.0
  Fix it by any one of:
    1. relax your compat on Combinatorics
       → allows: Combinatorics 1.0.2, ModelingToolkit 11.41.0
    2. drop requirement ModelingToolkit
       → allows: Combinatorics 1.1.0
  Blocked fixes:
    • relaxing your compat on ModelingToolkit would not help unless you also
      relaxed your compat on LogExpFunctions and relaxed your compat on
      OrderedCollections.

There may be more to say about some of these.

69. Yao+manifest-add-Turing

reqs: ['Yao', 'YaoBlocks', 'YaoArrayRegister', 'LuxurySparse', 'Turing']

compat: {'AbstractTrees': '0.4.5 - *', 'Adapt': '4.7.0 - *', 'AliasTables': '1.1.3 - *', 'ArnoldiMethod': '0.4.0 - *', 'Automa': '1.2.0 - *', 'BaseDirs': '1.4.0 - *', 'BatchedRoutines': '0.2.2 - *', 'BitBasis': '0.9.10 - *', 'Bzip2_jll': '1.0.9 - *', 'CEnum': '0.5.0 - *', 'CacheServers': '0.2.0 - *', 'Cairo': '1.1.1 - *', 'Cairo_jll': '1.18.7 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CliqueTrees': '1.19.6 - *', 'Collects': '1.1.0 - *', 'ColorTypes': '0.12.1 - *', 'ColorVectorSpace': '0.11.0 - *', 'Colors': '0.13.1 - *', 'Combinatorics': '1.1.0 - *', 'Compat': '4.18.1 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.19.6 - *', 'DocStringExtensions': '0.9.5 - *', 'EarCut_jll': '2.2.4 - *', 'Expat_jll': '2.8.3 - *', 'FFMPEG': '0.4.5 - *', 'FFMPEG_jll': '8.1.2 - *', 'FileIO': '1.20.0 - *', 'FillArrays': '1.17.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'FixedSizeArrays': '1.3.0 - *', 'Fontconfig_jll': '2.17.1 - *', 'FreeType': '4.1.1 - *', 'FreeType2_jll': '2.14.3 - *', 'FreeTypeAbstraction': '0.10.8 - *', 'FriBidi_jll': '1.0.17 - *', 'GeometryBasics': '0.5.12 - *', 'GettextRuntime_jll': '0.22.4 - *', 'Glib_jll': '2.88.3 - *', 'Graphics': '1.1.3 - *', 'Graphite2_jll': '1.3.16 - *', 'Graphs': '1.14.0 - *', 'HarfBuzz_jll': '100.14003.0 - *', 'Inflate': '0.1.5 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '1.8.0 - *', 'JpegTurbo_jll': '3.2.0 - *', 'KrylovKit': '0.10.4 - *', 'LAME_jll': '3.100.3 - *', 'LERC_jll': '4.1.0 - *', 'LLVMOpenMP_jll': '22.1.7 - *', 'LaTeXStrings': '1.4.1 - *', 'LegibleLambdas': '0.3.0 - *', 'Libffi_jll': '3.4.7 - *', 'Libiconv_jll': '1.18.0 - *', 'Libmount_jll': '2.42.0 - *', 'Librsvg_jll': '2.58.5 - *', 'Libtiff_jll': '4.7.3 - *', 'Libuuid_jll': '2.42.0 - *', 'LogExpFunctions': '1.0.1 - *', 'Luxor': '4.5.0 - *', 'LuxurySparse': '0.8.2 - *', 'MLStyle': '0.4.17 - *', 'MPC_jll': '1.4.1 - *', 'MacroTools': '0.5.16 - *', 'MathTeXEngine': '0.6.9 - *', 'Missings': '1.2.0 - *', 'NaNMath': '1.1.4 - *', 'OMEinsum': '0.9.4 - *', 'OMEinsumContractionOrders': '1.3.0 - *', 'Ogg_jll': '1.3.6 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Opus_jll': '1.6.1 - *', 'OrderedCollections': '2.0.1 - *', 'PackageExtensionCompat': '1.0.2 - *', 'Pango_jll': '1.58.2 - *', 'Parsers': '3.0.0 - *', 'Pixman_jll': '0.46.4 - *', 'PolygonAlgorithms': '0.4.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PtrArrays': '1.4.0 - *', 'RecipesBase': '1.3.4 - *', 'Reexport': '1.2.2 - *', 'RelocatableFolders': '1.0.1 - *', 'Requires': '1.3.1 - *', 'Rsvg': '1.1.0 - *', 'Scratch': '1.3.0 - *', 'SimpleTraits': '0.9.6 - *', 'SortingAlgorithms': '1.2.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StructUtils': '2.8.5 - *', 'Suppressor': '0.2.8 - *', 'SymEngine': '0.13.2 - *', 'SymEngine_jll': '0.12.0 - *', 'TensorCore': '0.1.1 - *', 'TranscodingStreams': '0.11.3 - *', 'TreeWidthSolver': '0.3.5 - *', 'TupleTools': '1.6.0 - *', 'Turing': '0.48', 'UnicodeFun': '0.4.1 - *', 'VectorInterface': '0.6.0 - *', 'XML2_jll': '2.13.9 - *', 'XZ_jll': '5.8.3 - *', 'Xorg_libX11_jll': '1.8.13 - *', 'Xorg_libXau_jll': '1.0.13 - *', 'Xorg_libXdmcp_jll': '1.1.6 - *', 'Xorg_libXext_jll': '1.3.8 - *', 'Xorg_libXfixes_jll': '6.0.2 - *', 'Xorg_libXrender_jll': '0.9.12 - *', 'Xorg_libpciaccess_jll': '0.19.0 - *', 'Xorg_libxcb_jll': '1.17.1 - *', 'Xorg_xtrans_jll': '1.6.0 - *', 'Yao': '0.9.3 - *', 'YaoAPI': '0.4.9 - *', 'YaoArrayRegister': '0.9.13 - *', 'YaoBlocks': '0.14.3 - *', 'YaoPlots': '0.9.6 - *', 'YaoSym': '0.6.12 - *', 'YaoToEinsum': '0.2.9 - *', 'Zstd_jll': '1.5.7 - *', 'gdk_pixbuf_jll': '2.42.13 - *', 'libaom_jll': '3.14.1 - *', 'libass_jll': '0.17.5 - *', 'libdrm_jll': '2.4.134 - *', 'libfdk_aac_jll': '2.0.4 - *', 'libpng_jll': '1.6.58 - *', 'libva_jll': '2.23.0 - *', 'libvorbis_jll': '1.3.8 - *', 'x264_jll': '10164.0.1 - *', 'x265_jll': '4.1.0 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Turing
  • your compat leaves LogExpFunctions 1.0.1
  • LogExpFunctions 1.0.1 or absent constrains Bijectors ≤0.9.7
  • Bijectors ≤0.9.7 or absent, LogExpFunctions 1.0.1 or absent and Turing
    together require Adapt ≤4.6.1 (through Distributions, DistributionsAD,
    DynamicPPL, Flux, SpecialFunctions, StatsFuns and Tracker)
  • your compat leaves Adapt 4.7.0
  The only minimal fix: drop requirement Turing
    → allows: Adapt 4.7.0, LogExpFunctions 1.0.1
  Blocked fixes:
    • relaxing your compat on Adapt does not help.
    • relaxing your compat on Turing does not help.
    • relaxing your compat on LogExpFunctions would not help unless you also
      relaxed your compat on OrderedCollections.

There may be more to say about some of these.

70. Bloqade+bump-CairoMakie

reqs: ['Bloqade', 'CairoMakie', 'ForwardDiff', 'Yao']

compat: {'Bloqade': '0.2.5 - 0.2', 'CairoMakie': '0.15.14 - 0.15', 'ForwardDiff': '0.10.39 - 0.10', 'Yao': '0.9.1 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Bloqade
  • your compat leaves Bloqade 0.2.5
  • Bloqade 0.2.5 requires CairoMakie ≤0.12.18
  • your compat leaves CairoMakie 0.15.14
  Fix it by any one of:
    1. relax your compat on Bloqade
       → allows: Bloqade 0.2.3, CairoMakie 0.15.14
    2. relax your compat on CairoMakie
       → allows: Bloqade 0.2.5, CairoMakie 0.12.18
    3. drop requirement Bloqade
       → allows: CairoMakie 0.15.14
  Blocked fixes:
    • dropping requirement CairoMakie does not help.

71. Bloqade+bump-ForwardDiff

reqs: ['Bloqade', 'CairoMakie', 'ForwardDiff', 'Yao']

compat: {'Bloqade': '0.2.5 - 0.2', 'CairoMakie': '0.12.18 - 0.12', 'ForwardDiff': '1.4.5 - 1', 'Yao': '0.9.1 - 0.9'}

Unsatisfiable — 1 conflict:

Conflict 1: Bloqade
  • Bloqade requires ForwardDiff 0.10.13–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  Fix it by any one of:
    1. relax your compat on ForwardDiff
       → allows: Bloqade 0.2.5, ForwardDiff 0.10.39
    2. drop requirement Bloqade
       → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • relaxing your compat on Bloqade does not help.
    • dropping requirement ForwardDiff does not help.

72. CSV+bump-Parsers

reqs: ['CSV', 'Parsers', 'Tables', 'SentinelArrays']

compat: {'CSV': '0.10.17 - 0.10', 'Parsers': '3', 'SentinelArrays': '1.4.10 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: CSV
  • your compat leaves CSV 0.10.17
  • CSV 0.10.17 requires Parsers 2.5.0–2.8.8
  • your compat leaves Parsers 3.0.0
  Fix it by any one of:
    1. relax your compat on CSV
       → allows: CSV 0.3.1, Parsers 3.0.0
    2. relax your compat on Parsers
       → allows: CSV 0.10.17, Parsers 2.8.8
    3. drop requirement CSV
       → allows: Parsers 3.0.0
  Blocked fixes:
    • dropping requirement Parsers does not help.

73. Catlab+big10-partial

reqs: ['Catlab', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'JSON', 'DataStructures', 'Tables', 'OrderedCollections', 'MacroTools']

compat: {'Catlab': '0.17.6 - 0.17', 'DataStructures': '0.19.6 - 0.19', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Catlab
  • Catlab requires JSON ≤0.21.4 (through Compose and GATlab)
  • your compat leaves JSON 1.8.0
  Fix it by any one of:
    1. relax your compat on JSON
       → allows: Catlab 0.17.6, JSON 0.21.4
    2. drop requirement Catlab
       → allows: JSON 1.8.0
  Blocked fixes:
    • relaxing your compat on Catlab does not help.
    • dropping requirement JSON does not help.

74. Catlab+manifest-add-Turing

reqs: ['Catlab', 'StaticArrays', 'DataStructures', 'JSON3', 'Turing']

compat: {'ACSets': '0.2.29 - *', 'AlgebraicInterfaces': '0.1.4 - *', 'Catlab': '0.17.6 - *', 'ColorTypes': '0.12.1 - *', 'Colors': '0.13.1 - *', 'Combinatorics': '1.1.0 - *', 'CompTime': '0.1.2 - *', 'Compat': '4.18.1 - *', 'Compose': '0.9.7 - *', 'Crayons': '4.2.0 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.19.6 - *', 'DataValueInterfaces': '1.0.0 - *', 'ExprTools': '0.1.11 - *', 'FixedPointNumbers': '0.8.6 - *', 'GATlab': '0.2.4 - *', 'IterTools': '1.10.0 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '0.21.4 - *', 'JSON3': '1.14.3 - *', 'LaTeXStrings': '1.4.1 - *', 'Libiconv_jll': '1.18.0 - *', 'LightXML': '0.9.3 - *', 'MLStyle': '0.4.17 - *', 'MacroTools': '0.5.16 - *', 'Measures': '0.3.3 - *', 'OrderedCollections': '2.0.1 - *', 'PEG': '1.0.4 - *', 'Parsers': '2.8.8 - *', 'Permutations': '0.4.23 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrettyTables': '3.4.8 - *', 'Reexport': '1.2.2 - *', 'Requires': '1.3.1 - *', 'RuntimeGeneratedFunctions': '0.5.25 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StringManipulation': '0.5.0 - *', 'StructEquality': '2.1.0 - *', 'StructTypes': '1.11.0 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'Turing': '0.48', 'XML2_jll': '2.15.3 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Turing
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Turing together require
    OrderedCollections ≤2.0.0 (through AbstractPPL, FlexiChains, MCMCChain and
    MCMCChains)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: DataStructures 0.19.6, OrderedCollections 1.8.2, Turing
         0.48.0
    2. drop requirement Turing
       → allows: DataStructures 0.19.6, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Turing does not help.
    • dropping requirement DataStructures does not help.

Costlier fixes also exist.

75. DataFrames+manifest-add-CSV

reqs: ['DataFrames', 'DataStructures', 'Compat', 'PrettyTables', 'CSV']

compat: {'CSV': '0.10.17 - 0.10', 'Compat': '4.18.1 - *', 'Crayons': '4.2.0 - *', 'DataAPI': '1.16.0 - *', 'DataFrames': '1.8.2 - *', 'DataStructures': '0.19.6 - *', 'DataValueInterfaces': '1.0.0 - *', 'InlineStrings': '1.4.6 - *', 'InvertedIndices': '1.3.1 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'LaTeXStrings': '1.4.1 - *', 'Missings': '1.2.0 - *', 'OrderedCollections': '2.0.1 - *', 'Parsers': '3.0.0 - *', 'PooledArrays': '1.4.3 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrettyTables': '3.4.8 - *', 'Reexport': '1.2.2 - *', 'SentinelArrays': '1.4.10 - *', 'SortingAlgorithms': '1.2.3 - *', 'Statistics': '1.11.5 - *', 'StringManipulation': '0.5.0 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: CSV
  • your compat leaves CSV 0.10.17
  • CSV 0.10.17 requires Parsers 2.5.0–2.8.8
  • your compat leaves Parsers 3.0.0
  Fix it by any one of:
    1. relax your compat on Parsers
       → allows: CSV 0.10.17, Parsers 2.8.8
    2. drop requirement CSV
       → allows: Parsers 3.0.0
  Blocked fixes:
    • relaxing your compat on CSV does not help.

Costlier fixes also exist.

76. DiffEqFlux+big10-upgrade

reqs: ['DiffEqFlux', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures']

compat: {'DataStructures': '0.19.6 - 0.19', 'DiffEqFlux': '4.10.2 - 4', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'JLLWrappers': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: DiffEqFlux
  • your compat leaves DiffEqFlux 4.10.2
  • DiffEqFlux 4.10.2 requires Distributions ≤0.25.126
  • your compat leaves Distributions 0.25.131
  Fix it by any one of:
    1. relax your compat on DiffEqFlux
       → allows: DiffEqFlux 4.8.0, Distributions 0.25.131
    2. relax your compat on Distributions
       → allows: DiffEqFlux 4.10.2, Distributions 0.25.126
    3. drop requirement DiffEqFlux
       → allows: Distributions 0.25.131
  Blocked fixes:
    • dropping requirement Distributions does not help.

77. DynamicalSystems+big10-upgrade

reqs: ['DynamicalSystems', 'DynamicalSystemsBase', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions']

compat: {'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'DynamicalSystems': '3.7.0 - 3', 'DynamicalSystemsBase': '3.19.3 - 3', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: DynamicalSystems
  • your compat leaves DynamicalSystems 3.7.0
  • DynamicalSystems 3.7.0 requires Distributions ≤0.25.130 (through
    Attractors)
  • your compat leaves Distributions 0.25.131
  Fix it by any one of:
    1. relax your compat on Distributions
       → allows: Distributions 0.25.127, DynamicalSystems 3.7.0
    2. drop requirement DynamicalSystems
       → allows: Distributions 0.25.131
  Blocked fixes:
    • relaxing your compat on DynamicalSystems does not help.
    • dropping requirement Distributions does not help.

Costlier fixes also exist.

78. DynamicalSystems+big20-upgrade

reqs: ['DynamicalSystems', 'DynamicalSystemsBase', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'FFTW', 'Graphs', 'RecipesBase', 'MacroTools']

compat: {'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'DynamicalSystems': '3.7.0 - 3', 'DynamicalSystemsBase': '3.19.3 - 3', 'FFTW': '1.10.0 - 1', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: DynamicalSystems
  • your compat leaves DataStructures 0.19.6
  • your compat leaves Distributions 0.25.131
  • incompatible constraints on ChaosTools:
      — ChaosTools ≤1.8.0 requires DataStructures ≤0.19.5 (through StatsBase)
      — ChaosTools ≥1.6.0 requires Distributions ≤0.25.130 (through Roots)
      — DynamicalSystems requires ChaosTools
  Fix it by any one of:
    1. relax your compat on Distributions
       → allows: ChaosTools 3.5.4, DataStructures 0.19.6, Distributions
         0.25.127, DynamicalSystems 3.7.0
    2. drop requirement DynamicalSystems
       → allows: DataStructures 0.19.6, Distributions 0.25.131
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on DynamicalSystems does not help.
    • dropping requirement Distributions does not help.

Costlier fixes also exist.

79. Gadfly+big10-partial

reqs: ['Gadfly', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions']

compat: {'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'Gadfly': '1.4.1 - 1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Gadfly
  • Gadfly requires JSON ≤0.21.4 (through Compose)
  • your compat leaves JSON 1.8.0
  Fix it by any one of:
    1. relax your compat on JSON
       → allows: Gadfly 1.4.1, JSON 0.21.4
    2. drop requirement Gadfly
       → allows: JSON 1.8.0
  Blocked fixes:
    • relaxing your compat on Gadfly does not help.
    • dropping requirement JSON does not help.

80. Gadfly+bump-DataStructures

reqs: ['Gadfly', 'Distributions', 'JSON', 'DataStructures']

compat: {'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'Gadfly': '1.4.1 - 1', 'JSON': '0.21.4 - 0.21'}

Unsatisfiable — 1 conflict:

Conflict 1: Gadfly
  • Gadfly requires DataStructures ≤0.18.22 (through Compose)
  • your compat leaves DataStructures 0.19.6
  Fix it by any one of:
    1. relax your compat on DataStructures
       → allows: DataStructures 0.18.22, Gadfly 1.4.1
    2. drop requirement Gadfly
       → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on Gadfly does not help.
    • dropping requirement DataStructures does not help.

81. Gen+big10-partial

reqs: ['Gen', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions']

compat: {'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'Gen': '0.4.8 - 0.4', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen
  • Gen requires JSON 0.20.0–0.21.4
  • your compat leaves JSON 1.8.0
  Fix it by any one of:
    1. relax your compat on JSON
       → allows: Gen 0.4.8, JSON 0.21.4
    2. drop requirement Gen
       → allows: JSON 1.8.0
  Blocked fixes:
    • relaxing your compat on Gen does not help.
    • dropping requirement JSON does not help.

82. Gen+big20-upgrade

reqs: ['Gen', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'OrderedCollections', 'MacroTools', 'Parameters', 'Compat', 'ChainRulesCore', 'Preferences', 'QuadGK', 'Roots']

compat: {'ChainRulesCore': '1.26.1 - 1', 'Compat': '4.18.1 - 4', 'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'Gen': '0.4.8 - 0.4', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'Parameters': '0.13.1 - 0.13', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'QuadGK': '2.11.3 - 2', 'Reexport': '1.2.2 - 1', 'Roots': '3.0.8 - 3', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen
  • Gen requires DataStructures 0.15.0–0.18.22
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Gen
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Gen does not help.

Costlier fixes also exist.

83. Gen+bump-ForwardDiff

reqs: ['Gen', 'Distributions', 'ForwardDiff', 'JSON']

compat: {'Distributions': '0.25.131 - 0.25', 'ForwardDiff': '1.4.5 - 1', 'Gen': '0.4.8 - 0.4', 'JSON': '0.21.4 - 0.21'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen
  • Gen requires ForwardDiff 0.10.10–0.10.39
  • your compat leaves ForwardDiff 1.4.5
  Fix it by any one of:
    1. relax your compat on ForwardDiff
       → allows: ForwardDiff 0.10.39, Gen 0.4.8
    2. drop requirement Gen
       → allows: ForwardDiff 1.4.5
  Blocked fixes:
    • relaxing your compat on Gen does not help.
    • dropping requirement ForwardDiff does not help.

84. Gen+manifest-add-Lux

reqs: ['Gen', 'Distributions', 'ForwardDiff', 'JSON', 'Lux']

compat: {'Accessors': '0.1.45 - *', 'AliasTables': '1.1.3 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CommonSolve': '0.2.14 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConstructionBase': '1.6.0 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.18.22 - *', 'DensityInterface': '0.4.0 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'FillArrays': '1.17.0 - *', 'ForwardDiff': '0.10.39 - *', 'FunctionWrappers': '1.1.3 - *', 'FunctionalCollections': '0.5.0 - *', 'Gamma': '1.1.0 - *', 'Gen': '0.4.8 - *', 'HypergeometricFunctions': '0.3.30 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '0.21.4 - *', 'LogExpFunctions': '0.3.29 - *', 'Lux': '1.31.4 - 1', 'MacroTools': '0.5.16 - *', 'Missings': '1.2.0 - *', 'NaNMath': '1.1.4 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '1.8.2 - *', 'PDMats': '0.11.41 - *', 'Parameters': '0.12.3 - *', 'Parsers': '2.8.8 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PtrArrays': '1.4.0 - *', 'QuadGK': '2.11.3 - *', 'Reexport': '1.2.2 - *', 'ReverseDiff': '1.17.0 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'SortingAlgorithms': '1.2.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StatsFuns': '2.2.1 - *', 'UnPack': '1.0.2 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen and Lux
  • Gen requires ForwardDiff 0.10.10–0.10.39
  • ForwardDiff 0.10.10–0.10.39 constrains Lux ≤1.31.3
  • your compat leaves Lux 1.31.4
  Fix it by any one of:
    1. relax your compat on Lux
       → allows: ForwardDiff 0.10.39, Gen 0.4.8, Lux 1.31.2
    2. drop requirement Gen
       → allows: ForwardDiff 1.4.5, Lux 1.31.4
    3. drop requirement Lux
       → allows: ForwardDiff 0.10.39, Gen 0.4.8
  Blocked fixes:
    • relaxing your compat on ForwardDiff does not help.
    • relaxing your compat on Gen does not help.
    • dropping requirement ForwardDiff does not help.

85. Gen+manifest-add-ModelingToolkit

reqs: ['Gen', 'Distributions', 'ForwardDiff', 'JSON', 'ModelingToolkit']

compat: {'Accessors': '0.1.45 - *', 'AliasTables': '1.1.3 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CommonSolve': '0.2.14 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConstructionBase': '1.6.0 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.18.22 - *', 'DensityInterface': '0.4.0 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'FillArrays': '1.17.0 - *', 'ForwardDiff': '0.10.39 - *', 'FunctionWrappers': '1.1.3 - *', 'FunctionalCollections': '0.5.0 - *', 'Gamma': '1.1.0 - *', 'Gen': '0.4.8 - *', 'HypergeometricFunctions': '0.3.30 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '0.21.4 - *', 'LogExpFunctions': '0.3.29 - *', 'MacroTools': '0.5.16 - *', 'Missings': '1.2.0 - *', 'ModelingToolkit': '11.41.0 - 11', 'NaNMath': '1.1.4 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '1.8.2 - *', 'PDMats': '0.11.41 - *', 'Parameters': '0.12.3 - *', 'Parsers': '2.8.8 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PtrArrays': '1.4.0 - *', 'QuadGK': '2.11.3 - *', 'Reexport': '1.2.2 - *', 'ReverseDiff': '1.17.0 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'SortingAlgorithms': '1.2.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StatsFuns': '2.2.1 - *', 'UnPack': '1.0.2 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Gen and ModelingToolkit
  • Gen requires ForwardDiff 0.10.10–0.10.39
  • ForwardDiff 0.10.10–0.10.39 constrains ModelingToolkit ≤11.40.0
  • your compat leaves ModelingToolkit 11.41.0
  Fix it by any one of:
    1. relax your compat on ModelingToolkit
       → allows: ForwardDiff 0.10.39, Gen 0.4.8, ModelingToolkit 10.32.1
    2. drop requirement Gen
       → allows: ForwardDiff 1.4.5, ModelingToolkit 11.41.0
    3. drop requirement ModelingToolkit
       → allows: ForwardDiff 0.10.39, Gen 0.4.8
  Blocked fixes:
    • relaxing your compat on ForwardDiff does not help.
    • relaxing your compat on Gen does not help.
    • dropping requirement ForwardDiff does not help.

86. GeoStats+big20-partial

reqs: ['GeoStats', 'GeoStatsFunctions', 'GeoStatsValidation', 'GeoStatsModels', 'GeoStatsTransforms', 'GeoStatsProcesses', 'GeoStatsBase', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'HTTP', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'FFTW', 'Unitful', 'RecipesBase']

compat: {'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'ForwardDiff': '1.4.5 - 1', 'GeoStats': '0.90', 'GeoStatsBase': '0.49.3 - 0.49', 'GeoStatsFunctions': '0.16.5 - 0.16', 'GeoStatsModels': '0.13.12 - 0.13', 'GeoStatsProcesses': '0.13.2 - 0.13', 'GeoStatsTransforms': '0.14.20 - 0.14', 'GeoStatsValidation': '0.4.10 - 0.4', 'HTTP': '2.6.7 - 2', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Unitful': '1.29.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: GeoStats
  • your compat leaves GeoStats 0.90.0
  • GeoStats 0.90.0 requires HTTP ≤1.11.0 (through CoordGridTransforms and
    DataDeps)
  • your compat leaves HTTP 2.6.7
  Fix it by any one of:
    1. relax your compat on HTTP
       → allows: GeoStats 0.90.0, HTTP 1.11.0
    2. drop requirement GeoStats
       → allows: HTTP 2.6.7
  Blocked fixes:
    • relaxing your compat on GeoStats does not help.
    • dropping requirement HTTP does not help.

Costlier fixes also exist.

There may be more to say about some of these.

87. GeometricFlux+big10-partial

reqs: ['GeometricFlux', 'Statistics', 'JLLWrappers', 'StaticArrays', 'DataFrames', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures']

compat: {'DataFrames': '1.8.2 - 1', 'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'GeometricFlux': '0.14', 'JLLWrappers': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: GeometricFlux
  • GeometricFlux requires DataStructures ≤0.18.22 (through LightGraphs)
  • your compat leaves DataStructures 0.19.6
  Fix it by any one of:
    1. relax your compat on DataStructures
       → allows: DataStructures 0.18.22, GeometricFlux 0.14.0
    2. drop requirement GeometricFlux
       → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on GeometricFlux does not help.
    • dropping requirement DataStructures does not help.

88. GeometricFlux+bump-Flux

reqs: ['GeometricFlux', 'StatsBase', 'Flux', 'DataStructures']

compat: {'DataStructures': '0.18.22 - 0.18', 'Flux': '0.16.11 - 0.16', 'GeometricFlux': '0.14', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: GeometricFlux
  • GeometricFlux requires Flux ≤0.14.25
  • your compat leaves Flux 0.16.11
  Fix it by any one of:
    1. relax your compat on Flux
       → allows: Flux 0.14.25, GeometricFlux 0.14.0
    2. drop requirement GeometricFlux
       → allows: Flux 0.16.11
  Blocked fixes:
    • relaxing your compat on GeometricFlux does not help.
    • dropping requirement Flux does not help.

89. GeometricFlux+manifest-add-Symbolics

reqs: ['GeometricFlux', 'StatsBase', 'Flux', 'DataStructures', 'Symbolics']

compat: {'AbstractFFTs': '1.5.0 - *', 'AbstractTrees': '0.4.5 - *', 'Adapt': '4.7.0 - *', 'AliasTables': '1.1.3 - *', 'ArnoldiMethod': '0.4.0 - *', 'Atomix': '1.1.3 - *', 'AtomsBase': '0.5.3 - *', 'BFloat16s': '0.6.1 - *', 'BitFlags': '0.1.10 - *', 'CEnum': '0.5.0 - *', 'CSV': '0.10.17 - *', 'ChainRules': '1.73.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'Chemfiles': '0.10.43 - *', 'Chemfiles_jll': '0.10.4 - *', 'ChunkCodecCore': '1.0.2 - *', 'ChunkCodecLibZlib': '1.1.0 - *', 'ChunkCodecLibZstd': '1.0.0 - *', 'CodeTracking': '3.0.2 - *', 'CodecZlib': '0.7.9 - *', 'ColorSchemes': '3.31.0 - *', 'ColorTypes': '0.12.1 - *', 'ColorVectorSpace': '0.11.0 - *', 'Colors': '0.13.1 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'ConcurrentUtilities': '2.6.0 - *', 'ConstructionBase': '1.6.0 - *', 'Crayons': '4.2.0 - *', 'DataAPI': '1.16.0 - *', 'DataDeps': '0.7.14 - *', 'DataFrames': '1.8.2 - *', 'DataStructures': '0.18.22 - *', 'DataValueInterfaces': '1.0.0 - *', 'DelimitedFiles': '1.9.1 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'Distances': '0.10.12 - *', 'DocStringExtensions': '0.9.5 - *', 'EnzymeCore': '0.8.21 - *', 'ExceptionUnwrapping': '0.1.11 - *', 'FileIO': '1.20.0 - *', 'FilePathsBase': '0.9.24 - *', 'FillArrays': '1.17.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'Flux': '0.14.25 - *', 'ForwardDiff': '1.4.5 - *', 'Functors': '0.4.12 - *', 'GPUArrays': '11.5.14 - *', 'GPUArraysCore': '0.2.0 - *', 'GZip': '0.6.2 - *', 'GeometricFlux': '0.14.0 - *', 'Glob': '1.5.0 - *', 'GraphSignals': '0.9.2 - *', 'Graphs': '1.11.2 - *', 'HDF5': '0.17.3 - *', 'HDF5_jll': '2.1.2 - *', 'HTTP': '1.11.0 - *', 'HashArrayMappedTries': '0.2.0 - *', 'Hwloc_jll': '2.14.0 - *', 'IRTools': '0.4.20 - *', 'ImageBase': '0.1.7 - *', 'ImageCore': '0.10.5 - *', 'ImageShow': '0.3.8 - *', 'Inflate': '0.1.5 - *', 'InlineStrings': '1.4.6 - *', 'InternedStrings': '0.7.0 - *', 'InverseFunctions': '0.1.17 - *', 'InvertedIndices': '1.3.1 - *', 'IrrationalConstants': '0.2.6 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLD2': '0.6.6 - *', 'JLLWrappers': '1.8.0 - *', 'JSON3': '1.14.3 - *', 'KernelAbstractions': '0.9.42 - *', 'LLVM': '9.13.1 - *', 'LLVMExtra_jll': '0.0.47 - *', 'LaTeXStrings': '1.4.1 - *', 'LazyModules': '0.3.1 - *', 'Libiconv_jll': '1.18.0 - *', 'LogExpFunctions': '0.3.29 - *', 'LoggingExtras': '1.2.0 - *', 'MAT': '0.11.5 - *', 'MLCore': '1.1.0 - *', 'MLDataDevices': '1.5.3 - *', 'MLDatasets': '0.7.21 - *', 'MLUtils': '0.4.13 - *', 'MPIABI_jll': '0.1.5 - *', 'MPICH_jll': '5.0.1 - *', 'MPIPreferences': '0.1.12 - *', 'MPItrampoline_jll': '5.5.6 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MbedTLS': '1.1.10 - *', 'MbedTLS_jll': '2.28.1010 - *', 'MicrosoftMPI_jll': '10.1.4 - *', 'Missings': '1.2.0 - *', 'MosaicViews': '0.3.4 - *', 'NNlib': '0.9.45 - *', 'NPZ': '0.4.3 - *', 'NaNMath': '1.1.4 - *', 'NearestNeighbors': '0.4.29 - *', 'OffsetArrays': '1.17.0 - *', 'OneHotArrays': '0.2.11 - *', 'OpenMPI_jll': '5.0.11 - *', 'OpenSSL': '1.6.1 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optimisers': '0.3.4 - *', 'OrderedCollections': '1.8.2 - *', 'PackageExtensionCompat': '1.0.2 - *', 'PaddedViews': '0.5.12 - *', 'Parsers': '2.8.8 - *', 'PeriodicTable': '1.2.1 - *', 'Pickle': '0.3.7 - *', 'PooledArrays': '1.4.3 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrettyTables': '3.4.8 - *', 'ProgressLogging': '0.1.6 - *', 'PtrArrays': '1.4.0 - *', 'RealDot': '0.1.0 - *', 'Reexport': '1.2.2 - *', 'Requires': '1.3.1 - *', 'ScopedValues': '1.6.2 - *', 'Scratch': '1.3.0 - *', 'SentinelArrays': '1.4.10 - *', 'Setfield': '1.1.2 - *', 'ShowCases': '0.1.0 - *', 'SimpleBufferStream': '1.2.0 - *', 'SimpleTraits': '0.9.6 - *', 'SimpleWeightedGraphs': '1.5.1 - *', 'SortingAlgorithms': '1.2.3 - *', 'SparseInverseSubset': '0.1.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StackViews': '0.1.2 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StridedViews': '0.4.6 - *', 'StringEncodings': '0.3.7 - *', 'StringManipulation': '0.5.0 - *', 'StructArrays': '0.7.3 - *', 'StructTypes': '1.11.0 - *', 'Symbolics': '7.39.0 - 7', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TensorCore': '0.1.1 - *', 'TranscodingStreams': '0.11.3 - *', 'URIs': '1.7.0 - *', 'Unitful': '1.29.0 - *', 'UnitfulAtomic': '1.0.0 - *', 'UnsafeAtomics': '0.3.2 - *', 'WeakRefStrings': '1.4.3 - *', 'Word2Vec': '0.5.3 - *', 'Word2Vec_jll': '0.1.0 - *', 'WorkerUtilities': '1.6.1 - *', 'XML2_jll': '2.13.9 - *', 'Xorg_libpciaccess_jll': '0.19.0 - *', 'ZipFile': '0.10.1 - *', 'Zstd_jll': '1.5.7 - *', 'Zygote': '0.6.77 - *', 'ZygoteRules': '0.2.8 - *', 'aws_c_auth_jll': '0.9.6 - *', 'aws_c_cal_jll': '0.9.13 - *', 'aws_c_common_jll': '0.12.6 - *', 'aws_c_compression_jll': '0.3.2 - *', 'aws_c_http_jll': '0.10.15 - *', 'aws_c_io_jll': '0.26.3 - *', 'aws_c_s3_jll': '0.11.5 - *', 'aws_c_sdkutils_jll': '0.2.4 - *', 'aws_checksums_jll': '0.2.10 - *', 'dlfcn_win32_jll': '1.4.2 - *', 'libaec_jll': '1.1.7 - *', 'mpif_jll': '0.1.7 - *', 's2n_tls_jll': '1.7.8 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: GeometricFlux and Symbolics
  • GeometricFlux constrains Symbolics ≤7.38.0 (through DataStructures and
    LightGraphs)
  • your compat leaves Symbolics 7.39.0
  Fix it by any one of:
    1. relax your compat on Symbolics
       → allows: GeometricFlux 0.14.0, Symbolics 6.58.0
    2. drop requirement GeometricFlux
       → allows: Symbolics 7.39.0
    3. drop requirement Symbolics
       → allows: GeometricFlux 0.14.0
  Blocked fixes:
    • relaxing your compat on GeometricFlux does not help.

90. ITensors+big20-partial

reqs: ['ITensors', 'Statistics', 'StaticArrays', 'PrecompileTools', 'DocStringExtensions', 'Tables', 'OrderedCollections', 'MacroTools', 'Requires', 'Compat', 'ChainRulesCore', 'Adapt', 'Preferences', 'FillArrays', 'ArgCheck', 'Setfield', 'Accessors', 'TimerOutputs', 'ConstructionBase', 'Functors', 'DataAPI']

compat: {'Accessors': '0.1.45 - 0.1', 'Adapt': '4.7.0 - 4', 'ArgCheck': '2.5.0 - 2', 'ChainRulesCore': '1.26.1 - 1', 'Compat': '4.18.1 - 4', 'ConstructionBase': '1.6.0 - 1', 'DataAPI': '1.16.0 - 1', 'DocStringExtensions': '0.9.5 - 0.9', 'FillArrays': '1.17.0 - 1', 'Functors': '0.5.3 - 0.5', 'ITensors': '0.9.30 - 0.9', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'Requires': '1.3.1 - 1', 'Setfield': '1.1.2 - 1', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'Tables': '1.14.0 - 1', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: ITensors
  • ITensors requires TimerOutputs 0.5.5–0.5.29
  • your compat leaves TimerOutputs 1.2.1
  Fix it by any one of:
    1. relax your compat on TimerOutputs
       → allows: ITensors 0.9.30, TimerOutputs 0.5.29
    2. drop requirement ITensors
       → allows: TimerOutputs 1.2.1
  Blocked fixes:
    • relaxing your compat on ITensors does not help.
    • dropping requirement TimerOutputs does not help.

91. Knet+manifest-bump-CUDA

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'AbstractFFTs': '1.5.0 - *', 'Adapt': '3.7.2 - *', 'Atomix': '0.1.0 - *', 'AutoGrad': '1.2.5 - *', 'BFloat16s': '0.2.0 - *', 'Bzip2_jll': '1.0.9 - *', 'CEnum': '0.4.2 - *', 'CUDA': '6.3.1 - 6', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'ColorTypes': '0.11.5 - *', 'ColorVectorSpace': '0.9.10 - *', 'Colors': '0.12.11 - *', 'Compat': '4.18.1 - *', 'DocStringExtensions': '0.9.5 - *', 'EnzymeCore': '0.8.21 - *', 'ExprTools': '0.1.11 - *', 'FFTW_jll': '3.3.12 - *', 'FileIO': '1.20.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'GPUArrays': '8.8.1 - *', 'GPUArraysCore': '0.1.5 - *', 'GPUCompiler': '0.17.3 - *', 'Ghostscript_jll': '9.55.1 - *', 'Giflib_jll': '5.2.3 - *', 'Graphics': '1.1.3 - *', 'ImageCore': '0.9.4 - *', 'ImageMagick': '1.4.2 - *', 'ImageMagick_jll': '7.1.2029 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLD2': '0.4.55 - *', 'JLLWrappers': '1.8.0 - *', 'JpegTurbo_jll': '3.2.0 - *', 'KernelAbstractions': '0.9.42 - *', 'Knet': '1.4.10 - *', 'LERC_jll': '4.1.0 - *', 'LLVM': '4.17.1 - *', 'LLVMExtra_jll': '0.0.18 - *', 'Libglvnd_jll': '1.7.1 - *', 'Libtiff_jll': '4.7.3 - *', 'LittleCMS_jll': '2.19.1 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MosaicViews': '0.3.4 - *', 'NNlib': '0.8.21 - *', 'NaNMath': '1.1.4 - *', 'OffsetArrays': '1.17.0 - *', 'OpenJpeg_jll': '2.5.5 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '1.8.2 - *', 'PaddedViews': '0.5.12 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'Random123': '1.7.1 - *', 'RandomNumbers': '1.6.0 - *', 'Reexport': '1.2.2 - *', 'Requires': '1.3.1 - *', 'SpecialFunctions': '2.9.0 - *', 'StackViews': '0.1.2 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'TensorCore': '0.1.1 - *', 'TimerOutputs': '0.5.29 - *', 'TranscodingStreams': '0.11.3 - *', 'UnsafeAtomics': '0.2.1 - *', 'XZ_jll': '5.8.3 - *', 'Xorg_libX11_jll': '1.8.13 - *', 'Xorg_libXau_jll': '1.0.13 - *', 'Xorg_libXdmcp_jll': '1.1.6 - *', 'Xorg_libXext_jll': '1.3.8 - *', 'Xorg_libxcb_jll': '1.17.1 - *', 'Xorg_xtrans_jll': '1.6.0 - *', 'Zstd_jll': '1.5.7 - *', 'libpng_jll': '1.6.58 - *', 'libwebp_jll': '1.6.0 - *', 'libzip_jll': '1.11.4 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires CUDA ≤3.13.1
  • your compat leaves CUDA 6.3.1
  Fix it by any one of:
    1. relax your compat on CUDA
       → allows: CUDA 3.13.1, Knet 1.4.10
    2. drop requirement Knet
       → allows: CUDA 6.3.1
  Blocked fixes:
    • relaxing your compat on Knet or dropping requirement CUDA would only
      help if you do both and also relaxed your compat on SpecialFunctions.

92. Knet+manifest-bump-NNlib

reqs: ['Knet', 'CUDA', 'NNlib', 'JLD2']

compat: {'AbstractFFTs': '1.5.0 - *', 'Adapt': '3.7.2 - *', 'Atomix': '0.1.0 - *', 'AutoGrad': '1.2.5 - *', 'BFloat16s': '0.2.0 - *', 'Bzip2_jll': '1.0.9 - *', 'CEnum': '0.4.2 - *', 'CUDA': '3.13.1 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'ColorTypes': '0.11.5 - *', 'ColorVectorSpace': '0.9.10 - *', 'Colors': '0.12.11 - *', 'Compat': '4.18.1 - *', 'DocStringExtensions': '0.9.5 - *', 'EnzymeCore': '0.8.21 - *', 'ExprTools': '0.1.11 - *', 'FFTW_jll': '3.3.12 - *', 'FileIO': '1.20.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'GPUArrays': '8.8.1 - *', 'GPUArraysCore': '0.1.5 - *', 'GPUCompiler': '0.17.3 - *', 'Ghostscript_jll': '9.55.1 - *', 'Giflib_jll': '5.2.3 - *', 'Graphics': '1.1.3 - *', 'ImageCore': '0.9.4 - *', 'ImageMagick': '1.4.2 - *', 'ImageMagick_jll': '7.1.2029 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLD2': '0.4.55 - *', 'JLLWrappers': '1.8.0 - *', 'JpegTurbo_jll': '3.2.0 - *', 'KernelAbstractions': '0.9.42 - *', 'Knet': '1.4.10 - *', 'LERC_jll': '4.1.0 - *', 'LLVM': '4.17.1 - *', 'LLVMExtra_jll': '0.0.18 - *', 'Libglvnd_jll': '1.7.1 - *', 'Libtiff_jll': '4.7.3 - *', 'LittleCMS_jll': '2.19.1 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MosaicViews': '0.3.4 - *', 'NNlib': '0.9.45 - 0.9', 'NaNMath': '1.1.4 - *', 'OffsetArrays': '1.17.0 - *', 'OpenJpeg_jll': '2.5.5 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '1.8.2 - *', 'PaddedViews': '0.5.12 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'Random123': '1.7.1 - *', 'RandomNumbers': '1.6.0 - *', 'Reexport': '1.2.2 - *', 'Requires': '1.3.1 - *', 'SpecialFunctions': '2.9.0 - *', 'StackViews': '0.1.2 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'TensorCore': '0.1.1 - *', 'TimerOutputs': '0.5.29 - *', 'TranscodingStreams': '0.11.3 - *', 'UnsafeAtomics': '0.2.1 - *', 'XZ_jll': '5.8.3 - *', 'Xorg_libX11_jll': '1.8.13 - *', 'Xorg_libXau_jll': '1.0.13 - *', 'Xorg_libXdmcp_jll': '1.1.6 - *', 'Xorg_libXext_jll': '1.3.8 - *', 'Xorg_libxcb_jll': '1.17.1 - *', 'Xorg_xtrans_jll': '1.6.0 - *', 'Zstd_jll': '1.5.7 - *', 'libpng_jll': '1.6.58 - *', 'libwebp_jll': '1.6.0 - *', 'libzip_jll': '1.11.4 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Knet
  • your compat leaves Knet 1.4.10
  • Knet 1.4.10 requires NNlib ≤0.9.44 (through BFloat16s and CUDA)
  • your compat leaves NNlib 0.9.45
  Fix it by any one of:
    1. relax your compat on NNlib
       → allows: Knet 1.4.10, NNlib 0.8.21
    2. drop requirement Knet
       → allows: NNlib 0.9.45
  Blocked fixes:
    • relaxing your compat on Knet or dropping requirement NNlib would only
      help if you do both and also relaxed your compat on SpecialFunctions and
      dropped requirement CUDA.

93. Metatheory+bump-DataStructures

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'DataStructures': '0.19.6 - 0.19', 'Metatheory': '2.0.2 - 2', 'TermInterface': '0.3.3 - 0.3', 'TimerOutputs': '0.5.29 - 0.5'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • Metatheory requires DataStructures 0.18.0–0.18.22
  • your compat leaves DataStructures 0.19.6
  Fix it by any one of:
    1. relax your compat on DataStructures
       → allows: DataStructures 0.18.22, Metatheory 2.0.2
    2. drop requirement Metatheory
       → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on Metatheory does not help.
    • dropping requirement DataStructures does not help.

94. Metatheory+bump-TermInterface

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'DataStructures': '0.18.22 - 0.18', 'Metatheory': '2.0.2 - 2', 'TermInterface': '2', 'TimerOutputs': '0.5.29 - 0.5'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • your compat leaves Metatheory 2.0.2
  • Metatheory 2.0.2 requires TermInterface 0.3.3
  • your compat leaves TermInterface 2.0.0
  Fix it by any one of:
    1. relax your compat on Metatheory
       → allows: Metatheory 0.4.0, TermInterface 2.0.0
    2. relax your compat on TermInterface
       → allows: Metatheory 2.0.2, TermInterface 0.3.3
    3. drop requirement Metatheory
       → allows: TermInterface 2.0.0
  Blocked fixes:
    • dropping requirement TermInterface does not help.

95. Metatheory+bump-TimerOutputs

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'DataStructures': '0.18.22 - 0.18', 'Metatheory': '2.0.2 - 2', 'TermInterface': '0.3.3 - 0.3', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • your compat leaves Metatheory 2.0.2
  • Metatheory 2.0.2 requires TimerOutputs 0.5.0–0.5.29
  • your compat leaves TimerOutputs 1.2.1
  Fix it by any one of:
    1. relax your compat on Metatheory
       → allows: Metatheory 0.4.0, TimerOutputs 1.2.1
    2. relax your compat on TimerOutputs
       → allows: Metatheory 2.0.2, TimerOutputs 0.5.29
    3. drop requirement Metatheory
       → allows: TimerOutputs 1.2.1
  Blocked fixes:
    • dropping requirement TimerOutputs does not help.

96. Metatheory+manifest-bump-TermInterface

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'AutoHashEquals': '2.2.0 - *', 'Compat': '4.18.1 - *', 'DataStructures': '0.18.22 - *', 'DocStringExtensions': '0.9.5 - *', 'ExprTools': '0.1.11 - *', 'Metatheory': '2.0.2 - *', 'OrderedCollections': '1.8.2 - *', 'Reexport': '1.2.2 - *', 'TermInterface': '2', 'TimerOutputs': '0.5.29 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • your compat leaves Metatheory 2.0.2
  • Metatheory 2.0.2 requires TermInterface 0.3.3
  • your compat leaves TermInterface 2.0.0
  Fix it by any one of:
    1. relax your compat on Metatheory
       → allows: Metatheory 0.1.1, TermInterface 2.0.0
    2. relax your compat on TermInterface
       → allows: Metatheory 2.0.2, TermInterface 0.3.3
    3. drop requirement Metatheory
       → allows: TermInterface 2.0.0
  Blocked fixes:
    • dropping requirement TermInterface does not help.

97. Metatheory+manifest-bump-TimerOutputs

reqs: ['Metatheory', 'DataStructures', 'TimerOutputs', 'TermInterface']

compat: {'AutoHashEquals': '2.2.0 - *', 'Compat': '4.18.1 - *', 'DataStructures': '0.18.22 - *', 'DocStringExtensions': '0.9.5 - *', 'ExprTools': '0.1.11 - *', 'Metatheory': '2.0.2 - *', 'OrderedCollections': '1.8.2 - *', 'Reexport': '1.2.2 - *', 'TermInterface': '0.3.3 - *', 'TimerOutputs': '1.2.1 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Metatheory
  • your compat leaves Metatheory 2.0.2
  • Metatheory 2.0.2 requires TimerOutputs 0.5.0–0.5.29
  • your compat leaves TimerOutputs 1.2.1
  Fix it by any one of:
    1. relax your compat on Metatheory
       → allows: Metatheory 0.1.1, TimerOutputs 1.2.1
    2. relax your compat on TimerOutputs
       → allows: Metatheory 2.0.2, TimerOutputs 0.5.29
    3. drop requirement Metatheory
       → allows: TimerOutputs 1.2.1
  Blocked fixes:
    • dropping requirement TimerOutputs does not help.

98. Oceananigans+big20-partial

reqs: ['Oceananigans', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'Tables', 'OrderedCollections', 'FFTW', 'RecipesBase', 'MacroTools', 'JLD2', 'FileIO', 'Requires', 'Distances', 'Compat', 'ChainRulesCore', 'Adapt', 'Preferences', 'OffsetArrays']

compat: {'Adapt': '4.7.0 - 4', 'ChainRulesCore': '1.26.1 - 1', 'Compat': '4.18.1 - 4', 'Distances': '0.10.12 - 0.10', 'DocStringExtensions': '0.9.5 - 0.9', 'FFTW': '1.10.0 - 1', 'FileIO': '1.20.0 - 1', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'Oceananigans': '0.111', 'OffsetArrays': '1.17.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Oceananigans
  • your compat leaves FFTW 1.10.0
  • FFTW 1.10.0 or absent and Oceananigans together require OrderedCollections
    ≤2.0.0 (through AbstractFFTs)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: FFTW 1.10.0, Oceananigans 0.111.0, OrderedCollections 1.8.2
    2. drop requirement Oceananigans
       → allows: FFTW 1.10.0, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on FFTW does not help.
    • relaxing your compat on Oceananigans does not help.
    • dropping requirement FFTW does not help.
    • dropping requirement OrderedCollections does not help.

Costlier fixes also exist.

99. POMDPs+manifest-add-Images

reqs: ['POMDPs', 'Distributions', 'NamedTupleTools', 'Graphs', 'Images']

compat: {'Accessors': '0.1.45 - *', 'AliasTables': '1.1.3 - *', 'ArnoldiMethod': '0.4.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CommonSolve': '0.2.14 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConstructionBase': '1.6.0 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.19.6 - *', 'DensityInterface': '0.4.0 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'FillArrays': '1.17.0 - *', 'Gamma': '1.2.0 - *', 'Graphs': '1.14.0 - *', 'HypergeometricFunctions': '0.3.30 - *', 'Images': '0.26.2 - 0.26', 'Inflate': '0.1.5 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'Missings': '1.2.0 - *', 'NamedTupleTools': '0.14.3 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '2.0.1 - *', 'PDMats': '0.11.41 - *', 'POMDPLinter': '0.1.3 - *', 'POMDPs': '1.0.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PtrArrays': '1.4.0 - *', 'QuadGK': '2.11.3 - *', 'Reexport': '1.2.2 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'SimpleTraits': '0.9.6 - *', 'SortingAlgorithms': '1.2.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StatsFuns': '2.2.1 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Images together require
    OrderedCollections ≤2.0.0 (through ImageFiltering and StatsBase)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: DataStructures 0.19.6, Images 0.26.2, OrderedCollections
         1.8.2
    2. drop requirement Images
       → allows: DataStructures 0.19.6, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Images does not help.

Costlier fixes also exist.

100. Pluto+big10-partial

reqs: ['Pluto', 'PlutoDependencyExplorer', 'JLLWrappers', 'PrecompileTools', 'HTTP', 'Tables', 'OrderedCollections', 'Compat', 'Preferences', 'Scratch', 'CodecZlib', 'URIs']

compat: {'CodecZlib': '0.7.9 - 0.7', 'Compat': '4.18.1 - 4', 'HTTP': '2.6.7 - 2', 'JLLWrappers': '1.8.0 - 1', 'OrderedCollections': '1.8.2 - 1', 'Pluto': '1.0.3 - 1', 'PlutoDependencyExplorer': '1.2.2 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'Scratch': '1.3.0 - 1', 'Tables': '1.14.0 - 1', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Pluto
  • Pluto requires HTTP ≤0.9.17, 1.0.2–1.11.0
  • your compat leaves HTTP 2.6.7
  Fix it by any one of:
    1. relax your compat on HTTP
       → allows: HTTP 1.11.0, Pluto 1.0.3
    2. drop requirement Pluto
       → allows: HTTP 2.6.7
  Blocked fixes:
    • relaxing your compat on Pluto does not help.
    • dropping requirement HTTP does not help.

101. Pluto+big10-upgrade

reqs: ['Pluto', 'PlutoDependencyExplorer', 'JLLWrappers', 'PrecompileTools', 'HTTP', 'Tables', 'OrderedCollections', 'Compat', 'Preferences', 'Scratch', 'CodecZlib', 'URIs']

compat: {'CodecZlib': '0.7.9 - 0.7', 'Compat': '4.18.1 - 4', 'HTTP': '2.6.7 - 2', 'JLLWrappers': '1.8.0 - 1', 'OrderedCollections': '2.0.1 - 2', 'Pluto': '1.0.3 - 1', 'PlutoDependencyExplorer': '1.2.2 - 1', 'PrecompileTools': '1.3.4 - 1', 'Preferences': '1.5.2 - 1', 'Scratch': '1.3.0 - 1', 'Tables': '1.14.0 - 1', 'URIs': '1.7.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Pluto
  • Pluto requires HTTP ≤0.9.17, 1.0.2–1.11.0
  • your compat leaves HTTP 2.6.7
  The only minimal fix: drop requirement Pluto
    → allows: HTTP 2.6.7
  Blocked fixes:
    • dropping requirement HTTP does not help.
    • relaxing your compat on HTTP or relaxing your compat on Pluto would only
      help if you do both.

102. Rasters+manifest-add-Turing

reqs: ['Rasters', 'ProgressMeter', 'DimensionalData', 'FillArrays', 'Turing']

compat: {'Adapt': '4.7.0 - *', 'CFTime': '0.2.10 - *', 'ColorTypes': '0.12.1 - *', 'CommonDataModel': '0.4.4 - *', 'ConstructionBase': '1.6.0 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.19.6 - *', 'DataValueInterfaces': '1.0.0 - *', 'DimensionalData': '0.30.2 - *', 'DiskArrays': '0.4.22 - *', 'Extents': '0.1.6 - *', 'FieldMetadata': '0.3.1 - *', 'FillArrays': '1.17.0 - *', 'FixedPointNumbers': '0.8.6 - *', 'Flatten': '0.4.3 - *', 'GeoFormatTypes': '0.4.5 - *', 'GeoInterface': '1.6.2 - *', 'GeometryOpsCore': '0.1.12 - *', 'Interfaces': '0.3.2 - *', 'IntervalSets': '0.7.14 - *', 'InvertedIndices': '1.3.1 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'LRUCache': '1.6.2 - *', 'MacroTools': '0.5.16 - *', 'Missings': '1.2.0 - *', 'OffsetArrays': '1.17.0 - *', 'OrderedCollections': '2.0.1 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'ProgressMeter': '1.11.0 - *', 'Rasters': '0.15.0 - *', 'RecipesBase': '1.3.4 - *', 'Reexport': '1.2.2 - *', 'Setfield': '1.1.2 - *', 'StableTasks': '0.1.7 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'Turing': '0.48'}

Unsatisfiable — 1 conflict:

Conflict 1: Turing
  • your compat leaves Adapt 4.7.0
  • Adapt 4.7.0 or absent and Turing together require OrderedCollections
    ≤2.0.0 (through AbstractPPL, DataStructures, Distributions, FlexiChains,
    Flux and StatsBase)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: Adapt 4.7.0, OrderedCollections 1.8.2, Turing 0.48.0
    2. drop requirement Turing
       → allows: Adapt 4.7.0, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on Adapt does not help.
    • relaxing your compat on Turing does not help.

Costlier fixes also exist.

103. Soss+add-OrdinaryDiffEq

reqs: ['Soss', 'Distributions', 'StatsBase', 'DataStructures', 'OrdinaryDiffEq']

compat: {'DataStructures': '0.18.22 - 0.18', 'Distributions': '0.25.131 - 0.25', 'OrdinaryDiffEq': '7.8.1 - 7', 'Soss': '0.21.2 - 0.21', 'StatsBase': '0.33.22 - 0.33'}

Unsatisfiable — 1 conflict:

Conflict 1: OrdinaryDiffEq and Soss
  • Soss constrains OrdinaryDiffEq ≤7.8.0 (through ArrayInterface,
    OrdinaryDiffEqBDF and OrdinaryDiffEqNonlinearSolve)
  • your compat leaves OrdinaryDiffEq 7.8.1
  Fix it by any one of:
    1. relax your compat on OrdinaryDiffEq
       → allows: OrdinaryDiffEq 6.25.0, Soss 0.21.2
    2. drop requirement OrdinaryDiffEq
       → allows: Soss 0.21.2
    3. drop requirement Soss
       → allows: OrdinaryDiffEq 7.8.1
  Blocked fixes:
    • relaxing your compat on Soss does not help.

104. Soss+big10-partial

reqs: ['Soss', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions']

compat: {'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'PrecompileTools': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Soss': '0.21.2 - 0.21', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34'}

Unsatisfiable — 1 conflict:

Conflict 1: Soss
  • Soss requires StatsBase 0.29.0–0.30.0, 0.32.0–0.33.22 (through
    Distributions, MCMCDiagnostics, SampleChains, SimpleGraphs and
    SimpleRandom)
  • your compat leaves StatsBase 0.34.13
  Fix it by any one of:
    1. relax your compat on StatsBase
       → allows: Soss 0.21.2, StatsBase 0.33.22
    2. drop requirement Soss
       → allows: StatsBase 0.34.13
  Blocked fixes:
    • relaxing your compat on Soss does not help.
    • dropping requirement StatsBase does not help.

105. Soss+big20-upgrade

reqs: ['Soss', 'Statistics', 'JLLWrappers', 'StaticArrays', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'Tables', 'OrderedCollections', 'RecipesBase', 'MacroTools', 'Parameters', 'Requires', 'Combinatorics', 'JSON3']

compat: {'Combinatorics': '1.1.0 - 1', 'DataStructures': '0.19.6 - 0.19', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'JSON3': '1.14.3 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'Parameters': '0.13.1 - 0.13', 'PrecompileTools': '1.3.4 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'Soss': '0.21.2 - 0.21', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1'}

Unsatisfiable — 1 conflict:

Conflict 1: Soss
  • Soss requires DataStructures ≤0.18.22 (through GeneralizedGenerated and
    SimpleGraphs)
  • your compat leaves DataStructures 0.19.6
  The only minimal fix: drop requirement Soss
    → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Soss does not help.
    • dropping requirement DataStructures does not help.

Costlier fixes also exist.

106. Soss+manifest-add-OrdinaryDiffEq

reqs: ['Soss', 'Distributions', 'StatsBase', 'DataStructures', 'OrdinaryDiffEq']

compat: {'AbstractLattices': '0.2.1 - *', 'AbstractTrees': '0.4.5 - *', 'Accessors': '0.1.45 - *', 'Adapt': '3.7.2 - *', 'AliasTables': '1.1.3 - *', 'ArgCheck': '2.5.0 - *', 'ArrayInterface': '6.0.17 - *', 'ArrayInterfaceCore': '0.1.29 - *', 'ArrayInterfaceStaticArrays': '0.1.2 - *', 'ArrayInterfaceStaticArraysCore': '0.1.4 - *', 'ArrayLayouts': '0.8.19 - *', 'ArraysOfArrays': '0.5.10 - *', 'AutoHashEquals': '0.2.0 - *', 'BangBang': '0.3.40 - *', 'Baselet': '0.1.1 - *', 'BenchmarkTools': '1.8.0 - *', 'Bijections': '0.1.10 - *', 'Bzip2_jll': '1.0.9 - *', 'Calculus': '0.5.2 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CodecBzip2': '0.8.5 - *', 'CodecZlib': '0.7.9 - *', 'Combinatorics': '1.1.0 - *', 'CommonSolve': '0.2.14 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConcreteStructs': '0.2.8 - *', 'ConstructionBase': '1.5.6 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.18.22 - *', 'DataValueInterfaces': '1.0.0 - *', 'DefineSingletons': '0.1.2 - *', 'DensityInterface': '0.4.0 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'DynamicIterators': '0.4.3 - *', 'DynamicPolynomials': '0.4.6 - *', 'ElasticArrays': '1.2.12 - *', 'ExprTools': '0.1.11 - *', 'FillArrays': '0.13.11 - *', 'FiniteDiff': '2.17.0 - *', 'FlexLinearAlgebra': '0.1.1 - *', 'ForwardDiff': '0.10.39 - *', 'GPUArraysCore': '0.1.5 - *', 'Gamma': '1.1.0 - *', 'GeneralizedGenerated': '0.3.3 - *', 'HypergeometricFunctions': '0.3.30 - *', 'IfElse': '0.1.1 - *', 'Infinities': '0.1.13 - *', 'InitialValues': '0.3.1 - *', 'IntegerMathUtils': '0.1.4 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.1.1 - *', 'IterTools': '1.10.0 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '1.8.0 - *', 'JSON3': '1.14.3 - *', 'JuliaVariables': '0.2.4 - *', 'KeywordCalls': '0.2.5 - *', 'LabelledArrays': '1.13.0 - *', 'LazyArrays': '0.22.18 - *', 'Libiconv_jll': '1.18.0 - *', 'LightXML': '0.9.3 - *', 'LineSearches': '7.5.1 - *', 'LinearAlgebraX': '0.1.13 - *', 'LogExpFunctions': '0.3.29 - *', 'LogarithmicNumbers': '1.4.1 - *', 'MCMCDiagnostics': '0.3.0 - *', 'MLStyle': '0.4.17 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MathOptInterface': '1.48.0 - *', 'MatrixFactorizations': '0.9.6 - *', 'MeasureBase': '0.12.3 - *', 'MeasureTheory': '0.16.5 - *', 'Measurements': '2.14.1 - *', 'Metatheory': '1.4.0 - *', 'MicroCollections': '0.1.4 - *', 'Missings': '1.2.0 - *', 'Mods': '1.3.4 - *', 'Multisets': '0.4.6 - *', 'MultivariatePolynomials': '0.4.7 - *', 'MutableArithmetics': '1.8.0 - *', 'NLSolversBase': '7.8.3 - *', 'NaNMath': '1.1.4 - *', 'NameResolution': '0.1.5 - *', 'NamedTupleTools': '0.14.3 - *', 'NestedTuples': '0.3.10 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optim': '1.11.0 - *', 'OrderedCollections': '1.8.2 - *', 'OrdinaryDiffEq': '7.8.1 - 7', 'PDMats': '0.11.35 - *', 'Parameters': '0.12.3 - *', 'Parsers': '2.8.8 - *', 'Permutations': '0.4.23 - *', 'Polynomials': '4.1.2 - *', 'PositiveFactorizations': '0.2.4 - *', 'PreallocationTools': '0.4.11 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrettyPrint': '0.2.0 - *', 'PrettyPrinting': '0.4.3 - *', 'Primes': '0.5.7 - *', 'PtrArrays': '1.4.0 - *', 'QuadGK': '2.11.3 - *', 'RecipesBase': '1.3.4 - *', 'RecursiveArrayTools': '2.37.0 - *', 'Reexport': '1.2.2 - *', 'Referenceables': '0.1.3 - *', 'Requires': '1.3.1 - *', 'RingLists': '0.2.9 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'RuntimeGeneratedFunctions': '0.5.25 - *', 'SampleChains': '0.5.1 - *', 'Setfield': '1.1.2 - *', 'SimpleGraphs': '0.7.18 - *', 'SimplePartitions': '0.3.3 - *', 'SimplePolynomials': '0.2.18 - *', 'SimplePosets': '0.1.5 - *', 'SimpleRandom': '0.3.2 - *', 'SnoopPrecompile': '1.0.3 - *', 'SortingAlgorithms': '1.2.3 - *', 'Soss': '0.21.2 - *', 'SpecialFunctions': '2.9.0 - *', 'SplittablesBase': '0.1.15 - *', 'Static': '0.6.6 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.33.22 - *', 'StatsFuns': '1.5.3 - *', 'StructArrays': '0.6.18 - *', 'StructTypes': '1.11.0 - *', 'StructUtils': '2.8.5 - *', 'SymbolicIndexingInterface': '0.2.2 - *', 'SymbolicUtils': '0.19.11 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TermInterface': '0.2.3 - *', 'ThreadsX': '0.1.12 - *', 'TimerOutputs': '0.5.29 - *', 'Trajectories': '0.2.2 - *', 'TranscodingStreams': '0.11.3 - *', 'Transducers': '0.4.80 - *', 'TransformVariables': '0.6.4 - *', 'Tricks': '0.1.13 - *', 'TupleVectors': '0.1.5 - *', 'UnPack': '1.0.2 - *', 'UnsafeArrays': '1.0.9 - *', 'XML2_jll': '2.15.3 - *', 'ZygoteRules': '0.2.8 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: OrdinaryDiffEq and Soss
  • Soss constrains OrdinaryDiffEq ≤7.8.0 (through ArrayInterface, DiffEqBase,
    Distributions, SimpleGraphs, OrdinaryDiffEqNonlinearSolve,
    OrdinaryDiffEqSDIRK and SimpleRandom)
  • your compat leaves OrdinaryDiffEq 7.8.1
  Fix it by any one of:
    1. relax your compat on OrdinaryDiffEq
       → allows: OrdinaryDiffEq 6.25.0, Soss 0.21.2
    2. drop requirement OrdinaryDiffEq
       → allows: Soss 0.21.2
    3. drop requirement Soss
       → allows: OrdinaryDiffEq 7.8.1
  Blocked fixes:
    • relaxing your compat on Soss does not help.

107. Soss+manifest-bump-DataStructures

reqs: ['Soss', 'Distributions', 'StatsBase', 'DataStructures']

compat: {'AbstractLattices': '0.2.1 - *', 'AbstractTrees': '0.4.5 - *', 'Accessors': '0.1.45 - *', 'Adapt': '3.7.2 - *', 'AliasTables': '1.1.3 - *', 'ArgCheck': '2.5.0 - *', 'ArrayInterface': '6.0.17 - *', 'ArrayInterfaceCore': '0.1.29 - *', 'ArrayInterfaceStaticArrays': '0.1.2 - *', 'ArrayInterfaceStaticArraysCore': '0.1.4 - *', 'ArrayLayouts': '0.8.19 - *', 'ArraysOfArrays': '0.5.10 - *', 'AutoHashEquals': '0.2.0 - *', 'BangBang': '0.3.40 - *', 'Baselet': '0.1.1 - *', 'BenchmarkTools': '1.8.0 - *', 'Bijections': '0.1.10 - *', 'Bzip2_jll': '1.0.9 - *', 'Calculus': '0.5.2 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CodecBzip2': '0.8.5 - *', 'CodecZlib': '0.7.9 - *', 'Combinatorics': '1.1.0 - *', 'CommonSolve': '0.2.14 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConcreteStructs': '0.2.8 - *', 'ConstructionBase': '1.5.6 - *', 'DataAPI': '1.16.0 - *', 'DataStructures': '0.19.6 - 0.19', 'DataValueInterfaces': '1.0.0 - *', 'DefineSingletons': '0.1.2 - *', 'DensityInterface': '0.4.0 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'Distributions': '0.25.131 - *', 'DocStringExtensions': '0.9.5 - *', 'DynamicIterators': '0.4.3 - *', 'DynamicPolynomials': '0.4.6 - *', 'ElasticArrays': '1.2.12 - *', 'ExprTools': '0.1.11 - *', 'FillArrays': '0.13.11 - *', 'FiniteDiff': '2.17.0 - *', 'FlexLinearAlgebra': '0.1.1 - *', 'ForwardDiff': '0.10.39 - *', 'GPUArraysCore': '0.1.5 - *', 'Gamma': '1.1.0 - *', 'GeneralizedGenerated': '0.3.3 - *', 'HypergeometricFunctions': '0.3.30 - *', 'IfElse': '0.1.1 - *', 'Infinities': '0.1.13 - *', 'InitialValues': '0.3.1 - *', 'IntegerMathUtils': '0.1.4 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.1.1 - *', 'IterTools': '1.10.0 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON': '1.8.0 - *', 'JSON3': '1.14.3 - *', 'JuliaVariables': '0.2.4 - *', 'KeywordCalls': '0.2.5 - *', 'LabelledArrays': '1.13.0 - *', 'LazyArrays': '0.22.18 - *', 'Libiconv_jll': '1.18.0 - *', 'LightXML': '0.9.3 - *', 'LineSearches': '7.5.1 - *', 'LinearAlgebraX': '0.1.13 - *', 'LogExpFunctions': '0.3.29 - *', 'LogarithmicNumbers': '1.4.1 - *', 'MCMCDiagnostics': '0.3.0 - *', 'MLStyle': '0.4.17 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MathOptInterface': '1.48.0 - *', 'MatrixFactorizations': '0.9.6 - *', 'MeasureBase': '0.12.3 - *', 'MeasureTheory': '0.16.5 - *', 'Measurements': '2.14.1 - *', 'Metatheory': '1.4.0 - *', 'MicroCollections': '0.1.4 - *', 'Missings': '1.2.0 - *', 'Mods': '1.3.4 - *', 'Multisets': '0.4.6 - *', 'MultivariatePolynomials': '0.4.7 - *', 'MutableArithmetics': '1.8.0 - *', 'NLSolversBase': '7.8.3 - *', 'NaNMath': '1.1.4 - *', 'NameResolution': '0.1.5 - *', 'NamedTupleTools': '0.14.3 - *', 'NestedTuples': '0.3.10 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optim': '1.11.0 - *', 'OrderedCollections': '1.8.2 - *', 'PDMats': '0.11.35 - *', 'Parameters': '0.12.3 - *', 'Parsers': '2.8.8 - *', 'Permutations': '0.4.23 - *', 'Polynomials': '4.1.2 - *', 'PositiveFactorizations': '0.2.4 - *', 'PreallocationTools': '0.4.11 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrettyPrint': '0.2.0 - *', 'PrettyPrinting': '0.4.3 - *', 'Primes': '0.5.7 - *', 'PtrArrays': '1.4.0 - *', 'QuadGK': '2.11.3 - *', 'RecipesBase': '1.3.4 - *', 'RecursiveArrayTools': '2.37.0 - *', 'Reexport': '1.2.2 - *', 'Referenceables': '0.1.3 - *', 'Requires': '1.3.1 - *', 'RingLists': '0.2.9 - *', 'Rmath': '0.9.0 - *', 'Rmath_jll': '0.5.2 - *', 'Roots': '3.0.8 - *', 'RuntimeGeneratedFunctions': '0.5.25 - *', 'SampleChains': '0.5.1 - *', 'Setfield': '1.1.2 - *', 'SimpleGraphs': '0.7.18 - *', 'SimplePartitions': '0.3.3 - *', 'SimplePolynomials': '0.2.18 - *', 'SimplePosets': '0.1.5 - *', 'SimpleRandom': '0.3.2 - *', 'SnoopPrecompile': '1.0.3 - *', 'SortingAlgorithms': '1.2.3 - *', 'Soss': '0.21.2 - *', 'SpecialFunctions': '2.9.0 - *', 'SplittablesBase': '0.1.15 - *', 'Static': '0.6.6 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.33.22 - *', 'StatsFuns': '1.5.3 - *', 'StructArrays': '0.6.18 - *', 'StructTypes': '1.11.0 - *', 'StructUtils': '2.8.5 - *', 'SymbolicIndexingInterface': '0.2.2 - *', 'SymbolicUtils': '0.19.11 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TermInterface': '0.2.3 - *', 'ThreadsX': '0.1.12 - *', 'TimerOutputs': '0.5.29 - *', 'Trajectories': '0.2.2 - *', 'TranscodingStreams': '0.11.3 - *', 'Transducers': '0.4.80 - *', 'TransformVariables': '0.6.4 - *', 'Tricks': '0.1.13 - *', 'TupleVectors': '0.1.5 - *', 'UnPack': '1.0.2 - *', 'UnsafeArrays': '1.0.9 - *', 'XML2_jll': '2.15.3 - *', 'ZygoteRules': '0.2.8 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Soss
  • Soss requires DataStructures ≤0.18.22 (through GeneralizedGenerated and
    SimpleGraphs)
  • your compat leaves DataStructures 0.19.6
  Fix it by any one of:
    1. relax your compat on DataStructures
       → allows: DataStructures 0.18.22, Soss 0.21.2
    2. drop requirement Soss
       → allows: DataStructures 0.19.6
  Blocked fixes:
    • relaxing your compat on Soss does not help.
    • dropping requirement DataStructures does not help.

108. Symbolics+manifest-add-Images

reqs: ['Symbolics', 'DataStructures', 'SymbolicUtils', 'ArrayInterface', 'Images']

compat: {'ADTypes': '1.24.0 - *', 'AbstractPlutoDingetjes': '1.4.1 - *', 'AbstractTrees': '0.4.5 - *', 'Accessors': '0.1.45 - *', 'Adapt': '4.7.0 - *', 'ArnoldiMethod': '0.4.0 - *', 'ArrayInterface': '7.30.1 - *', 'Bijections': '0.2.2 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'Combinatorics': '1.0.2 - *', 'CommonSubexpressions': '0.3.1 - *', 'CommonWorldInvalidations': '1.2.2 - *', 'Compat': '4.18.1 - *', 'CompositeTypes': '0.1.4 - *', 'CompositionsBase': '0.1.2 - *', 'ConstructionBase': '1.6.0 - *', 'DataStructures': '0.19.6 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DocStringExtensions': '0.9.5 - *', 'DomainSets': '0.8.1 - *', 'DynamicPolynomials': '0.6.8 - *', 'EnumX': '1.0.7 - *', 'ExprTools': '0.1.11 - *', 'ExproniconLite': '0.10.14 - *', 'ForwardDiff': '1.4.5 - *', 'FunctionMaps': '0.1.2 - *', 'GPUArraysCore': '0.2.0 - *', 'Graphs': '1.14.0 - *', 'Images': '0.26.2 - 0.26', 'Inflate': '0.1.5 - *', 'IntegerMathUtils': '0.1.4 - *', 'IntervalSets': '0.7.14 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'JLLWrappers': '1.8.0 - *', 'Jieko': '0.2.1 - *', 'LabelledArrays': '1.20.3 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'Moshi': '0.3.9 - *', 'MultivariatePolynomials': '0.5.19 - *', 'MutableArithmetics': '1.8.0 - *', 'NaNMath': '1.1.4 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '2.0.1 - *', 'PreallocationTools': '1.7.1 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'Primes': '0.5.7 - *', 'ReadOnlyArrays': '0.2.0 - *', 'RecipesBase': '1.3.4 - *', 'RecursiveArrayTools': '4.5.1 - *', 'Reexport': '1.2.2 - *', 'RuntimeGeneratedFunctions': '0.5.25 - *', 'SciMLPublic': '1.3.0 - *', 'SciMLStructures': '1.10.5 - *', 'Setfield': '1.1.2 - *', 'SimpleTraits': '0.9.6 - *', 'SpecialFunctions': '2.9.0 - *', 'StarAlgebras': '0.3.0 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'SymbolicIndexingInterface': '0.3.55 - *', 'SymbolicLimits': '1.2.1 - *', 'SymbolicUtils': '4.46.2 - *', 'Symbolics': '7.39.0 - *', 'TaskLocalValues': '0.1.3 - *', 'TermInterface': '2.0.0 - *', 'WeakCacheSets': '0.1.0 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Images together require
    OrderedCollections ≤2.0.0 (through ImageFiltering)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: DataStructures 0.19.6, Images 0.26.2, OrderedCollections
         1.8.2
    2. drop requirement Images
       → allows: DataStructures 0.19.6, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Images does not help.
    • dropping requirement DataStructures does not help.

Costlier fixes also exist.

109. Transformers+bump-HTTP

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'Flux': '0.14.25 - 0.14', 'HTTP': '2.6.7 - 2', 'Transformers': '0.3.1 - 0.3', 'Zygote': '0.6.77 - 0.6'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires HTTP ≤1.11.0 (through ArgParse, CUDAnative,
    DataDeps, Compat and Statistics)
  • your compat leaves HTTP 2.6.7
  Fix it by any one of:
    1. relax your compat on HTTP
       → allows: HTTP 1.11.0, Transformers 0.3.1
    2. drop requirement Transformers
       → allows: HTTP 2.6.7
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement HTTP does not help.

110. Transformers+manifest-bump-Flux

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'AbstractFFTs': '1.5.0 - *', 'Accessors': '0.1.45 - *', 'Adapt': '4.7.0 - *', 'AliasTables': '1.1.3 - *', 'Atomix': '1.1.3 - *', 'BFloat16s': '0.6.1 - *', 'BangBang': '0.4.9 - *', 'BitFlags': '0.1.10 - *', 'BytePairEncoding': '0.5.2 - *', 'CEnum': '0.5.0 - *', 'ChainRules': '1.73.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CodeTracking': '3.0.2 - *', 'CodecZlib': '0.7.9 - *', 'CommonSubexpressions': '0.3.1 - *', 'CommonWorldInvalidations': '1.2.2 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConcurrentUtilities': '2.6.0 - *', 'ConstructionBase': '1.6.0 - *', 'DLFP8Types': '0.1.0 - *', 'DataAPI': '1.16.0 - *', 'DataDeps': '0.7.14 - *', 'DataStructures': '0.18.22 - *', 'DataValueInterfaces': '1.0.0 - *', 'DelimitedFiles': '1.9.1 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DocStringExtensions': '0.9.5 - *', 'DoubleArrayTries': '0.1.1 - *', 'EnzymeCore': '0.8.21 - *', 'ExceptionUnwrapping': '0.1.11 - *', 'ExprTools': '0.1.11 - *', 'Fetch': '0.1.4 - *', 'FillArrays': '1.17.0 - *', 'Flux': '0.16.11 - 0.16', 'ForwardDiff': '1.4.5 - *', 'FuncPipelines': '0.2.3 - *', 'FuncTransforms': '0.1.1 - *', 'Functors': '0.4.12 - *', 'GPUArrays': '10.3.1 - *', 'GPUArraysCore': '0.1.6 - *', 'HTML_Entities': '1.0.2 - *', 'HTTP': '1.11.0 - *', 'HashArrayMappedTries': '0.2.0 - *', 'HuggingFaceApi': '0.1.0 - *', 'IRTools': '0.4.20 - *', 'IfElse': '0.1.1 - *', 'InitialValues': '0.3.1 - *', 'InternedStrings': '0.7.0 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON3': '1.14.3 - *', 'KernelAbstractions': '0.9.42 - *', 'LLVM': '9.13.1 - *', 'LLVMExtra_jll': '0.0.47 - *', 'LRUCache': '1.6.2 - *', 'Libiconv_jll': '1.18.0 - *', 'LightXML': '0.9.3 - *', 'LogExpFunctions': '0.3.29 - *', 'LoggingExtras': '1.2.0 - *', 'MLCore': '1.1.0 - *', 'MLDataDevices': '1.5.3 - *', 'MLUtils': '0.4.13 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MbedTLS': '1.1.10 - *', 'MbedTLS_jll': '2.28.1010 - *', 'Missings': '1.2.0 - *', 'NNlib': '0.9.31 - *', 'NaNMath': '1.1.4 - *', 'NeuralAttentionlib': '0.3.3 - *', 'OffsetArrays': '1.17.0 - *', 'OhMyArtifacts': '0.3.1 - *', 'OneHotArrays': '0.2.11 - *', 'OpenSSL': '1.6.1 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optimisers': '0.3.4 - *', 'OrderedCollections': '1.8.2 - *', 'PackageExtensionCompat': '1.0.2 - *', 'Parsers': '2.8.8 - *', 'PartialFunctions': '1.2.1 - *', 'Pickle': '0.3.7 - *', 'Pidfile': '1.3.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrimitiveOneHot': '0.2.1 - *', 'ProgressLogging': '0.1.6 - *', 'ProgressMeter': '1.11.0 - *', 'PtrArrays': '1.4.0 - *', 'RealDot': '0.1.0 - *', 'Reexport': '1.2.2 - *', 'RelocatableFolders': '1.0.1 - *', 'Requires': '1.3.1 - *', 'RustRegex': '0.1.0 - *', 'SafeTensors': '1.2.1 - *', 'SciMLPublic': '1.3.0 - *', 'ScopedValues': '1.6.2 - *', 'Scratch': '1.3.0 - *', 'Setfield': '1.1.2 - *', 'ShowCases': '0.1.0 - *', 'SimpleBufferStream': '1.2.0 - *', 'SimpleTraits': '0.9.6 - *', 'SortingAlgorithms': '1.2.3 - *', 'SparseInverseSubset': '0.1.3 - *', 'SpecialFunctions': '2.9.0 - *', 'Static': '1.4.6 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StrTables': '1.0.1 - *', 'StridedViews': '0.4.6 - *', 'StringEncodings': '0.3.7 - *', 'StringViews': '1.3.7 - *', 'StructArrays': '0.6.18 - *', 'StructTypes': '1.11.0 - *', 'StructWalk': '0.2.1 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TextEncodeBase': '0.8.3 - *', 'TranscodingStreams': '0.11.3 - *', 'Transformers': '0.3.1 - *', 'Tricks': '0.1.13 - *', 'URIs': '1.7.0 - *', 'UnsafeAtomics': '0.3.2 - *', 'ValSplit': '0.1.2 - *', 'WordTokenizers': '0.5.6 - *', 'XML2_jll': '2.15.3 - *', 'ZipFile': '0.10.1 - *', 'Zygote': '0.6.77 - *', 'ZygoteRules': '0.2.8 - *', 'rure_jll': '0.2.2 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires Flux ≤0.14.25
  • your compat leaves Flux 0.16.11
  Fix it by any one of:
    1. relax your compat on Flux
       → allows: Flux 0.14.25, Transformers 0.3.1
    2. drop requirement Transformers
       → allows: Flux 0.16.11
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement Flux does not help.

111. Transformers+manifest-bump-HTTP

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'AbstractFFTs': '1.5.0 - *', 'Accessors': '0.1.45 - *', 'Adapt': '4.7.0 - *', 'AliasTables': '1.1.3 - *', 'Atomix': '1.1.3 - *', 'BFloat16s': '0.6.1 - *', 'BangBang': '0.4.9 - *', 'BitFlags': '0.1.10 - *', 'BytePairEncoding': '0.5.2 - *', 'CEnum': '0.5.0 - *', 'ChainRules': '1.73.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CodeTracking': '3.0.2 - *', 'CodecZlib': '0.7.9 - *', 'CommonSubexpressions': '0.3.1 - *', 'CommonWorldInvalidations': '1.2.2 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConcurrentUtilities': '2.6.0 - *', 'ConstructionBase': '1.6.0 - *', 'DLFP8Types': '0.1.0 - *', 'DataAPI': '1.16.0 - *', 'DataDeps': '0.7.14 - *', 'DataStructures': '0.18.22 - *', 'DataValueInterfaces': '1.0.0 - *', 'DelimitedFiles': '1.9.1 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DocStringExtensions': '0.9.5 - *', 'DoubleArrayTries': '0.1.1 - *', 'EnzymeCore': '0.8.21 - *', 'ExceptionUnwrapping': '0.1.11 - *', 'ExprTools': '0.1.11 - *', 'Fetch': '0.1.4 - *', 'FillArrays': '1.17.0 - *', 'Flux': '0.14.25 - *', 'ForwardDiff': '1.4.5 - *', 'FuncPipelines': '0.2.3 - *', 'FuncTransforms': '0.1.1 - *', 'Functors': '0.4.12 - *', 'GPUArrays': '10.3.1 - *', 'GPUArraysCore': '0.1.6 - *', 'HTML_Entities': '1.0.2 - *', 'HTTP': '2.6.7 - 2', 'HashArrayMappedTries': '0.2.0 - *', 'HuggingFaceApi': '0.1.0 - *', 'IRTools': '0.4.20 - *', 'IfElse': '0.1.1 - *', 'InitialValues': '0.3.1 - *', 'InternedStrings': '0.7.0 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON3': '1.14.3 - *', 'KernelAbstractions': '0.9.42 - *', 'LLVM': '9.13.1 - *', 'LLVMExtra_jll': '0.0.47 - *', 'LRUCache': '1.6.2 - *', 'Libiconv_jll': '1.18.0 - *', 'LightXML': '0.9.3 - *', 'LogExpFunctions': '0.3.29 - *', 'LoggingExtras': '1.2.0 - *', 'MLCore': '1.1.0 - *', 'MLDataDevices': '1.5.3 - *', 'MLUtils': '0.4.13 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MbedTLS': '1.1.10 - *', 'MbedTLS_jll': '2.28.1010 - *', 'Missings': '1.2.0 - *', 'NNlib': '0.9.31 - *', 'NaNMath': '1.1.4 - *', 'NeuralAttentionlib': '0.3.3 - *', 'OffsetArrays': '1.17.0 - *', 'OhMyArtifacts': '0.3.1 - *', 'OneHotArrays': '0.2.11 - *', 'OpenSSL': '1.6.1 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optimisers': '0.3.4 - *', 'OrderedCollections': '1.8.2 - *', 'PackageExtensionCompat': '1.0.2 - *', 'Parsers': '2.8.8 - *', 'PartialFunctions': '1.2.1 - *', 'Pickle': '0.3.7 - *', 'Pidfile': '1.3.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrimitiveOneHot': '0.2.1 - *', 'ProgressLogging': '0.1.6 - *', 'ProgressMeter': '1.11.0 - *', 'PtrArrays': '1.4.0 - *', 'RealDot': '0.1.0 - *', 'Reexport': '1.2.2 - *', 'RelocatableFolders': '1.0.1 - *', 'Requires': '1.3.1 - *', 'RustRegex': '0.1.0 - *', 'SafeTensors': '1.2.1 - *', 'SciMLPublic': '1.3.0 - *', 'ScopedValues': '1.6.2 - *', 'Scratch': '1.3.0 - *', 'Setfield': '1.1.2 - *', 'ShowCases': '0.1.0 - *', 'SimpleBufferStream': '1.2.0 - *', 'SimpleTraits': '0.9.6 - *', 'SortingAlgorithms': '1.2.3 - *', 'SparseInverseSubset': '0.1.3 - *', 'SpecialFunctions': '2.9.0 - *', 'Static': '1.4.6 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StrTables': '1.0.1 - *', 'StridedViews': '0.4.6 - *', 'StringEncodings': '0.3.7 - *', 'StringViews': '1.3.7 - *', 'StructArrays': '0.6.18 - *', 'StructTypes': '1.11.0 - *', 'StructWalk': '0.2.1 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TextEncodeBase': '0.8.3 - *', 'TranscodingStreams': '0.11.3 - *', 'Transformers': '0.3.1 - *', 'Tricks': '0.1.13 - *', 'URIs': '1.7.0 - *', 'UnsafeAtomics': '0.3.2 - *', 'ValSplit': '0.1.2 - *', 'WordTokenizers': '0.5.6 - *', 'XML2_jll': '2.15.3 - *', 'ZipFile': '0.10.1 - *', 'Zygote': '0.6.77 - *', 'ZygoteRules': '0.2.8 - *', 'rure_jll': '0.2.2 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • Transformers requires HTTP ≤1.11.0 (through DataDeps)
  • your compat leaves HTTP 2.6.7
  Fix it by any one of:
    1. relax your compat on HTTP
       → allows: HTTP 1.11.0, Transformers 0.3.1
    2. drop requirement Transformers
       → allows: HTTP 2.6.7
  Blocked fixes:
    • relaxing your compat on Transformers does not help.
    • dropping requirement HTTP does not help.

112. Transformers+manifest-bump-Zygote

reqs: ['Transformers', 'Zygote', 'Flux', 'HTTP']

compat: {'AbstractFFTs': '1.5.0 - *', 'Accessors': '0.1.45 - *', 'Adapt': '4.7.0 - *', 'AliasTables': '1.1.3 - *', 'Atomix': '1.1.3 - *', 'BFloat16s': '0.6.1 - *', 'BangBang': '0.4.9 - *', 'BitFlags': '0.1.10 - *', 'BytePairEncoding': '0.5.2 - *', 'CEnum': '0.5.0 - *', 'ChainRules': '1.73.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CodeTracking': '3.0.2 - *', 'CodecZlib': '0.7.9 - *', 'CommonSubexpressions': '0.3.1 - *', 'CommonWorldInvalidations': '1.2.2 - *', 'Compat': '4.18.1 - *', 'CompositionsBase': '0.1.2 - *', 'ConcurrentUtilities': '2.6.0 - *', 'ConstructionBase': '1.6.0 - *', 'DLFP8Types': '0.1.0 - *', 'DataAPI': '1.16.0 - *', 'DataDeps': '0.7.14 - *', 'DataStructures': '0.18.22 - *', 'DataValueInterfaces': '1.0.0 - *', 'DelimitedFiles': '1.9.1 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DocStringExtensions': '0.9.5 - *', 'DoubleArrayTries': '0.1.1 - *', 'EnzymeCore': '0.8.21 - *', 'ExceptionUnwrapping': '0.1.11 - *', 'ExprTools': '0.1.11 - *', 'Fetch': '0.1.4 - *', 'FillArrays': '1.17.0 - *', 'Flux': '0.14.25 - *', 'ForwardDiff': '1.4.5 - *', 'FuncPipelines': '0.2.3 - *', 'FuncTransforms': '0.1.1 - *', 'Functors': '0.4.12 - *', 'GPUArrays': '10.3.1 - *', 'GPUArraysCore': '0.1.6 - *', 'HTML_Entities': '1.0.2 - *', 'HTTP': '1.11.0 - *', 'HashArrayMappedTries': '0.2.0 - *', 'HuggingFaceApi': '0.1.0 - *', 'IRTools': '0.4.20 - *', 'IfElse': '0.1.1 - *', 'InitialValues': '0.3.1 - *', 'InternedStrings': '0.7.0 - *', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'JSON3': '1.14.3 - *', 'KernelAbstractions': '0.9.42 - *', 'LLVM': '9.13.1 - *', 'LLVMExtra_jll': '0.0.47 - *', 'LRUCache': '1.6.2 - *', 'Libiconv_jll': '1.18.0 - *', 'LightXML': '0.9.3 - *', 'LogExpFunctions': '0.3.29 - *', 'LoggingExtras': '1.2.0 - *', 'MLCore': '1.1.0 - *', 'MLDataDevices': '1.5.3 - *', 'MLUtils': '0.4.13 - *', 'MacroTools': '0.5.16 - *', 'MappedArrays': '0.4.3 - *', 'MbedTLS': '1.1.10 - *', 'MbedTLS_jll': '2.28.1010 - *', 'Missings': '1.2.0 - *', 'NNlib': '0.9.31 - *', 'NaNMath': '1.1.4 - *', 'NeuralAttentionlib': '0.3.3 - *', 'OffsetArrays': '1.17.0 - *', 'OhMyArtifacts': '0.3.1 - *', 'OneHotArrays': '0.2.11 - *', 'OpenSSL': '1.6.1 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'Optimisers': '0.3.4 - *', 'OrderedCollections': '1.8.2 - *', 'PackageExtensionCompat': '1.0.2 - *', 'Parsers': '2.8.8 - *', 'PartialFunctions': '1.2.1 - *', 'Pickle': '0.3.7 - *', 'Pidfile': '1.3.0 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'PrimitiveOneHot': '0.2.1 - *', 'ProgressLogging': '0.1.6 - *', 'ProgressMeter': '1.11.0 - *', 'PtrArrays': '1.4.0 - *', 'RealDot': '0.1.0 - *', 'Reexport': '1.2.2 - *', 'RelocatableFolders': '1.0.1 - *', 'Requires': '1.3.1 - *', 'RustRegex': '0.1.0 - *', 'SafeTensors': '1.2.1 - *', 'SciMLPublic': '1.3.0 - *', 'ScopedValues': '1.6.2 - *', 'Scratch': '1.3.0 - *', 'Setfield': '1.1.2 - *', 'ShowCases': '0.1.0 - *', 'SimpleBufferStream': '1.2.0 - *', 'SimpleTraits': '0.9.6 - *', 'SortingAlgorithms': '1.2.3 - *', 'SparseInverseSubset': '0.1.3 - *', 'SpecialFunctions': '2.9.0 - *', 'Static': '1.4.6 - *', 'StaticArrays': '1.9.20 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StatsAPI': '1.8.0 - *', 'StatsBase': '0.34.13 - *', 'StrTables': '1.0.1 - *', 'StridedViews': '0.4.6 - *', 'StringEncodings': '0.3.7 - *', 'StringViews': '1.3.7 - *', 'StructArrays': '0.6.18 - *', 'StructTypes': '1.11.0 - *', 'StructWalk': '0.2.1 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'TextEncodeBase': '0.8.3 - *', 'TranscodingStreams': '0.11.3 - *', 'Transformers': '0.3.1 - *', 'Tricks': '0.1.13 - *', 'URIs': '1.7.0 - *', 'UnsafeAtomics': '0.3.2 - *', 'ValSplit': '0.1.2 - *', 'WordTokenizers': '0.5.6 - *', 'XML2_jll': '2.15.3 - *', 'ZipFile': '0.10.1 - *', 'Zygote': '0.7.13 - 0.7', 'ZygoteRules': '0.2.8 - *', 'rure_jll': '0.2.2 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Transformers
  • your compat leaves Adapt 4.7.0
  • your compat leaves Zygote 0.7.13
  • incompatible constraints on Flux:
      — Flux ≤0.14.10 requires Adapt ≤4.6.1
      — Flux 0.14.7–0.14.25 requires Zygote ≤0.7.12
      — Transformers requires Flux ≤0.14.25
  Fix it by any one of:
    1. relax your compat on Zygote
       → allows: Adapt 4.7.0, Flux 0.14.25, Transformers 0.3.1, Zygote 0.6.77
    2. drop requirement Transformers
       → allows: Adapt 4.7.0, Flux 0.16.11, Zygote 0.7.13
  Blocked fixes:
    • relaxing your compat on Adapt does not help.
    • relaxing your compat on Flux does not help.
    • relaxing your compat on Transformers does not help.
    • dropping requirement Flux does not help.
    • dropping requirement Zygote does not help.

Costlier fixes also exist.

113. Turing+big20-partial

reqs: ['Turing', 'Statistics', 'JLLWrappers', 'Distributions', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'JSON', 'SpecialFunctions', 'DataStructures', 'ProgressMeter', 'ForwardDiff', 'DelimitedFiles', 'Tables', 'OrderedCollections', 'RecipesBase', 'MacroTools', 'Requires', 'Optim', 'SciMLBase']

compat: {'DataStructures': '0.19.6 - 0.19', 'DelimitedFiles': '1.9.1 - 1', 'Distributions': '0.25.131 - 0.25', 'DocStringExtensions': '0.9.5 - 0.9', 'ForwardDiff': '1.4.5 - 1', 'JLLWrappers': '1.8.0 - 1', 'JSON': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'Optim': '2.3.1 - 2', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'ProgressMeter': '1.11.0 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SciMLBase': '3.51.0 - 3', 'SpecialFunctions': '2.9.0 - 2', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'Tables': '1.14.0 - 1', 'Turing': '0.48'}

Unsatisfiable — 1 conflict:

Conflict 1: Turing
  • your compat leaves DataStructures 0.19.6
  • DataStructures 0.19.6 or absent and Turing together require
    OrderedCollections ≤2.0.0 (through AbstractPPL, FlexiChains, MCMCChain,
    MCMCChains and StatPlots)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: DataStructures 0.19.6, OrderedCollections 1.8.2, Turing
         0.48.0
    2. drop requirement Turing
       → allows: DataStructures 0.19.6, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DataStructures does not help.
    • relaxing your compat on Turing does not help.
    • dropping requirement DataStructures does not help.
    • dropping requirement OrderedCollections does not help.

Costlier fixes also exist.

114. VoronoiFVM+big20-partial

reqs: ['VoronoiFVM', 'Statistics', 'JLLWrappers', 'StaticArrays', 'StatsBase', 'Reexport', 'PrecompileTools', 'DocStringExtensions', 'SpecialFunctions', 'DataStructures', 'ForwardDiff', 'OrderedCollections', 'Graphs', 'RecipesBase', 'MacroTools', 'JLD2', 'Interpolations', 'FileIO', 'Requires', 'Colors', 'SciMLBase']

compat: {'Colors': '0.13.1 - 0.13', 'DataStructures': '0.19.6 - 0.19', 'DocStringExtensions': '0.9.5 - 0.9', 'FileIO': '1.20.0 - 1', 'ForwardDiff': '1.4.5 - 1', 'Graphs': '1.14.0 - 1', 'Interpolations': '0.16.3 - 0.16', 'JLD2': '0.6.6 - 0.6', 'JLLWrappers': '1.8.0 - 1', 'MacroTools': '0.5.16 - 0.5', 'OrderedCollections': '2.0.1 - 2', 'PrecompileTools': '1.3.4 - 1', 'RecipesBase': '1.3.4 - 1', 'Reexport': '1.2.2 - 1', 'Requires': '1.3.1 - 1', 'SciMLBase': '3.51.0 - 3', 'SpecialFunctions': '2.9.0 - 2', 'StaticArrays': '1.9.20 - 1', 'Statistics': '1.11.5 - 1', 'StatsBase': '0.34.13 - 0.34', 'VoronoiFVM': '3.5.2 - 3'}

Unsatisfiable — 1 conflict:

Conflict 1: VoronoiFVM
  • your compat leaves OrderedCollections 2.0.1
  • OrderedCollections 2.0.1 or absent and VoronoiFVM together require
    DocStringExtensions 0.8.0–0.8.6 (through GridVisualize)
  • your compat leaves DocStringExtensions 0.9.5
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: DocStringExtensions 0.9.5, OrderedCollections 1.8.2,
         VoronoiFVM 3.5.2
    2. drop requirement VoronoiFVM
       → allows: DocStringExtensions 0.9.5, OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on DocStringExtensions does not help.
    • relaxing your compat on VoronoiFVM does not help.

Costlier fixes also exist.

115. Zygote+manifest-add-Images

reqs: ['Zygote', 'ForwardDiff', 'ChainRules', 'ChainRulesCore', 'Images']

compat: {'AbstractFFTs': '1.5.0 - *', 'Adapt': '4.7.0 - *', 'ChainRules': '1.73.0 - *', 'ChainRulesCore': '1.26.1 - *', 'ChangesOfVariables': '0.1.11 - *', 'CommonSubexpressions': '0.3.1 - *', 'Compat': '4.18.1 - *', 'ConstructionBase': '1.6.0 - *', 'DataAPI': '1.16.0 - *', 'DataValueInterfaces': '1.0.0 - *', 'DiffResults': '1.1.0 - *', 'DiffRules': '1.16.0 - *', 'DocStringExtensions': '0.9.5 - *', 'FillArrays': '1.17.0 - *', 'ForwardDiff': '1.4.5 - *', 'GPUArraysCore': '0.2.0 - *', 'IRTools': '0.4.20 - *', 'Images': '0.26.2 - 0.26', 'InverseFunctions': '0.1.17 - *', 'IrrationalConstants': '0.2.6 - *', 'IteratorInterfaceExtensions': '1.0.0 - *', 'JLLWrappers': '1.8.0 - *', 'LogExpFunctions': '1.0.1 - *', 'MacroTools': '0.5.16 - *', 'NaNMath': '1.1.4 - *', 'OpenSpecFun_jll': '0.5.6 - *', 'OrderedCollections': '2.0.1 - *', 'PrecompileTools': '1.3.4 - *', 'Preferences': '1.5.2 - *', 'RealDot': '0.1.0 - *', 'SparseInverseSubset': '0.1.3 - *', 'SpecialFunctions': '2.9.0 - *', 'StaticArraysCore': '1.4.4 - *', 'Statistics': '1.11.5 - *', 'StructArrays': '0.7.3 - *', 'TableTraits': '1.0.1 - *', 'Tables': '1.14.0 - *', 'Zygote': '0.7.13 - *', 'ZygoteRules': '0.2.8 - *'}

Unsatisfiable — 1 conflict:

Conflict 1: Images
  • your compat leaves Images 0.26.2
  • Images 0.26.2 requires OrderedCollections 1.1.0–1.8.2 (through
    ImageContrastAdjustment and Parameters)
  • your compat leaves OrderedCollections 2.0.1
  Fix it by any one of:
    1. relax your compat on OrderedCollections
       → allows: Images 0.26.2, OrderedCollections 1.8.2
    2. drop requirement Images
       → allows: OrderedCollections 2.0.1
  Blocked fixes:
    • relaxing your compat on Images does not help.

Costlier fixes also exist.

There may be more to say about some of these.
# id => (reqs, compat) — realistic-structure corpus, General registry as of 2026-09-08
const REAL_CASES = Dict{String,Tuple{Vector{String},Dict{String,String}}}(
"Bloqade+big20-upgrade" => (["Bloqade", "BloqadeExpr", "BloqadeMIS", "BloqadeKrylov", "BloqadeODE", "BloqadeLattices", "BloqadeWaveforms", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "Tables", "OrderedCollections", "Graphs", "Unitful", "RecipesBase", "MacroTools", "Interpolations"], Dict("Bloqade"=>"0.2.5 - 0.2", "BloqadeExpr"=>"0.2.3 - 0.2", "BloqadeKrylov"=>"0.2.2 - 0.2", "BloqadeLattices"=>"0.2.3 - 0.2", "BloqadeMIS"=>"0.2.2 - 0.2", "BloqadeODE"=>"0.2.3 - 0.2", "BloqadeWaveforms"=>"0.2.2 - 0.2", "DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "Interpolations"=>"0.16.3 - 0.16", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"Bloqade+big20-partial" => (["Bloqade", "BloqadeExpr", "BloqadeMIS", "BloqadeKrylov", "BloqadeODE", "BloqadeLattices", "BloqadeWaveforms", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "Tables", "OrderedCollections", "Graphs", "Unitful", "RecipesBase", "MacroTools", "Interpolations"], Dict("Bloqade"=>"0.2.5 - 0.2", "BloqadeExpr"=>"0.2.3 - 0.2", "BloqadeKrylov"=>"0.2.2 - 0.2", "BloqadeLattices"=>"0.2.3 - 0.2", "BloqadeMIS"=>"0.2.2 - 0.2", "BloqadeODE"=>"0.2.3 - 0.2", "BloqadeWaveforms"=>"0.2.2 - 0.2", "DataStructures"=>"0.18.22 - 0.18", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.13.1 - 1", "Interpolations"=>"0.16.3 - 0.16", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"1.8.2 - 1", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"Franklin+big20-upgrade" => (["Franklin", "FranklinTemplates", "JLLWrappers", "PrecompileTools", "DocStringExtensions", "JSON", "HTTP", "DelimitedFiles", "OrderedCollections", "Preferences", "CodecZlib", "URIs", "LoggingExtras", "TranscodingStreams", "ExprTools", "Parsers", "MbedTLS", "Literate", "IOCapture", "MIMEs", "StructUtils", "LiveServer"], Dict("CodecZlib"=>"0.7.9 - 0.7", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "ExprTools"=>"0.1.11 - 0.1", "Franklin"=>"0.10.97 - 0.10", "FranklinTemplates"=>"0.10.4 - 0.10", "HTTP"=>"2.6.7 - 2", "IOCapture"=>"1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "Literate"=>"2.21.0 - 2", "LiveServer"=>"1.6.0 - 1", "LoggingExtras"=>"1.2.0 - 1", "MIMEs"=>"1.1.0 - 1", "MbedTLS"=>"1.1.10 - 1", "OrderedCollections"=>"2.0.1 - 2", "Parsers"=>"3", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "StructUtils"=>"2.8.5 - 2", "TranscodingStreams"=>"0.11.3 - 0.11", "URIs"=>"1.7.0 - 1")),
"CSV+big20-upgrade" => (["CSV", "PrecompileTools", "Tables", "OrderedCollections", "Compat", "Preferences", "CodecZlib", "DataAPI", "TranscodingStreams", "FilePathsBase", "IteratorInterfaceExtensions", "TableTraits", "Parsers", "PooledArrays", "InlineStrings", "SentinelArrays", "WeakRefStrings", "DataValueInterfaces", "WorkerUtilities"], Dict("CSV"=>"0.10.17 - 0.10", "CodecZlib"=>"0.7.9 - 0.7", "Compat"=>"4.18.1 - 4", "DataAPI"=>"1.16.0 - 1", "DataValueInterfaces"=>"1", "FilePathsBase"=>"0.9.24 - 0.9", "InlineStrings"=>"2.0.1 - 2", "IteratorInterfaceExtensions"=>"1", "OrderedCollections"=>"2.0.1 - 2", "Parsers"=>"3", "PooledArrays"=>"1.4.3 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "SentinelArrays"=>"1.4.10 - 1", "TableTraits"=>"1.0.1 - 1", "Tables"=>"1.14.0 - 1", "TranscodingStreams"=>"0.11.3 - 0.11", "WeakRefStrings"=>"1.4.3 - 1", "WorkerUtilities"=>"1.6.1 - 1")),
"Knet+big20-partial" => (["Knet", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "OrderedCollections", "MacroTools", "JLD2", "FileIO", "Requires", "Colors", "Compat", "ChainRulesCore", "Adapt", "Preferences", "CUDA", "OffsetArrays", "CEnum"], Dict("Adapt"=>"3.7.2 - 3", "CEnum"=>"0.4.2 - 0.4", "CUDA"=>"6.3.1 - 6", "ChainRulesCore"=>"1.26.1 - 1", "Colors"=>"0.13.1 - 0.13", "Compat"=>"4.18.1 - 4", "DocStringExtensions"=>"0.9.5 - 0.9", "FileIO"=>"1.20.0 - 1", "JLD2"=>"0.4.55 - 0.4", "JLLWrappers"=>"1.8.0 - 1", "Knet"=>"1.4.10 - 1", "MacroTools"=>"0.5.16 - 0.5", "OffsetArrays"=>"1.17.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1")),
"Knet+bump2-NNlib-JLD2" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"3.13.1 - 3", "JLD2"=>"0.6.6 - 0.6", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.9.45 - 0.9")),
"Pluto+big20-upgrade" => (["Pluto", "PlutoDependencyExplorer", "JLLWrappers", "PrecompileTools", "HTTP", "Tables", "OrderedCollections", "Compat", "Preferences", "Scratch", "CodecZlib", "URIs", "LoggingExtras", "DataAPI", "TranscodingStreams", "LRUCache", "RelocatableFolders", "HypertextLiteral", "IteratorInterfaceExtensions", "TableTraits", "Configurations", "MbedTLS"], Dict("CodecZlib"=>"0.7.9 - 0.7", "Compat"=>"4.18.1 - 4", "Configurations"=>"0.17.6 - 0.17", "DataAPI"=>"1.16.0 - 1", "HTTP"=>"2.6.7 - 2", "HypertextLiteral"=>"1", "IteratorInterfaceExtensions"=>"1", "JLLWrappers"=>"1.8.0 - 1", "LRUCache"=>"1.6.2 - 1", "LoggingExtras"=>"1.2.0 - 1", "MbedTLS"=>"1.1.10 - 1", "OrderedCollections"=>"2.0.1 - 2", "Pluto"=>"1.0.3 - 1", "PlutoDependencyExplorer"=>"1.2.2 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "RelocatableFolders"=>"1.0.1 - 1", "Scratch"=>"1.3.0 - 1", "TableTraits"=>"1.0.1 - 1", "Tables"=>"1.14.0 - 1", "TranscodingStreams"=>"0.11.3 - 0.11", "URIs"=>"1.7.0 - 1")),
"Transformers+bump2-Zygote-HTTP" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.14.25 - 0.14", "HTTP"=>"2.6.7 - 2", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.7.13 - 0.7")),
"Knet+bump-NNlib" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"3.13.1 - 3", "JLD2"=>"0.4.55 - 0.4", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.9.45 - 0.9")),
"Knet+bump2-CUDA-NNlib" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"6.3.1 - 6", "JLD2"=>"0.4.55 - 0.4", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.9.45 - 0.9")),
"Knet+upgrade-direct" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"6.3.1 - 6", "JLD2"=>"0.6.6 - 0.6", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.9.45 - 0.9")),
"Molly+big20-upgrade" => (["Molly", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter", "Tables", "OrderedCollections", "FFTW", "Graphs", "Unitful", "RecipesBase", "MacroTools", "Parameters", "Requires"], Dict("DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "Graphs"=>"1.14.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "Molly"=>"0.23.3 - 0.23", "OrderedCollections"=>"2.0.1 - 2", "Parameters"=>"0.13.1 - 0.13", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"Transformers+bump-Zygote" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.14.25 - 0.14", "HTTP"=>"1.11.0 - 1", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.7.13 - 0.7")),
"Franklin+big10-upgrade" => (["Franklin", "FranklinTemplates", "JLLWrappers", "PrecompileTools", "DocStringExtensions", "JSON", "HTTP", "DelimitedFiles", "OrderedCollections", "Preferences", "CodecZlib", "URIs"], Dict("CodecZlib"=>"0.7.9 - 0.7", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "Franklin"=>"0.10.97 - 0.10", "FranklinTemplates"=>"0.10.4 - 0.10", "HTTP"=>"2.6.7 - 2", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "URIs"=>"1.7.0 - 1")),
"Franklin+big20-partial" => (["Franklin", "FranklinTemplates", "JLLWrappers", "PrecompileTools", "DocStringExtensions", "JSON", "HTTP", "DelimitedFiles", "OrderedCollections", "Preferences", "CodecZlib", "URIs", "LoggingExtras", "TranscodingStreams", "ExprTools", "Parsers", "MbedTLS", "Literate", "IOCapture", "MIMEs", "StructUtils", "LiveServer"], Dict("CodecZlib"=>"0.7.9 - 0.7", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "ExprTools"=>"0.1.11 - 0.1", "Franklin"=>"0.10.97 - 0.10", "FranklinTemplates"=>"0.10.4 - 0.10", "HTTP"=>"2.6.7 - 2", "IOCapture"=>"1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "Literate"=>"2.21.0 - 2", "LiveServer"=>"1.5.0 - 1", "LoggingExtras"=>"1.2.0 - 1", "MIMEs"=>"1.1.0 - 1", "MbedTLS"=>"1.1.10 - 1", "OrderedCollections"=>"1.8.2 - 1", "Parsers"=>"3", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "StructUtils"=>"2.8.5 - 2", "TranscodingStreams"=>"0.11.3 - 0.11", "URIs"=>"1.7.0 - 1")),
"Franklin+upgrade-direct" => (["Franklin", "HTTP", "FranklinTemplates", "LiveServer"], Dict("Franklin"=>"0.10.97 - 0.10", "FranklinTemplates"=>"0.10.4 - 0.10", "HTTP"=>"2.6.7 - 2", "LiveServer"=>"1.6.0 - 1")),
"Knet+bump2-CUDA-JLD2" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"6.3.1 - 6", "JLD2"=>"0.6.6 - 0.6", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.8.21 - 0.8")),
"Transformers+bump2-Flux-HTTP" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.16.11 - 0.16", "HTTP"=>"2.6.7 - 2", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.6.77 - 0.6")),
"Bloqade+bump2-CairoMakie-ForwardDiff" => (["Bloqade", "CairoMakie", "ForwardDiff", "Yao"], Dict("Bloqade"=>"0.2.5 - 0.2", "CairoMakie"=>"0.15.14 - 0.15", "ForwardDiff"=>"1.4.5 - 1", "Yao"=>"0.9.1 - 0.9")),
"Bloqade+upgrade-direct" => (["Bloqade", "CairoMakie", "ForwardDiff", "Yao"], Dict("Bloqade"=>"0.2.5 - 0.2", "CairoMakie"=>"0.15.14 - 0.15", "ForwardDiff"=>"1.4.5 - 1", "Yao"=>"0.9.3 - 0.9")),
"Metatheory+big10-partial" => (["Metatheory", "Reexport", "DocStringExtensions", "DataStructures", "OrderedCollections", "Compat", "TimerOutputs", "AutoHashEquals", "ExprTools", "TermInterface"], Dict("AutoHashEquals"=>"2.2.0 - 2", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "ExprTools"=>"0.1.11 - 0.1", "Metatheory"=>"2.0.2 - 2", "OrderedCollections"=>"1.8.2 - 1", "Reexport"=>"1.2.2 - 1", "TermInterface"=>"0.3.3 - 0.3", "TimerOutputs"=>"1.2.1 - 1")),
"Metatheory+bump2-DataStructures-TermInterface" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("DataStructures"=>"0.19.6 - 0.19", "Metatheory"=>"2.0.2 - 2", "TermInterface"=>"2", "TimerOutputs"=>"0.5.29 - 0.5")),
"Transformers+bump-Flux" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.16.11 - 0.16", "HTTP"=>"1.11.0 - 1", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.6.77 - 0.6")),
"Transformers+bump2-Zygote-Flux" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.16.11 - 0.16", "HTTP"=>"1.11.0 - 1", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.7.13 - 0.7")),
"Transformers+upgrade-direct" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.16.11 - 0.16", "HTTP"=>"2.6.7 - 2", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.7.13 - 0.7")),
"Gadfly+big20-partial" => (["Gadfly", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "OrderedCollections", "MacroTools", "Interpolations", "Requires", "Colors", "Distances", "Compat", "ChainRulesCore", "Adapt"], Dict("Adapt"=>"4.7.0 - 4", "ChainRulesCore"=>"1.26.1 - 1", "Colors"=>"0.13.1 - 0.13", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.18.22 - 0.18", "Distances"=>"0.10.12 - 0.10", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "Gadfly"=>"1.4.1 - 1", "Interpolations"=>"0.16.3 - 0.16", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Bloqade+big10-partial" => (["Bloqade", "BloqadeExpr", "BloqadeMIS", "BloqadeKrylov", "BloqadeODE", "BloqadeLattices", "BloqadeWaveforms", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions"], Dict("Bloqade"=>"0.2.5 - 0.2", "BloqadeExpr"=>"0.2.3 - 0.2", "BloqadeKrylov"=>"0.2.2 - 0.2", "BloqadeLattices"=>"0.2.3 - 0.2", "BloqadeMIS"=>"0.2.2 - 0.2", "BloqadeODE"=>"0.2.3 - 0.2", "BloqadeWaveforms"=>"0.2.2 - 0.2", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Bloqade+manifest-bump-CairoMakie" => (["Bloqade", "CairoMakie", "ForwardDiff", "Yao"], Dict("ADTypes"=>"1.24.0 - *", "AbstractFFTs"=>"1.5.0 - *", "AbstractTrees"=>"0.4.5 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"4.7.0 - *", "AdaptivePredicates"=>"1.2.0 - *", "AliasTables"=>"1.1.3 - *", "Animations"=>"0.4.2 - *", "ArgCheck"=>"2.5.0 - *", "ArnoldiMethod"=>"0.4.0 - *", "ArrayInterface"=>"7.30.1 - *", "ArrayLayouts"=>"1.12.2 - *", "ArrowTypes"=>"2.3.0 - *", "Atomix"=>"1.1.3 - *", "Automa"=>"1.2.0 - *", "AxisAlgorithms"=>"1.1.0 - *", "AxisArrays"=>"0.4.8 - *", "BandedMatrices"=>"1.12.0 - *", "BangBang"=>"0.4.9 - *", "BaseDirs"=>"1.4.0 - *", "Baselet"=>"0.1.1 - *", "BatchedRoutines"=>"0.2.2 - *", "BenchmarkTools"=>"1.8.0 - *", "BitBasis"=>"0.9.10 - *", "BitTwiddlingConvenienceFunctions"=>"0.1.6 - *", "Bloqade"=>"0.2.5 - *", "BloqadeExpr"=>"0.2.3 - *", "BloqadeKrylov"=>"0.2.2 - *", "BloqadeLattices"=>"0.2.3 - *", "BloqadeMIS"=>"0.2.2 - *", "BloqadeODE"=>"0.2.3 - *", "BloqadeWaveforms"=>"0.2.2 - *", "BracketingNonlinearSolve"=>"1.5.0 - *", "Bzip2_jll"=>"1.0.9 - *", "CEnum"=>"0.5.0 - *", "CPUSummary"=>"0.2.7 - *", "CRlibm"=>"1.0.2 - *", "CRlibm_jll"=>"1.0.1 - *", "CacheServers"=>"0.2.0 - *", "Cairo"=>"1.1.1 - *", "CairoMakie"=>"0.15.14 - 0.15", "Cairo_jll"=>"1.18.7 - *", "Calculus"=>"0.5.2 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CliqueTrees"=>"1.19.6 - *", "CloseOpenIntervals"=>"0.1.13 - *", "CodecBzip2"=>"0.8.5 - *", "CodecZlib"=>"0.7.9 - *", "CodecZstd"=>"0.8.7 - *", "Collects"=>"1.1.0 - *", "ColorBrewer"=>"0.4.2 - *", "ColorSchemes"=>"3.31.0 - *", "ColorTypes"=>"0.11.5 - *", "ColorVectorSpace"=>"0.10.0 - *", "Colors"=>"0.13.1 - *", "Combinatorics"=>"1.1.0 - *", "CommonSolve"=>"0.2.14 - *", "CommonSubexpressions"=>"0.3.1 - *", "CommonWorldInvalidations"=>"1.2.2 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConcreteStructs"=>"0.2.8 - *", "Configurations"=>"0.17.6 - *", "ConstructionBase"=>"1.6.0 - *", "Contour"=>"0.6.3 - *", "CpuId"=>"0.3.1 - *", "Crayons"=>"4.2.0 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.18.22 - *", "DataValueInterfaces"=>"1.0.0 - *", "DefineSingletons"=>"0.1.2 - *", "DelaunayTriangulation"=>"1.6.6 - *", "DensityInterface"=>"0.4.0 - *", "DiffEqBase"=>"6.194.0 - *", "DiffEqCallbacks"=>"4.18.0 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DifferentiationInterface"=>"0.7.21 - *", "Distances"=>"0.10.12 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "EarCut_jll"=>"2.2.4 - *", "EliminateGraphs"=>"0.2.1 - *", "EnumX"=>"1.0.7 - *", "EnzymeCore"=>"0.8.21 - *", "ExactPredicates"=>"2.2.9 - *", "Expat_jll"=>"2.8.3 - *", "ExponentialUtilities"=>"1.31.0 - *", "ExprTools"=>"0.1.11 - *", "ExproniconLite"=>"0.10.14 - *", "Extents"=>"0.1.6 - *", "FFMPEG"=>"0.4.5 - *", "FFMPEG_jll"=>"6.1.3 - *", "FFTA"=>"0.3.1 - *", "FastBroadcast"=>"0.3.5 - *", "FastClosures"=>"0.3.2 - *", "FastGaussQuadrature"=>"1.3.0 - *", "FastPower"=>"1.5.0 - *", "FileIO"=>"1.20.0 - *", "FilePaths"=>"0.8.3 - *", "FilePathsBase"=>"0.9.24 - *", "FillArrays"=>"1.17.0 - *", "FiniteDiff"=>"2.33.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "FixedSizeArrays"=>"1.3.0 - *", "Fontconfig_jll"=>"2.17.1 - *", "Format"=>"1.3.7 - *", "ForwardDiff"=>"0.10.39 - *", "FreeType"=>"4.1.1 - *", "FreeType2_jll"=>"2.14.3 - *", "FreeTypeAbstraction"=>"0.10.8 - *", "FriBidi_jll"=>"1.0.17 - *", "FunctionWrappers"=>"1.1.3 - *", "FunctionWrappersWrappers"=>"0.1.3 - *", "GPUArraysCore"=>"0.2.0 - *", "Gamma"=>"1.1.0 - *", "GaussQuadrature"=>"0.5.8 - *", "GenericSchur"=>"0.5.8 - *", "GeoFormatTypes"=>"0.4.5 - *", "GeoInterface"=>"1.4.1 - *", "GeometryBasics"=>"0.4.11 - *", "GettextRuntime_jll"=>"0.22.4 - *", "Giflib_jll"=>"5.2.3 - *", "Glib_jll"=>"2.88.3 - *", "Graphics"=>"1.1.3 - *", "Graphite2_jll"=>"1.3.16 - *", "Graphs"=>"1.13.1 - *", "GridLayoutBase"=>"0.11.3 - *", "HarfBuzz_jll"=>"100.14003.0 - *", "HypergeometricFunctions"=>"0.3.30 - *", "IfElse"=>"0.1.1 - *", "ImageAxes"=>"0.6.12 - *", "ImageBase"=>"0.1.7 - *", "ImageCore"=>"0.10.5 - *", "ImageIO"=>"0.6.10 - *", "ImageMetadata"=>"0.9.10 - *", "Imath_jll"=>"3.2.2 - *", "IndirectArrays"=>"1.0.0 - *", "Inflate"=>"0.1.5 - *", "InitialValues"=>"0.3.1 - *", "InlineStrings"=>"1.4.6 - *", "IntegerMathUtils"=>"0.1.4 - *", "IntelOpenMP_jll"=>"2025.2.0 - *", "Interpolations"=>"0.15.2 - *", "IntervalArithmetic"=>"0.22.36 - *", "IntervalSets"=>"0.7.14 - *", "Intervals"=>"1.11.0 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "Isoband"=>"0.1.1 - *", "IterTools"=>"1.10.0 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"0.21.4 - *", "JSON3"=>"1.14.3 - *", "Jieko"=>"0.2.1 - *", "JpegTurbo"=>"0.1.6 - *", "JpegTurbo_jll"=>"3.2.0 - *", "KernelDensity"=>"0.6.12 - *", "Krylov"=>"0.10.9 - *", "KrylovKit"=>"0.9.5 - *", "LAME_jll"=>"3.100.3 - *", "LERC_jll"=>"4.1.0 - *", "LLVMOpenMP_jll"=>"22.1.7 - *", "LaTeXStrings"=>"1.4.1 - *", "LayoutPointers"=>"0.1.17 - *", "LazyArrays"=>"2.12.0 - *", "LazyModules"=>"0.3.1 - *", "LegibleLambdas"=>"0.3.0 - *", "Libffi_jll"=>"3.4.7 - *", "Libglvnd_jll"=>"1.7.1 - *", "Libiconv_jll"=>"1.18.0 - *", "Libmount_jll"=>"2.42.0 - *", "Librsvg_jll"=>"2.58.5 - *", "Libtiff_jll"=>"4.7.3 - *", "Libuuid_jll"=>"2.42.0 - *", "LineSearch"=>"0.1.14 - *", "LineSearches"=>"7.5.1 - *", "LinearSolve"=>"3.26.0 - *", "LogExpFunctions"=>"0.3.29 - *", "LoggingExtras"=>"1.2.0 - *", "Luxor"=>"4.3.0 - *", "LuxorGraphPlot"=>"0.5.1 - *", "LuxurySparse"=>"0.7.5 - *", "MKL_jll"=>"2025.2.0 - *", "MLStyle"=>"0.4.17 - *", "MPC_jll"=>"1.4.1 - *", "MacroTools"=>"0.5.16 - *", "Makie"=>"0.21.18 - *", "MakieCore"=>"0.8.12 - *", "ManualMemory"=>"0.1.8 - *", "MappedArrays"=>"0.4.3 - *", "MarchingCubes"=>"0.1.11 - *", "MathOptInterface"=>"1.48.0 - *", "MathTeXEngine"=>"0.6.9 - *", "MatrixFactorizations"=>"3.1.3 - *", "MaybeInplace"=>"0.1.8 - *", "Measurements"=>"2.14.1 - *", "MicroCollections"=>"0.2.0 - *", "Missings"=>"1.2.0 - *", "Mocking"=>"0.8.1 - *", "MosaicViews"=>"0.3.4 - *", "Moshi"=>"0.3.12 - *", "MuladdMacro"=>"0.2.7 - *", "MutableArithmetics"=>"1.8.0 - *", "NLSolversBase"=>"7.10.0 - *", "NaNMath"=>"1.1.4 - *", "NearestNeighbors"=>"0.4.29 - *", "Netpbm"=>"1.1.1 - *", "NonlinearSolve"=>"4.12.0 - *", "NonlinearSolveBase"=>"2.0.0 - *", "NonlinearSolveFirstOrder"=>"1.9.0 - *", "NonlinearSolveQuasiNewton"=>"1.10.0 - *", "NonlinearSolveSpectralMethods"=>"1.5.0 - *", "OMEinsum"=>"0.8.8 - *", "OMEinsumContractionOrders"=>"0.9.11 - *", "Observables"=>"0.5.5 - *", "OffsetArrays"=>"1.17.0 - *", "Ogg_jll"=>"1.3.6 - *", "OpenBLASConsistentFPCSR_jll"=>"0.3.34 - *", "OpenEXR"=>"0.3.3 - *", "OpenEXR_jll"=>"3.4.14 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optim"=>"1.13.3 - *", "Opus_jll"=>"1.6.1 - *", "OrderedCollections"=>"1.8.2 - *", "OrdinaryDiffEq"=>"6.101.0 - *", "OrdinaryDiffEqAdamsBashforthMoulton"=>"1.5.0 - *", "OrdinaryDiffEqBDF"=>"1.10.1 - *", "OrdinaryDiffEqCore"=>"1.36.0 - *", "OrdinaryDiffEqDefault"=>"1.8.0 - *", "OrdinaryDiffEqDifferentiation"=>"1.16.1 - *", "OrdinaryDiffEqExplicitRK"=>"1.4.0 - *", "OrdinaryDiffEqExponentialRK"=>"1.8.0 - *", "OrdinaryDiffEqExtrapolation"=>"1.9.0 - *", "OrdinaryDiffEqFIRK"=>"1.16.0 - *", "OrdinaryDiffEqFeagin"=>"1.4.0 - *", "OrdinaryDiffEqFunctionMap"=>"1.5.0 - *", "OrdinaryDiffEqHighOrderRK"=>"1.5.0 - *", "OrdinaryDiffEqIMEXMultistep"=>"1.7.0 - *", "OrdinaryDiffEqLinear"=>"1.6.0 - *", "OrdinaryDiffEqLowOrderRK"=>"1.6.0 - *", "OrdinaryDiffEqLowStorageRK"=>"1.7.0 - *", "OrdinaryDiffEqNonlinearSolve"=>"1.15.0 - *", "OrdinaryDiffEqNordsieck"=>"1.4.0 - *", "OrdinaryDiffEqPDIRK"=>"1.6.0 - *", "OrdinaryDiffEqPRK"=>"1.4.0 - *", "OrdinaryDiffEqQPRK"=>"1.4.0 - *", "OrdinaryDiffEqRKN"=>"1.5.0 - *", "OrdinaryDiffEqRosenbrock"=>"1.18.1 - *", "OrdinaryDiffEqSDIRK"=>"1.7.0 - *", "OrdinaryDiffEqSSPRK"=>"1.7.0 - *", "OrdinaryDiffEqStabilizedIRK"=>"1.6.0 - *", "OrdinaryDiffEqStabilizedRK"=>"1.4.0 - *", "OrdinaryDiffEqSymplecticRK"=>"1.7.0 - *", "OrdinaryDiffEqTsit5"=>"1.5.0 - *", "OrdinaryDiffEqVerner"=>"1.6.0 - *", "PDMats"=>"0.11.41 - *", "PNGFiles"=>"0.4.5 - *", "PackageExtensionCompat"=>"1.0.2 - *", "Packing"=>"0.5.1 - *", "PaddedViews"=>"0.5.12 - *", "Pango_jll"=>"1.58.2 - *", "Parsers"=>"2.8.8 - *", "Pixman_jll"=>"0.46.4 - *", "PkgVersion"=>"0.3.3 - *", "PlotUtils"=>"1.4.4 - *", "Polyester"=>"0.7.19 - *", "PolyesterWeave"=>"0.2.2 - *", "PolygonAlgorithms"=>"0.4.0 - *", "PolygonOps"=>"0.1.2 - *", "PositiveFactorizations"=>"0.2.4 - *", "PreallocationTools"=>"0.4.34 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "Primes"=>"0.5.7 - *", "ProgressLogging"=>"0.1.6 - *", "ProgressMeter"=>"1.11.0 - *", "PtrArrays"=>"1.4.0 - *", "QOI"=>"1.0.2 - *", "QuadGK"=>"2.11.3 - *", "RangeArrays"=>"0.3.2 - *", "Ratios"=>"0.4.5 - *", "RecipesBase"=>"1.3.4 - *", "RecursiveArrayTools"=>"3.36.0 - *", "Reexport"=>"1.2.2 - *", "Referenceables"=>"0.1.3 - *", "RelocatableFolders"=>"1.0.1 - *", "Requires"=>"1.3.1 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "RoundingEmulator"=>"0.2.1 - *", "Rsvg"=>"1.1.0 - *", "RuntimeGeneratedFunctions"=>"0.5.25 - *", "SIMD"=>"3.7.2 - *", "SIMDTypes"=>"0.1.0 - *", "SciMLBase"=>"2.146.0 - *", "SciMLJacobianOperators"=>"0.1.12 - *", "SciMLLogging"=>"1.10.1 - *", "SciMLOperators"=>"1.30.0 - *", "SciMLPublic"=>"1.3.0 - *", "SciMLStructures"=>"1.10.5 - *", "Scratch"=>"1.3.0 - *", "Setfield"=>"1.1.2 - *", "ShaderAbstractions"=>"0.4.1 - *", "Showoff"=>"1.1.1 - *", "SignedDistanceFields"=>"0.4.1 - *", "SimpleNonlinearSolve"=>"2.9.0 - *", "SimpleTraits"=>"0.9.6 - *", "SimpleUnPack"=>"1.1.0 - *", "Sixel"=>"0.1.5 - *", "SortingAlgorithms"=>"1.2.3 - *", "SparseMatricesCSR"=>"0.6.12 - *", "SparseMatrixColorings"=>"0.4.28 - *", "SpecialFunctions"=>"2.9.0 - *", "SplittablesBase"=>"0.1.15 - *", "StableRNGs"=>"1.0.4 - *", "StackViews"=>"0.1.2 - *", "Static"=>"1.4.6 - *", "StaticArrayInterface"=>"1.10.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StatsFuns"=>"1.5.3 - *", "StrideArraysCore"=>"0.5.9 - *", "StructArrays"=>"0.6.21 - *", "StructTypes"=>"1.11.0 - *", "Suppressor"=>"0.2.8 - *", "SymEngine"=>"0.12.0 - *", "SymEngine_jll"=>"0.12.0 - *", "SymbolicIndexingInterface"=>"0.3.55 - *", "TZJData"=>"1.6.0 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TensorCore"=>"0.1.1 - *", "ThreadingUtilities"=>"0.5.6 - *", "ThreadsX"=>"0.1.12 - *", "TiffImages"=>"0.11.9 - *", "TimeZones"=>"1.22.2 - *", "TimerOutputs"=>"0.5.29 - *", "TranscodingStreams"=>"0.11.3 - *", "Transducers"=>"0.4.85 - *", "TreeWidthSolver"=>"0.3.5 - *", "TriplotBase"=>"0.1.0 - *", "TruncatedStacktraces"=>"1.4.0 - *", "TupleTools"=>"1.6.0 - *", "UnPack"=>"1.0.2 - *", "UnicodeFun"=>"0.4.1 - *", "UnicodePlots"=>"3.8.4 - *", "Unitful"=>"1.29.0 - *", "UnsafeAtomics"=>"0.3.2 - *", "VectorInterface"=>"0.5.0 - *", "WebP"=>"0.1.3 - *", "WoodburyMatrices"=>"1.1.0 - *", "XML2_jll"=>"2.13.9 - *", "XZ_jll"=>"5.8.3 - *", "Xorg_libX11_jll"=>"1.8.13 - *", "Xorg_libXau_jll"=>"1.0.13 - *", "Xorg_libXdmcp_jll"=>"1.1.6 - *", "Xorg_libXext_jll"=>"1.3.8 - *", "Xorg_libXrender_jll"=>"0.9.12 - *", "Xorg_libxcb_jll"=>"1.17.1 - *", "Xorg_xtrans_jll"=>"1.6.0 - *", "Yao"=>"0.9.1 - *", "YaoAPI"=>"0.4.9 - *", "YaoArrayRegister"=>"0.9.10 - *", "YaoBlocks"=>"0.13.15 - *", "YaoPlots"=>"0.9.4 - *", "YaoSubspaceArrayReg"=>"0.2.2 - *", "YaoSym"=>"0.6.9 - *", "YaoToEinsum"=>"0.2.5 - *", "Zstd_jll"=>"1.5.7 - *", "gdk_pixbuf_jll"=>"2.42.13 - *", "isoband_jll"=>"0.2.3 - *", "libaom_jll"=>"3.14.1 - *", "libass_jll"=>"0.17.5 - *", "libfdk_aac_jll"=>"2.0.4 - *", "libpng_jll"=>"1.6.58 - *", "libsixel_jll"=>"1.10.5 - *", "libvorbis_jll"=>"1.3.8 - *", "libwebp_jll"=>"1.6.0 - *", "oneTBB_jll"=>"2022.3.0 - *", "x264_jll"=>"10164.0.1 - *", "x265_jll"=>"4.1.0 - *")),
"CSV+big20-partial" => (["CSV", "PrecompileTools", "Tables", "OrderedCollections", "Compat", "Preferences", "CodecZlib", "DataAPI", "TranscodingStreams", "FilePathsBase", "IteratorInterfaceExtensions", "TableTraits", "Parsers", "PooledArrays", "InlineStrings", "SentinelArrays", "WeakRefStrings", "DataValueInterfaces", "WorkerUtilities"], Dict("CSV"=>"0.10.17 - 0.10", "CodecZlib"=>"0.7.9 - 0.7", "Compat"=>"4.18.1 - 4", "DataAPI"=>"1.16.0 - 1", "DataValueInterfaces"=>"1", "FilePathsBase"=>"0.9.24 - 0.9", "InlineStrings"=>"1.4.6 - 1", "IteratorInterfaceExtensions"=>"1", "OrderedCollections"=>"2.0.1 - 2", "Parsers"=>"3", "PooledArrays"=>"1.4.3 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "SentinelArrays"=>"1.4.10 - 1", "TableTraits"=>"1.0.1 - 1", "Tables"=>"1.14.0 - 1", "TranscodingStreams"=>"0.11.3 - 0.11", "WeakRefStrings"=>"1.4.3 - 1", "WorkerUtilities"=>"1.6.1 - 1")),
"CSV+manifest-bump-Parsers" => (["CSV", "Parsers", "Tables", "SentinelArrays"], Dict("CSV"=>"0.10.17 - *", "CodecZlib"=>"0.7.9 - *", "Compat"=>"4.18.1 - *", "DataAPI"=>"1.16.0 - *", "DataValueInterfaces"=>"1.0.0 - *", "FilePathsBase"=>"0.9.24 - *", "InlineStrings"=>"1.4.6 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "OrderedCollections"=>"2.0.1 - *", "Parsers"=>"3", "PooledArrays"=>"1.4.3 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "SentinelArrays"=>"1.4.10 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TranscodingStreams"=>"0.11.3 - *", "WeakRefStrings"=>"1.4.3 - *", "WorkerUtilities"=>"1.6.1 - *")),
"ClimaCore+manifest-add-Turing" => (["ClimaCore", "StaticArrays", "ForwardDiff", "DataStructures", "Turing"], Dict("Adapt"=>"4.7.0 - *", "ArrayLayouts"=>"1.12.2 - *", "BandedMatrices"=>"1.12.0 - *", "BlockArrays"=>"1.10.0 - *", "CEnum"=>"0.5.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "ClimaComms"=>"0.6.11 - *", "ClimaCore"=>"0.16.0 - *", "ClimaInterpolations"=>"0.1.2 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "CubedSphere"=>"0.3.4 - *", "DataStructures"=>"0.19.6 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "Distances"=>"0.10.12 - *", "DocStringExtensions"=>"0.9.5 - *", "FillArrays"=>"1.17.0 - *", "ForwardDiff"=>"1.4.5 - *", "GaussQuadrature"=>"0.5.8 - *", "GilbertCurves"=>"0.1.1 - *", "HDF5"=>"0.17.3 - *", "HDF5_jll"=>"2.1.2 - *", "Hwloc_jll"=>"2.14.0 - *", "IntervalSets"=>"0.7.14 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "JuliaNVTXCallbacks_jll"=>"0.2.1 - *", "KrylovKit"=>"0.8.3 - *", "LLVM"=>"9.13.1 - *", "LLVMExtra_jll"=>"0.0.47 - *", "LazyBroadcast"=>"1.0.0 - *", "Libiconv_jll"=>"1.18.0 - *", "LogExpFunctions"=>"1.0.1 - *", "LoggingExtras"=>"1.2.0 - *", "MPIABI_jll"=>"0.1.5 - *", "MPICH_jll"=>"5.0.1 - *", "MPIPreferences"=>"0.1.12 - *", "MPItrampoline_jll"=>"5.5.6 - *", "MacroTools"=>"0.5.16 - *", "MicrosoftMPI_jll"=>"10.1.4 - *", "MultiBroadcastFusion"=>"0.3.4 - *", "NVTX"=>"1.0.3 - *", "NVTX_jll"=>"3.2.2 - *", "NaNMath"=>"1.1.4 - *", "OpenMPI_jll"=>"5.0.11 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"2.0.1 - *", "PackageExtensionCompat"=>"1.0.2 - *", "PkgVersion"=>"0.3.3 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "RecipesBase"=>"1.3.4 - *", "Requires"=>"1.3.1 - *", "RootSolvers"=>"1.1.0 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "TaylorSeries"=>"0.20.10 - *", "Turing"=>"0.48", "UnrolledUtilities"=>"0.1.10 - *", "VectorInterface"=>"0.4.9 - *", "XML2_jll"=>"2.13.9 - *", "Xorg_libpciaccess_jll"=>"0.19.0 - *", "aws_c_auth_jll"=>"0.9.6 - *", "aws_c_cal_jll"=>"0.9.13 - *", "aws_c_common_jll"=>"0.12.6 - *", "aws_c_compression_jll"=>"0.3.2 - *", "aws_c_http_jll"=>"0.10.15 - *", "aws_c_io_jll"=>"0.26.3 - *", "aws_c_s3_jll"=>"0.11.5 - *", "aws_c_sdkutils_jll"=>"0.2.4 - *", "aws_checksums_jll"=>"0.2.10 - *", "dlfcn_win32_jll"=>"1.4.2 - *", "libaec_jll"=>"1.1.7 - *", "mpif_jll"=>"0.1.7 - *", "s2n_tls_jll"=>"1.7.8 - *")),
"Convex+add-Images" => (["Convex", "BenchmarkTools", "MathOptInterface", "OrderedCollections", "Images"], Dict("BenchmarkTools"=>"1.8.0 - 1", "Convex"=>"0.16.7 - 0.16", "Images"=>"0.26.2 - 0.26", "MathOptInterface"=>"1.53.0 - 1", "OrderedCollections"=>"2.0.1 - 2")),
"Convex+manifest-add-Images" => (["Convex", "BenchmarkTools", "MathOptInterface", "OrderedCollections", "Images"], Dict("AMD"=>"0.5.4 - *", "AbstractTrees"=>"0.4.5 - *", "BenchmarkTools"=>"1.8.0 - *", "Bzip2_jll"=>"1.0.9 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CodecBzip2"=>"0.8.5 - *", "CodecZlib"=>"0.7.9 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "Convex"=>"0.16.7 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DocStringExtensions"=>"0.9.5 - *", "ForwardDiff"=>"1.4.5 - *", "Images"=>"0.26.2 - 0.26", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"1.8.0 - *", "LDLFactorizations"=>"0.10.2 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "MathOptInterface"=>"1.53.0 - *", "MutableArithmetics"=>"1.8.0 - *", "NaNMath"=>"1.1.4 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"2.0.1 - *", "Parsers"=>"3.0.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StructUtils"=>"2.8.5 - *", "TranscodingStreams"=>"0.11.3 - *")),
"DataFrames+big20-partial" => (["DataFrames", "Statistics", "Reexport", "PrecompileTools", "DataStructures", "Tables", "OrderedCollections", "Compat", "Preferences", "PrettyTables", "LaTeXStrings", "Crayons", "Missings", "DataAPI", "IteratorInterfaceExtensions", "TableTraits", "InvertedIndices", "Parsers", "PooledArrays", "InlineStrings", "SentinelArrays"], Dict("Compat"=>"4.18.1 - 4", "Crayons"=>"4.2.0 - 4", "DataAPI"=>"1.16.0 - 1", "DataFrames"=>"1.8.2 - 1", "DataStructures"=>"0.19.6 - 0.19", "InlineStrings"=>"2.0.1 - 2", "InvertedIndices"=>"1.3.1 - 1", "IteratorInterfaceExtensions"=>"1", "LaTeXStrings"=>"1.4.1 - 1", "Missings"=>"1.2.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "Parsers"=>"3", "PooledArrays"=>"1.4.3 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "PrettyTables"=>"3.4.8 - 3", "Reexport"=>"1.2.2 - 1", "SentinelArrays"=>"1.4.10 - 1", "Statistics"=>"1.11.5 - 1", "TableTraits"=>"1.0.1 - 1", "Tables"=>"1.14.0 - 1")),
"Franklin+big10-partial" => (["Franklin", "FranklinTemplates", "JLLWrappers", "PrecompileTools", "DocStringExtensions", "JSON", "HTTP", "DelimitedFiles", "OrderedCollections", "Preferences", "CodecZlib", "URIs"], Dict("CodecZlib"=>"0.7.9 - 0.7", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "Franklin"=>"0.10.97 - 0.10", "FranklinTemplates"=>"0.10.4 - 0.10", "HTTP"=>"2.6.7 - 2", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "OrderedCollections"=>"1.8.2 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "URIs"=>"1.7.0 - 1")),
"Gadfly+big20-upgrade" => (["Gadfly", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "OrderedCollections", "MacroTools", "Interpolations", "Requires", "Colors", "Distances", "Compat", "ChainRulesCore", "Adapt"], Dict("Adapt"=>"4.7.0 - 4", "ChainRulesCore"=>"1.26.1 - 1", "Colors"=>"0.13.1 - 0.13", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "Distances"=>"0.10.12 - 0.10", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "Gadfly"=>"1.4.1 - 1", "Interpolations"=>"0.16.3 - 0.16", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Gen+add-Lux" => (["Gen", "Distributions", "ForwardDiff", "JSON", "Lux"], Dict("Distributions"=>"0.25.131 - 0.25", "ForwardDiff"=>"0.10.39 - 0.10", "Gen"=>"0.4.8 - 0.4", "JSON"=>"0.21.4 - 0.21", "Lux"=>"1.31.4 - 1")),
"Gen+add-ModelingToolkit" => (["Gen", "Distributions", "ForwardDiff", "JSON", "ModelingToolkit"], Dict("Distributions"=>"0.25.131 - 0.25", "ForwardDiff"=>"0.10.39 - 0.10", "Gen"=>"0.4.8 - 0.4", "JSON"=>"0.21.4 - 0.21", "ModelingToolkit"=>"11.41.0 - 11")),
"Gen+big20-partial" => (["Gen", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ForwardDiff", "OrderedCollections", "MacroTools", "Parameters", "Compat", "ChainRulesCore", "Preferences", "QuadGK", "Roots"], Dict("ChainRulesCore"=>"1.26.1 - 1", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.18.22 - 0.18", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "Gen"=>"0.4.8 - 0.4", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"1.8.2 - 1", "Parameters"=>"0.13.1 - 0.13", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "QuadGK"=>"2.11.3 - 2", "Reexport"=>"1.2.2 - 1", "Roots"=>"3.0.8 - 3", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Gen+bump2-ForwardDiff-JSON" => (["Gen", "Distributions", "ForwardDiff", "JSON"], Dict("Distributions"=>"0.25.131 - 0.25", "ForwardDiff"=>"1.4.5 - 1", "Gen"=>"0.4.8 - 0.4", "JSON"=>"1.8.0 - 1")),
"GeoStats+manifest-add-ModelingToolkit" => (["GeoStats", "Unitful", "Meshes", "GeoStatsBase", "ModelingToolkit"], Dict("ADTypes"=>"1.24.0 - *", "AbstractFFTs"=>"1.5.0 - *", "AbstractTrees"=>"0.4.5 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"4.7.0 - *", "AdaptivePredicates"=>"1.2.0 - *", "AliasTables"=>"1.1.3 - *", "ArnoldiMethod"=>"0.4.0 - *", "ArrayInterface"=>"7.30.1 - *", "AxisAlgorithms"=>"1.1.0 - *", "AxisArrays"=>"0.4.8 - *", "BangBang"=>"0.4.9 - *", "Bessels"=>"0.2.8 - *", "BitFlags"=>"0.1.10 - *", "CRlibm"=>"1.0.2 - *", "CRlibm_jll"=>"1.0.1 - *", "CatIndices"=>"0.2.2 - *", "CategoricalArrays"=>"1.1.1 - *", "Chain"=>"1.0.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "ChunkSplitters"=>"3.2.0 - *", "CircularArrays"=>"1.5.0 - *", "Clustering"=>"0.15.8 - *", "CoDa"=>"1.5.1 - *", "CodecZlib"=>"0.7.9 - *", "CodecZstd"=>"0.8.7 - *", "ColorSchemes"=>"3.31.0 - *", "ColorTypes"=>"0.12.1 - *", "ColorVectorSpace"=>"0.11.0 - *", "Colorfy"=>"2.2.2 - *", "Colors"=>"0.13.1 - *", "ColumnSelectors"=>"1.0.0 - *", "Combinatorics"=>"1.1.0 - *", "CommonSolve"=>"0.2.14 - *", "CommonSubexpressions"=>"0.3.1 - *", "CommonWorldInvalidations"=>"1.2.2 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ComputationalResources"=>"0.3.2 - *", "ConcurrentUtilities"=>"2.6.0 - *", "ConstructionBase"=>"1.6.0 - *", "CoordGridTransforms"=>"0.1.11 - *", "CoordRefSystems"=>"0.20.0 - *", "CoreMath"=>"0.1.0 - *", "CoreMath_jll"=>"0.1.0 - *", "CpuId"=>"0.3.1 - *", "Crayons"=>"4.2.0 - *", "CustomUnitRanges"=>"1.0.2 - *", "DataAPI"=>"1.16.0 - *", "DataDeps"=>"0.7.14 - *", "DataScienceTraits"=>"1.2.3 - *", "DataStructures"=>"0.19.6 - *", "DataValueInterfaces"=>"1.0.0 - *", "DecisionTree"=>"0.12.4 - *", "DelaunayTriangulation"=>"1.6.6 - *", "DelimitedFiles"=>"1.9.1 - *", "DensityInterface"=>"0.4.0 - *", "DensityRatioEstimation"=>"1.4.0 - *", "Dictionaries"=>"0.4.6 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DifferentiationInterface"=>"0.7.21 - *", "Distances"=>"0.10.12 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "EnumX"=>"1.0.7 - *", "ExactPredicates"=>"2.2.9 - *", "ExceptionUnwrapping"=>"0.1.11 - *", "FFTViews"=>"0.3.2 - *", "FFTW"=>"1.10.0 - *", "FFTW_jll"=>"3.3.12 - *", "FileIO"=>"1.20.0 - *", "FillArrays"=>"1.17.0 - *", "FiniteDiff"=>"2.33.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "ForwardDiff"=>"1.4.5 - *", "GLM"=>"1.9.5 - *", "GPUArraysCore"=>"0.2.0 - *", "Gamma"=>"1.2.0 - *", "GeoStats"=>"0.90.0 - *", "GeoStatsBase"=>"0.49.3 - *", "GeoStatsFunctions"=>"0.16.5 - *", "GeoStatsModels"=>"0.13.12 - *", "GeoStatsProcesses"=>"0.13.2 - *", "GeoStatsTransforms"=>"0.14.20 - *", "GeoStatsValidation"=>"0.4.10 - *", "GeoTIFF"=>"0.5.1 - *", "GeoTables"=>"1.29.2 - *", "HAdaptiveIntegration"=>"1.1.1 - *", "HTTP"=>"1.11.0 - *", "HashArrayMappedTries"=>"0.2.0 - *", "HypergeometricFunctions"=>"0.3.30 - *", "IfElse"=>"0.1.1 - *", "ImageBase"=>"0.1.7 - *", "ImageCore"=>"0.10.5 - *", "ImageFiltering"=>"0.7.12 - *", "Indexing"=>"1.1.1 - *", "IndirectArrays"=>"1.0.0 - *", "Inflate"=>"0.1.5 - *", "InitialValues"=>"0.3.1 - *", "IntegrationInterface"=>"0.1.3 - *", "IntelOpenMP_jll"=>"2025.2.0 - *", "Interpolations"=>"0.16.3 - *", "IntervalArithmetic"=>"1.0.11 - *", "IntervalSets"=>"0.7.14 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "IterTools"=>"1.10.0 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"1.8.0 - *", "LaTeXStrings"=>"1.4.1 - *", "LineSearches"=>"7.8.1 - *", "LogExpFunctions"=>"1.0.1 - *", "LoggingExtras"=>"1.2.0 - *", "LossFunctions"=>"1.2.2 - *", "MKL_jll"=>"2025.2.0 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MbedTLS"=>"1.1.10 - *", "MbedTLS_jll"=>"2.28.1010 - *", "Meshes"=>"0.58.3 - *", "Missings"=>"1.2.0 - *", "ModelingToolkit"=>"11.41.0 - 11", "MosaicViews"=>"0.3.4 - *", "NLSolversBase"=>"8.0.1 - *", "NaNMath"=>"1.1.4 - *", "NearestNeighbors"=>"0.4.29 - *", "NelderMead"=>"0.4.0 - *", "OffsetArrays"=>"1.17.0 - *", "OhMyThreads"=>"0.8.6 - *", "OpenBLASConsistentFPCSR_jll"=>"0.3.34 - *", "OpenSSL"=>"1.6.1 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optim"=>"2.3.1 - *", "OrderedCollections"=>"2.0.1 - *", "PDMats"=>"0.11.41 - *", "PaddedViews"=>"0.5.12 - *", "Parsers"=>"3.0.0 - *", "PkgVersion"=>"0.3.3 - *", "PositiveFactorizations"=>"0.2.4 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrettyTables"=>"3.4.8 - *", "ProgressMeter"=>"1.11.0 - *", "PtrArrays"=>"1.4.0 - *", "QuadGK"=>"2.11.3 - *", "Quaternions"=>"0.7.7 - *", "RangeArrays"=>"0.3.2 - *", "Ratios"=>"0.4.5 - *", "RealDot"=>"0.1.0 - *", "RecipesBase"=>"1.3.4 - *", "Reexport"=>"1.2.2 - *", "Requires"=>"1.3.1 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "Rotations"=>"1.7.1 - *", "RoundingEmulator"=>"0.2.1 - *", "SIMD"=>"3.7.2 - *", "SciMLPublic"=>"1.3.0 - *", "ScikitLearnBase"=>"0.5.0 - *", "ScopedValues"=>"1.6.2 - *", "Scratch"=>"1.3.0 - *", "Setfield"=>"1.1.2 - *", "ShiftedArrays"=>"2.0.0 - *", "SimpleBufferStream"=>"1.2.0 - *", "SortingAlgorithms"=>"1.2.3 - *", "SpecialFunctions"=>"2.9.0 - *", "SpectralIndices"=>"0.2.20 - *", "SplitApplyCombine"=>"1.3.0 - *", "StableTasks"=>"0.1.7 - *", "StackViews"=>"0.1.2 - *", "Static"=>"1.4.6 - *", "StaticArrayInterface"=>"1.10.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StatsFuns"=>"2.2.1 - *", "StatsLearnModels"=>"1.3.1 - *", "StatsModels"=>"0.7.10 - *", "StringManipulation"=>"0.5.0 - *", "StructUtils"=>"2.8.5 - *", "TableDistances"=>"1.2.0 - *", "TableTraits"=>"1.0.1 - *", "TableTransforms"=>"1.38.10 - *", "Tables"=>"1.14.0 - *", "TaskLocalValues"=>"0.1.3 - *", "TensorCore"=>"0.1.1 - *", "TiffImages"=>"0.11.9 - *", "TiledIteration"=>"0.5.0 - *", "TranscodingStreams"=>"0.11.3 - *", "TransformsBase"=>"1.6.0 - *", "TypedTables"=>"1.4.6 - *", "URIs"=>"1.7.0 - *", "Unitful"=>"1.29.0 - *", "WoodburyMatrices"=>"1.1.0 - *", "Zstd_jll"=>"1.5.7 - *", "oneTBB_jll"=>"2022.3.0 - *")),
"GeometricFlux+add-Symbolics" => (["GeometricFlux", "StatsBase", "Flux", "DataStructures", "Symbolics"], Dict("DataStructures"=>"0.18.22 - 0.18", "Flux"=>"0.14.25 - 0.14", "GeometricFlux"=>"0.14", "StatsBase"=>"0.34.13 - 0.34", "Symbolics"=>"7.39.0 - 7")),
"GeometricFlux+big20-partial" => (["GeometricFlux", "Statistics", "JLLWrappers", "StaticArrays", "DataFrames", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "CSV", "ForwardDiff", "HTTP", "DelimitedFiles", "Tables", "OrderedCollections", "Graphs", "Unitful", "MacroTools", "JLD2"], Dict("CSV"=>"0.10.17 - 0.10", "DataFrames"=>"1.8.2 - 1", "DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "GeometricFlux"=>"0.14", "Graphs"=>"1.11.2 - 1", "HTTP"=>"1.11.0 - 1", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"GeometricFlux+big20-upgrade" => (["GeometricFlux", "Statistics", "JLLWrappers", "StaticArrays", "DataFrames", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "CSV", "ForwardDiff", "HTTP", "DelimitedFiles", "Tables", "OrderedCollections", "Graphs", "Unitful", "MacroTools", "JLD2"], Dict("CSV"=>"0.10.17 - 0.10", "DataFrames"=>"1.8.2 - 1", "DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "GeometricFlux"=>"0.14", "Graphs"=>"1.14.0 - 1", "HTTP"=>"2.6.7 - 2", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"GeometricFlux+bump2-Flux-DataStructures" => (["GeometricFlux", "StatsBase", "Flux", "DataStructures"], Dict("DataStructures"=>"0.19.6 - 0.19", "Flux"=>"0.16.11 - 0.16", "GeometricFlux"=>"0.14", "StatsBase"=>"0.34.13 - 0.34")),
"Images+big20-partial" => (["Images", "Statistics", "JLLWrappers", "StaticArrays", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "OrderedCollections", "FFTW", "Graphs", "RecipesBase", "MacroTools", "JLD2", "Parameters", "Interpolations", "FileIO"], Dict("DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "FileIO"=>"1.20.0 - 1", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "Images"=>"0.26.2 - 0.26", "Interpolations"=>"0.16.3 - 0.16", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "Parameters"=>"0.12.3 - 0.12", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Images+big20-upgrade" => (["Images", "Statistics", "JLLWrappers", "StaticArrays", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "OrderedCollections", "FFTW", "Graphs", "RecipesBase", "MacroTools", "JLD2", "Parameters", "Interpolations", "FileIO"], Dict("DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "FileIO"=>"1.20.0 - 1", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "Images"=>"0.26.2 - 0.26", "Interpolations"=>"0.16.3 - 0.16", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "Parameters"=>"0.13.1 - 0.13", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Knet+big10-partial" => (["Knet", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "OrderedCollections", "MacroTools", "JLD2"], Dict("DocStringExtensions"=>"0.9.5 - 0.9", "JLD2"=>"0.4.55 - 0.4", "JLLWrappers"=>"1.8.0 - 1", "Knet"=>"1.4.10 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1")),
"Knet+big10-upgrade" => (["Knet", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "OrderedCollections", "MacroTools", "JLD2"], Dict("DocStringExtensions"=>"0.9.5 - 0.9", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "Knet"=>"1.4.10 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1")),
"Knet+big20-upgrade" => (["Knet", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "OrderedCollections", "MacroTools", "JLD2", "FileIO", "Requires", "Colors", "Compat", "ChainRulesCore", "Adapt", "Preferences", "CUDA", "OffsetArrays", "CEnum"], Dict("Adapt"=>"4.7.0 - 4", "CEnum"=>"0.5", "CUDA"=>"6.3.1 - 6", "ChainRulesCore"=>"1.26.1 - 1", "Colors"=>"0.13.1 - 0.13", "Compat"=>"4.18.1 - 4", "DocStringExtensions"=>"0.9.5 - 0.9", "FileIO"=>"1.20.0 - 1", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "Knet"=>"1.4.10 - 1", "MacroTools"=>"0.5.16 - 0.5", "OffsetArrays"=>"1.17.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1")),
"Knet+bump-CUDA" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"6.3.1 - 6", "JLD2"=>"0.4.55 - 0.4", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.8.21 - 0.8")),
"Knet+bump-JLD2" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("CUDA"=>"3.13.1 - 3", "JLD2"=>"0.6.6 - 0.6", "Knet"=>"1.4.10 - 1", "NNlib"=>"0.8.21 - 0.8")),
"Knet+manifest-bump-JLD2" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("AbstractFFTs"=>"1.5.0 - *", "Adapt"=>"3.7.2 - *", "Atomix"=>"0.1.0 - *", "AutoGrad"=>"1.2.5 - *", "BFloat16s"=>"0.2.0 - *", "Bzip2_jll"=>"1.0.9 - *", "CEnum"=>"0.4.2 - *", "CUDA"=>"3.13.1 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "ColorTypes"=>"0.11.5 - *", "ColorVectorSpace"=>"0.9.10 - *", "Colors"=>"0.12.11 - *", "Compat"=>"4.18.1 - *", "DocStringExtensions"=>"0.9.5 - *", "EnzymeCore"=>"0.8.21 - *", "ExprTools"=>"0.1.11 - *", "FFTW_jll"=>"3.3.12 - *", "FileIO"=>"1.20.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "GPUArrays"=>"8.8.1 - *", "GPUArraysCore"=>"0.1.5 - *", "GPUCompiler"=>"0.17.3 - *", "Ghostscript_jll"=>"9.55.1 - *", "Giflib_jll"=>"5.2.3 - *", "Graphics"=>"1.1.3 - *", "ImageCore"=>"0.9.4 - *", "ImageMagick"=>"1.4.2 - *", "ImageMagick_jll"=>"7.1.2029 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - *", "JpegTurbo_jll"=>"3.2.0 - *", "KernelAbstractions"=>"0.9.42 - *", "Knet"=>"1.4.10 - *", "LERC_jll"=>"4.1.0 - *", "LLVM"=>"4.17.1 - *", "LLVMExtra_jll"=>"0.0.18 - *", "Libglvnd_jll"=>"1.7.1 - *", "Libtiff_jll"=>"4.7.3 - *", "LittleCMS_jll"=>"2.19.1 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MosaicViews"=>"0.3.4 - *", "NNlib"=>"0.8.21 - *", "NaNMath"=>"1.1.4 - *", "OffsetArrays"=>"1.17.0 - *", "OpenJpeg_jll"=>"2.5.5 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"1.8.2 - *", "PaddedViews"=>"0.5.12 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "Random123"=>"1.7.1 - *", "RandomNumbers"=>"1.6.0 - *", "Reexport"=>"1.2.2 - *", "Requires"=>"1.3.1 - *", "SpecialFunctions"=>"2.9.0 - *", "StackViews"=>"0.1.2 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "TensorCore"=>"0.1.1 - *", "TimerOutputs"=>"0.5.29 - *", "TranscodingStreams"=>"0.11.3 - *", "UnsafeAtomics"=>"0.2.1 - *", "XZ_jll"=>"5.8.3 - *", "Xorg_libX11_jll"=>"1.8.13 - *", "Xorg_libXau_jll"=>"1.0.13 - *", "Xorg_libXdmcp_jll"=>"1.1.6 - *", "Xorg_libXext_jll"=>"1.3.8 - *", "Xorg_libxcb_jll"=>"1.17.1 - *", "Xorg_xtrans_jll"=>"1.6.0 - *", "Zstd_jll"=>"1.5.7 - *", "libpng_jll"=>"1.6.58 - *", "libwebp_jll"=>"1.6.0 - *", "libzip_jll"=>"1.11.4 - *")),
"Metatheory+big10-upgrade" => (["Metatheory", "Reexport", "DocStringExtensions", "DataStructures", "OrderedCollections", "Compat", "TimerOutputs", "AutoHashEquals", "ExprTools", "TermInterface"], Dict("AutoHashEquals"=>"2.2.0 - 2", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "ExprTools"=>"0.1.11 - 0.1", "Metatheory"=>"2.0.2 - 2", "OrderedCollections"=>"2.0.1 - 2", "Reexport"=>"1.2.2 - 1", "TermInterface"=>"2", "TimerOutputs"=>"1.2.1 - 1")),
"Metatheory+bump2-TimerOutputs-TermInterface" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("DataStructures"=>"0.18.22 - 0.18", "Metatheory"=>"2.0.2 - 2", "TermInterface"=>"2", "TimerOutputs"=>"1.2.1 - 1")),
"Metatheory+upgrade-direct" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("DataStructures"=>"0.19.6 - 0.19", "Metatheory"=>"2.0.2 - 2", "TermInterface"=>"2", "TimerOutputs"=>"1.2.1 - 1")),
"ModelingToolkit+big20-upgrade" => (["ModelingToolkit", "ModelingToolkitTearing", "ModelingToolkitBase", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ForwardDiff", "Tables", "OrderedCollections", "Graphs", "RecipesBase", "MacroTools", "Combinatorics", "SciMLBase", "Compat", "ChainRulesCore", "Adapt", "Preferences"], Dict("Adapt"=>"4.7.0 - 4", "ChainRulesCore"=>"1.26.1 - 1", "Combinatorics"=>"1.1.0 - 1", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "ModelingToolkit"=>"11.41.0 - 11", "ModelingToolkitBase"=>"1.68.2 - 1", "ModelingToolkitTearing"=>"1.20.6 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SciMLBase"=>"3.51.0 - 3", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "Tables"=>"1.14.0 - 1")),
"Molly+big20-partial" => (["Molly", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter", "Tables", "OrderedCollections", "FFTW", "Graphs", "Unitful", "RecipesBase", "MacroTools", "Parameters", "Requires"], Dict("DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "Graphs"=>"1.14.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "Molly"=>"0.23.3 - 0.23", "OrderedCollections"=>"2.0.1 - 2", "Parameters"=>"0.12.3 - 0.12", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"Oceananigans+big10-partial" => (["Oceananigans", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "Tables", "OrderedCollections", "FFTW", "RecipesBase"], Dict("DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "Oceananigans"=>"0.111", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "Tables"=>"1.14.0 - 1")),
"Rasters+big20-partial" => (["Rasters", "Statistics", "Reexport", "PrecompileTools", "DataStructures", "ProgressMeter", "Tables", "OrderedCollections", "RecipesBase", "MacroTools", "Adapt", "Preferences", "FillArrays", "OffsetArrays", "Setfield", "ColorTypes", "IntervalSets", "FixedPointNumbers", "ConstructionBase", "Missings", "DataAPI"], Dict("Adapt"=>"4.7.0 - 4", "ColorTypes"=>"0.12.1 - 0.12", "ConstructionBase"=>"1.6.0 - 1", "DataAPI"=>"1.16.0 - 1", "DataStructures"=>"0.19.6 - 0.19", "FillArrays"=>"1.17.0 - 1", "FixedPointNumbers"=>"0.9.1 - 0.9", "IntervalSets"=>"0.7.14 - 0.7", "MacroTools"=>"0.5.16 - 0.5", "Missings"=>"1.2.0 - 1", "OffsetArrays"=>"1.17.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "ProgressMeter"=>"1.11.0 - 1", "Rasters"=>"0.15", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Setfield"=>"1.1.2 - 1", "Statistics"=>"1.11.5 - 1", "Tables"=>"1.14.0 - 1")),
"Soss+big20-partial" => (["Soss", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ForwardDiff", "Tables", "OrderedCollections", "RecipesBase", "MacroTools", "Parameters", "Requires", "Combinatorics", "JSON3"], Dict("Combinatorics"=>"1.1.0 - 1", "DataStructures"=>"0.18.22 - 0.18", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "JSON3"=>"1.14.3 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"1.8.2 - 1", "Parameters"=>"0.13.1 - 0.13", "PrecompileTools"=>"1.3.4 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "Soss"=>"0.21.2 - 0.21", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1")),
"Soss+bump-DataStructures" => (["Soss", "Distributions", "StatsBase", "DataStructures"], Dict("DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "Soss"=>"0.21.2 - 0.21", "StatsBase"=>"0.33.22 - 0.33")),
"Soss+bump2-StatsBase-DataStructures" => (["Soss", "Distributions", "StatsBase", "DataStructures"], Dict("DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "Soss"=>"0.21.2 - 0.21", "StatsBase"=>"0.34.13 - 0.34")),
"Symbolics+big20-upgrade" => (["Symbolics", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ForwardDiff", "OrderedCollections", "Graphs", "RecipesBase", "MacroTools", "Combinatorics", "Compat", "ChainRulesCore", "Adapt", "Preferences", "AbstractTrees", "RecursiveArrayTools"], Dict("AbstractTrees"=>"0.4.5 - 0.4", "Adapt"=>"4.7.0 - 4", "ChainRulesCore"=>"1.26.1 - 1", "Combinatorics"=>"1.1.0 - 1", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "RecipesBase"=>"1.3.4 - 1", "RecursiveArrayTools"=>"4.5.1 - 4", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "Symbolics"=>"7.39.0 - 7")),
"Transformers+big10-partial" => (["Transformers", "Statistics", "JLLWrappers", "StaticArrays", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter"], Dict("DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "JLLWrappers"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Transformers"=>"0.3.1 - 0.3")),
"Transformers+big20-partial" => (["Transformers", "Statistics", "JLLWrappers", "StaticArrays", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "HTTP", "DelimitedFiles", "Tables", "OrderedCollections", "MacroTools", "Requires", "JSON3", "Compat", "ChainRulesCore"], Dict("ChainRulesCore"=>"1.26.1 - 1", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "HTTP"=>"1.11.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "JSON3"=>"1.14.3 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Transformers"=>"0.3.1 - 0.3")),
"Transformers+big20-upgrade" => (["Transformers", "Statistics", "JLLWrappers", "StaticArrays", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "HTTP", "DelimitedFiles", "Tables", "OrderedCollections", "MacroTools", "Requires", "JSON3", "Compat", "ChainRulesCore"], Dict("ChainRulesCore"=>"1.26.1 - 1", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "HTTP"=>"2.6.7 - 2", "JLLWrappers"=>"1.8.0 - 1", "JSON3"=>"1.14.3 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Transformers"=>"0.3.1 - 0.3")),
"Yao+manifest-add-ModelingToolkit" => (["Yao", "YaoBlocks", "YaoArrayRegister", "LuxurySparse", "ModelingToolkit"], Dict("AbstractTrees"=>"0.4.5 - *", "Adapt"=>"4.7.0 - *", "AliasTables"=>"1.1.3 - *", "ArnoldiMethod"=>"0.4.0 - *", "Automa"=>"1.2.0 - *", "BaseDirs"=>"1.4.0 - *", "BatchedRoutines"=>"0.2.2 - *", "BitBasis"=>"0.9.10 - *", "Bzip2_jll"=>"1.0.9 - *", "CEnum"=>"0.5.0 - *", "CacheServers"=>"0.2.0 - *", "Cairo"=>"1.1.1 - *", "Cairo_jll"=>"1.18.7 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CliqueTrees"=>"1.19.6 - *", "Collects"=>"1.1.0 - *", "ColorTypes"=>"0.12.1 - *", "ColorVectorSpace"=>"0.11.0 - *", "Colors"=>"0.13.1 - *", "Combinatorics"=>"1.1.0 - *", "Compat"=>"4.18.1 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.19.6 - *", "DocStringExtensions"=>"0.9.5 - *", "EarCut_jll"=>"2.2.4 - *", "Expat_jll"=>"2.8.3 - *", "FFMPEG"=>"0.4.5 - *", "FFMPEG_jll"=>"8.1.2 - *", "FileIO"=>"1.20.0 - *", "FillArrays"=>"1.17.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "FixedSizeArrays"=>"1.3.0 - *", "Fontconfig_jll"=>"2.17.1 - *", "FreeType"=>"4.1.1 - *", "FreeType2_jll"=>"2.14.3 - *", "FreeTypeAbstraction"=>"0.10.8 - *", "FriBidi_jll"=>"1.0.17 - *", "GeometryBasics"=>"0.5.12 - *", "GettextRuntime_jll"=>"0.22.4 - *", "Glib_jll"=>"2.88.3 - *", "Graphics"=>"1.1.3 - *", "Graphite2_jll"=>"1.3.16 - *", "Graphs"=>"1.14.0 - *", "HarfBuzz_jll"=>"100.14003.0 - *", "Inflate"=>"0.1.5 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"1.8.0 - *", "JpegTurbo_jll"=>"3.2.0 - *", "KrylovKit"=>"0.10.4 - *", "LAME_jll"=>"3.100.3 - *", "LERC_jll"=>"4.1.0 - *", "LLVMOpenMP_jll"=>"22.1.7 - *", "LaTeXStrings"=>"1.4.1 - *", "LegibleLambdas"=>"0.3.0 - *", "Libffi_jll"=>"3.4.7 - *", "Libiconv_jll"=>"1.18.0 - *", "Libmount_jll"=>"2.42.0 - *", "Librsvg_jll"=>"2.58.5 - *", "Libtiff_jll"=>"4.7.3 - *", "Libuuid_jll"=>"2.42.0 - *", "LogExpFunctions"=>"1.0.1 - *", "Luxor"=>"4.5.0 - *", "LuxurySparse"=>"0.8.2 - *", "MLStyle"=>"0.4.17 - *", "MPC_jll"=>"1.4.1 - *", "MacroTools"=>"0.5.16 - *", "MathTeXEngine"=>"0.6.9 - *", "Missings"=>"1.2.0 - *", "ModelingToolkit"=>"11.41.0 - 11", "NaNMath"=>"1.1.4 - *", "OMEinsum"=>"0.9.4 - *", "OMEinsumContractionOrders"=>"1.3.0 - *", "Ogg_jll"=>"1.3.6 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Opus_jll"=>"1.6.1 - *", "OrderedCollections"=>"2.0.1 - *", "PackageExtensionCompat"=>"1.0.2 - *", "Pango_jll"=>"1.58.2 - *", "Parsers"=>"3.0.0 - *", "Pixman_jll"=>"0.46.4 - *", "PolygonAlgorithms"=>"0.4.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PtrArrays"=>"1.4.0 - *", "RecipesBase"=>"1.3.4 - *", "Reexport"=>"1.2.2 - *", "RelocatableFolders"=>"1.0.1 - *", "Requires"=>"1.3.1 - *", "Rsvg"=>"1.1.0 - *", "Scratch"=>"1.3.0 - *", "SimpleTraits"=>"0.9.6 - *", "SortingAlgorithms"=>"1.2.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StructUtils"=>"2.8.5 - *", "Suppressor"=>"0.2.8 - *", "SymEngine"=>"0.13.2 - *", "SymEngine_jll"=>"0.12.0 - *", "TensorCore"=>"0.1.1 - *", "TranscodingStreams"=>"0.11.3 - *", "TreeWidthSolver"=>"0.3.5 - *", "TupleTools"=>"1.6.0 - *", "UnicodeFun"=>"0.4.1 - *", "VectorInterface"=>"0.6.0 - *", "XML2_jll"=>"2.13.9 - *", "XZ_jll"=>"5.8.3 - *", "Xorg_libX11_jll"=>"1.8.13 - *", "Xorg_libXau_jll"=>"1.0.13 - *", "Xorg_libXdmcp_jll"=>"1.1.6 - *", "Xorg_libXext_jll"=>"1.3.8 - *", "Xorg_libXfixes_jll"=>"6.0.2 - *", "Xorg_libXrender_jll"=>"0.9.12 - *", "Xorg_libpciaccess_jll"=>"0.19.0 - *", "Xorg_libxcb_jll"=>"1.17.1 - *", "Xorg_xtrans_jll"=>"1.6.0 - *", "Yao"=>"0.9.3 - *", "YaoAPI"=>"0.4.9 - *", "YaoArrayRegister"=>"0.9.13 - *", "YaoBlocks"=>"0.14.3 - *", "YaoPlots"=>"0.9.6 - *", "YaoSym"=>"0.6.12 - *", "YaoToEinsum"=>"0.2.9 - *", "Zstd_jll"=>"1.5.7 - *", "gdk_pixbuf_jll"=>"2.42.13 - *", "libaom_jll"=>"3.14.1 - *", "libass_jll"=>"0.17.5 - *", "libdrm_jll"=>"2.4.134 - *", "libfdk_aac_jll"=>"2.0.4 - *", "libpng_jll"=>"1.6.58 - *", "libva_jll"=>"2.23.0 - *", "libvorbis_jll"=>"1.3.8 - *", "x264_jll"=>"10164.0.1 - *", "x265_jll"=>"4.1.0 - *")),
"Yao+manifest-add-Turing" => (["Yao", "YaoBlocks", "YaoArrayRegister", "LuxurySparse", "Turing"], Dict("AbstractTrees"=>"0.4.5 - *", "Adapt"=>"4.7.0 - *", "AliasTables"=>"1.1.3 - *", "ArnoldiMethod"=>"0.4.0 - *", "Automa"=>"1.2.0 - *", "BaseDirs"=>"1.4.0 - *", "BatchedRoutines"=>"0.2.2 - *", "BitBasis"=>"0.9.10 - *", "Bzip2_jll"=>"1.0.9 - *", "CEnum"=>"0.5.0 - *", "CacheServers"=>"0.2.0 - *", "Cairo"=>"1.1.1 - *", "Cairo_jll"=>"1.18.7 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CliqueTrees"=>"1.19.6 - *", "Collects"=>"1.1.0 - *", "ColorTypes"=>"0.12.1 - *", "ColorVectorSpace"=>"0.11.0 - *", "Colors"=>"0.13.1 - *", "Combinatorics"=>"1.1.0 - *", "Compat"=>"4.18.1 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.19.6 - *", "DocStringExtensions"=>"0.9.5 - *", "EarCut_jll"=>"2.2.4 - *", "Expat_jll"=>"2.8.3 - *", "FFMPEG"=>"0.4.5 - *", "FFMPEG_jll"=>"8.1.2 - *", "FileIO"=>"1.20.0 - *", "FillArrays"=>"1.17.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "FixedSizeArrays"=>"1.3.0 - *", "Fontconfig_jll"=>"2.17.1 - *", "FreeType"=>"4.1.1 - *", "FreeType2_jll"=>"2.14.3 - *", "FreeTypeAbstraction"=>"0.10.8 - *", "FriBidi_jll"=>"1.0.17 - *", "GeometryBasics"=>"0.5.12 - *", "GettextRuntime_jll"=>"0.22.4 - *", "Glib_jll"=>"2.88.3 - *", "Graphics"=>"1.1.3 - *", "Graphite2_jll"=>"1.3.16 - *", "Graphs"=>"1.14.0 - *", "HarfBuzz_jll"=>"100.14003.0 - *", "Inflate"=>"0.1.5 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"1.8.0 - *", "JpegTurbo_jll"=>"3.2.0 - *", "KrylovKit"=>"0.10.4 - *", "LAME_jll"=>"3.100.3 - *", "LERC_jll"=>"4.1.0 - *", "LLVMOpenMP_jll"=>"22.1.7 - *", "LaTeXStrings"=>"1.4.1 - *", "LegibleLambdas"=>"0.3.0 - *", "Libffi_jll"=>"3.4.7 - *", "Libiconv_jll"=>"1.18.0 - *", "Libmount_jll"=>"2.42.0 - *", "Librsvg_jll"=>"2.58.5 - *", "Libtiff_jll"=>"4.7.3 - *", "Libuuid_jll"=>"2.42.0 - *", "LogExpFunctions"=>"1.0.1 - *", "Luxor"=>"4.5.0 - *", "LuxurySparse"=>"0.8.2 - *", "MLStyle"=>"0.4.17 - *", "MPC_jll"=>"1.4.1 - *", "MacroTools"=>"0.5.16 - *", "MathTeXEngine"=>"0.6.9 - *", "Missings"=>"1.2.0 - *", "NaNMath"=>"1.1.4 - *", "OMEinsum"=>"0.9.4 - *", "OMEinsumContractionOrders"=>"1.3.0 - *", "Ogg_jll"=>"1.3.6 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Opus_jll"=>"1.6.1 - *", "OrderedCollections"=>"2.0.1 - *", "PackageExtensionCompat"=>"1.0.2 - *", "Pango_jll"=>"1.58.2 - *", "Parsers"=>"3.0.0 - *", "Pixman_jll"=>"0.46.4 - *", "PolygonAlgorithms"=>"0.4.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PtrArrays"=>"1.4.0 - *", "RecipesBase"=>"1.3.4 - *", "Reexport"=>"1.2.2 - *", "RelocatableFolders"=>"1.0.1 - *", "Requires"=>"1.3.1 - *", "Rsvg"=>"1.1.0 - *", "Scratch"=>"1.3.0 - *", "SimpleTraits"=>"0.9.6 - *", "SortingAlgorithms"=>"1.2.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StructUtils"=>"2.8.5 - *", "Suppressor"=>"0.2.8 - *", "SymEngine"=>"0.13.2 - *", "SymEngine_jll"=>"0.12.0 - *", "TensorCore"=>"0.1.1 - *", "TranscodingStreams"=>"0.11.3 - *", "TreeWidthSolver"=>"0.3.5 - *", "TupleTools"=>"1.6.0 - *", "Turing"=>"0.48", "UnicodeFun"=>"0.4.1 - *", "VectorInterface"=>"0.6.0 - *", "XML2_jll"=>"2.13.9 - *", "XZ_jll"=>"5.8.3 - *", "Xorg_libX11_jll"=>"1.8.13 - *", "Xorg_libXau_jll"=>"1.0.13 - *", "Xorg_libXdmcp_jll"=>"1.1.6 - *", "Xorg_libXext_jll"=>"1.3.8 - *", "Xorg_libXfixes_jll"=>"6.0.2 - *", "Xorg_libXrender_jll"=>"0.9.12 - *", "Xorg_libpciaccess_jll"=>"0.19.0 - *", "Xorg_libxcb_jll"=>"1.17.1 - *", "Xorg_xtrans_jll"=>"1.6.0 - *", "Yao"=>"0.9.3 - *", "YaoAPI"=>"0.4.9 - *", "YaoArrayRegister"=>"0.9.13 - *", "YaoBlocks"=>"0.14.3 - *", "YaoPlots"=>"0.9.6 - *", "YaoSym"=>"0.6.12 - *", "YaoToEinsum"=>"0.2.9 - *", "Zstd_jll"=>"1.5.7 - *", "gdk_pixbuf_jll"=>"2.42.13 - *", "libaom_jll"=>"3.14.1 - *", "libass_jll"=>"0.17.5 - *", "libdrm_jll"=>"2.4.134 - *", "libfdk_aac_jll"=>"2.0.4 - *", "libpng_jll"=>"1.6.58 - *", "libva_jll"=>"2.23.0 - *", "libvorbis_jll"=>"1.3.8 - *", "x264_jll"=>"10164.0.1 - *", "x265_jll"=>"4.1.0 - *")),
"Bloqade+bump-CairoMakie" => (["Bloqade", "CairoMakie", "ForwardDiff", "Yao"], Dict("Bloqade"=>"0.2.5 - 0.2", "CairoMakie"=>"0.15.14 - 0.15", "ForwardDiff"=>"0.10.39 - 0.10", "Yao"=>"0.9.1 - 0.9")),
"Bloqade+bump-ForwardDiff" => (["Bloqade", "CairoMakie", "ForwardDiff", "Yao"], Dict("Bloqade"=>"0.2.5 - 0.2", "CairoMakie"=>"0.12.18 - 0.12", "ForwardDiff"=>"1.4.5 - 1", "Yao"=>"0.9.1 - 0.9")),
"CSV+bump-Parsers" => (["CSV", "Parsers", "Tables", "SentinelArrays"], Dict("CSV"=>"0.10.17 - 0.10", "Parsers"=>"3", "SentinelArrays"=>"1.4.10 - 1", "Tables"=>"1.14.0 - 1")),
"Catlab+big10-partial" => (["Catlab", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "JSON", "DataStructures", "Tables", "OrderedCollections", "MacroTools"], Dict("Catlab"=>"0.17.6 - 0.17", "DataStructures"=>"0.19.6 - 0.19", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "Tables"=>"1.14.0 - 1")),
"Catlab+manifest-add-Turing" => (["Catlab", "StaticArrays", "DataStructures", "JSON3", "Turing"], Dict("ACSets"=>"0.2.29 - *", "AlgebraicInterfaces"=>"0.1.4 - *", "Catlab"=>"0.17.6 - *", "ColorTypes"=>"0.12.1 - *", "Colors"=>"0.13.1 - *", "Combinatorics"=>"1.1.0 - *", "CompTime"=>"0.1.2 - *", "Compat"=>"4.18.1 - *", "Compose"=>"0.9.7 - *", "Crayons"=>"4.2.0 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.19.6 - *", "DataValueInterfaces"=>"1.0.0 - *", "ExprTools"=>"0.1.11 - *", "FixedPointNumbers"=>"0.8.6 - *", "GATlab"=>"0.2.4 - *", "IterTools"=>"1.10.0 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"0.21.4 - *", "JSON3"=>"1.14.3 - *", "LaTeXStrings"=>"1.4.1 - *", "Libiconv_jll"=>"1.18.0 - *", "LightXML"=>"0.9.3 - *", "MLStyle"=>"0.4.17 - *", "MacroTools"=>"0.5.16 - *", "Measures"=>"0.3.3 - *", "OrderedCollections"=>"2.0.1 - *", "PEG"=>"1.0.4 - *", "Parsers"=>"2.8.8 - *", "Permutations"=>"0.4.23 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrettyTables"=>"3.4.8 - *", "Reexport"=>"1.2.2 - *", "Requires"=>"1.3.1 - *", "RuntimeGeneratedFunctions"=>"0.5.25 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StringManipulation"=>"0.5.0 - *", "StructEquality"=>"2.1.0 - *", "StructTypes"=>"1.11.0 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "Turing"=>"0.48", "XML2_jll"=>"2.15.3 - *")),
"DataFrames+manifest-add-CSV" => (["DataFrames", "DataStructures", "Compat", "PrettyTables", "CSV"], Dict("CSV"=>"0.10.17 - 0.10", "Compat"=>"4.18.1 - *", "Crayons"=>"4.2.0 - *", "DataAPI"=>"1.16.0 - *", "DataFrames"=>"1.8.2 - *", "DataStructures"=>"0.19.6 - *", "DataValueInterfaces"=>"1.0.0 - *", "InlineStrings"=>"1.4.6 - *", "InvertedIndices"=>"1.3.1 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "LaTeXStrings"=>"1.4.1 - *", "Missings"=>"1.2.0 - *", "OrderedCollections"=>"2.0.1 - *", "Parsers"=>"3.0.0 - *", "PooledArrays"=>"1.4.3 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrettyTables"=>"3.4.8 - *", "Reexport"=>"1.2.2 - *", "SentinelArrays"=>"1.4.10 - *", "SortingAlgorithms"=>"1.2.3 - *", "Statistics"=>"1.11.5 - *", "StringManipulation"=>"0.5.0 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *")),
"DiffEqFlux+big10-upgrade" => (["DiffEqFlux", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures"], Dict("DataStructures"=>"0.19.6 - 0.19", "DiffEqFlux"=>"4.10.2 - 4", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "JLLWrappers"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"DynamicalSystems+big10-upgrade" => (["DynamicalSystems", "DynamicalSystemsBase", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions"], Dict("Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "DynamicalSystems"=>"3.7.0 - 3", "DynamicalSystemsBase"=>"3.19.3 - 3", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"DynamicalSystems+big20-upgrade" => (["DynamicalSystems", "DynamicalSystemsBase", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "DelimitedFiles", "Tables", "OrderedCollections", "FFTW", "Graphs", "RecipesBase", "MacroTools"], Dict("DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "DynamicalSystems"=>"3.7.0 - 3", "DynamicalSystemsBase"=>"3.19.3 - 3", "FFTW"=>"1.10.0 - 1", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1")),
"Gadfly+big10-partial" => (["Gadfly", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions"], Dict("Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "Gadfly"=>"1.4.1 - 1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Gadfly+bump-DataStructures" => (["Gadfly", "Distributions", "JSON", "DataStructures"], Dict("DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "Gadfly"=>"1.4.1 - 1", "JSON"=>"0.21.4 - 0.21")),
"Gen+big10-partial" => (["Gen", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions"], Dict("Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "Gen"=>"0.4.8 - 0.4", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Gen+big20-upgrade" => (["Gen", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ForwardDiff", "OrderedCollections", "MacroTools", "Parameters", "Compat", "ChainRulesCore", "Preferences", "QuadGK", "Roots"], Dict("ChainRulesCore"=>"1.26.1 - 1", "Compat"=>"4.18.1 - 4", "DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "Gen"=>"0.4.8 - 0.4", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "Parameters"=>"0.13.1 - 0.13", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "QuadGK"=>"2.11.3 - 2", "Reexport"=>"1.2.2 - 1", "Roots"=>"3.0.8 - 3", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Gen+bump-ForwardDiff" => (["Gen", "Distributions", "ForwardDiff", "JSON"], Dict("Distributions"=>"0.25.131 - 0.25", "ForwardDiff"=>"1.4.5 - 1", "Gen"=>"0.4.8 - 0.4", "JSON"=>"0.21.4 - 0.21")),
"Gen+manifest-add-Lux" => (["Gen", "Distributions", "ForwardDiff", "JSON", "Lux"], Dict("Accessors"=>"0.1.45 - *", "AliasTables"=>"1.1.3 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CommonSolve"=>"0.2.14 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConstructionBase"=>"1.6.0 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.18.22 - *", "DensityInterface"=>"0.4.0 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "FillArrays"=>"1.17.0 - *", "ForwardDiff"=>"0.10.39 - *", "FunctionWrappers"=>"1.1.3 - *", "FunctionalCollections"=>"0.5.0 - *", "Gamma"=>"1.1.0 - *", "Gen"=>"0.4.8 - *", "HypergeometricFunctions"=>"0.3.30 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"0.21.4 - *", "LogExpFunctions"=>"0.3.29 - *", "Lux"=>"1.31.4 - 1", "MacroTools"=>"0.5.16 - *", "Missings"=>"1.2.0 - *", "NaNMath"=>"1.1.4 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"1.8.2 - *", "PDMats"=>"0.11.41 - *", "Parameters"=>"0.12.3 - *", "Parsers"=>"2.8.8 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PtrArrays"=>"1.4.0 - *", "QuadGK"=>"2.11.3 - *", "Reexport"=>"1.2.2 - *", "ReverseDiff"=>"1.17.0 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "SortingAlgorithms"=>"1.2.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StatsFuns"=>"2.2.1 - *", "UnPack"=>"1.0.2 - *")),
"Gen+manifest-add-ModelingToolkit" => (["Gen", "Distributions", "ForwardDiff", "JSON", "ModelingToolkit"], Dict("Accessors"=>"0.1.45 - *", "AliasTables"=>"1.1.3 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CommonSolve"=>"0.2.14 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConstructionBase"=>"1.6.0 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.18.22 - *", "DensityInterface"=>"0.4.0 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "FillArrays"=>"1.17.0 - *", "ForwardDiff"=>"0.10.39 - *", "FunctionWrappers"=>"1.1.3 - *", "FunctionalCollections"=>"0.5.0 - *", "Gamma"=>"1.1.0 - *", "Gen"=>"0.4.8 - *", "HypergeometricFunctions"=>"0.3.30 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"0.21.4 - *", "LogExpFunctions"=>"0.3.29 - *", "MacroTools"=>"0.5.16 - *", "Missings"=>"1.2.0 - *", "ModelingToolkit"=>"11.41.0 - 11", "NaNMath"=>"1.1.4 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"1.8.2 - *", "PDMats"=>"0.11.41 - *", "Parameters"=>"0.12.3 - *", "Parsers"=>"2.8.8 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PtrArrays"=>"1.4.0 - *", "QuadGK"=>"2.11.3 - *", "Reexport"=>"1.2.2 - *", "ReverseDiff"=>"1.17.0 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "SortingAlgorithms"=>"1.2.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StatsFuns"=>"2.2.1 - *", "UnPack"=>"1.0.2 - *")),
"GeoStats+big20-partial" => (["GeoStats", "GeoStatsFunctions", "GeoStatsValidation", "GeoStatsModels", "GeoStatsTransforms", "GeoStatsProcesses", "GeoStatsBase", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "HTTP", "DelimitedFiles", "Tables", "OrderedCollections", "FFTW", "Unitful", "RecipesBase"], Dict("DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "ForwardDiff"=>"1.4.5 - 1", "GeoStats"=>"0.90", "GeoStatsBase"=>"0.49.3 - 0.49", "GeoStatsFunctions"=>"0.16.5 - 0.16", "GeoStatsModels"=>"0.13.12 - 0.13", "GeoStatsProcesses"=>"0.13.2 - 0.13", "GeoStatsTransforms"=>"0.14.20 - 0.14", "GeoStatsValidation"=>"0.4.10 - 0.4", "HTTP"=>"2.6.7 - 2", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Unitful"=>"1.29.0 - 1")),
"GeometricFlux+big10-partial" => (["GeometricFlux", "Statistics", "JLLWrappers", "StaticArrays", "DataFrames", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures"], Dict("DataFrames"=>"1.8.2 - 1", "DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "GeometricFlux"=>"0.14", "JLLWrappers"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"GeometricFlux+bump-Flux" => (["GeometricFlux", "StatsBase", "Flux", "DataStructures"], Dict("DataStructures"=>"0.18.22 - 0.18", "Flux"=>"0.16.11 - 0.16", "GeometricFlux"=>"0.14", "StatsBase"=>"0.34.13 - 0.34")),
"GeometricFlux+manifest-add-Symbolics" => (["GeometricFlux", "StatsBase", "Flux", "DataStructures", "Symbolics"], Dict("AbstractFFTs"=>"1.5.0 - *", "AbstractTrees"=>"0.4.5 - *", "Adapt"=>"4.7.0 - *", "AliasTables"=>"1.1.3 - *", "ArnoldiMethod"=>"0.4.0 - *", "Atomix"=>"1.1.3 - *", "AtomsBase"=>"0.5.3 - *", "BFloat16s"=>"0.6.1 - *", "BitFlags"=>"0.1.10 - *", "CEnum"=>"0.5.0 - *", "CSV"=>"0.10.17 - *", "ChainRules"=>"1.73.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "Chemfiles"=>"0.10.43 - *", "Chemfiles_jll"=>"0.10.4 - *", "ChunkCodecCore"=>"1.0.2 - *", "ChunkCodecLibZlib"=>"1.1.0 - *", "ChunkCodecLibZstd"=>"1.0.0 - *", "CodeTracking"=>"3.0.2 - *", "CodecZlib"=>"0.7.9 - *", "ColorSchemes"=>"3.31.0 - *", "ColorTypes"=>"0.12.1 - *", "ColorVectorSpace"=>"0.11.0 - *", "Colors"=>"0.13.1 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "ConcurrentUtilities"=>"2.6.0 - *", "ConstructionBase"=>"1.6.0 - *", "Crayons"=>"4.2.0 - *", "DataAPI"=>"1.16.0 - *", "DataDeps"=>"0.7.14 - *", "DataFrames"=>"1.8.2 - *", "DataStructures"=>"0.18.22 - *", "DataValueInterfaces"=>"1.0.0 - *", "DelimitedFiles"=>"1.9.1 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "Distances"=>"0.10.12 - *", "DocStringExtensions"=>"0.9.5 - *", "EnzymeCore"=>"0.8.21 - *", "ExceptionUnwrapping"=>"0.1.11 - *", "FileIO"=>"1.20.0 - *", "FilePathsBase"=>"0.9.24 - *", "FillArrays"=>"1.17.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "Flux"=>"0.14.25 - *", "ForwardDiff"=>"1.4.5 - *", "Functors"=>"0.4.12 - *", "GPUArrays"=>"11.5.14 - *", "GPUArraysCore"=>"0.2.0 - *", "GZip"=>"0.6.2 - *", "GeometricFlux"=>"0.14.0 - *", "Glob"=>"1.5.0 - *", "GraphSignals"=>"0.9.2 - *", "Graphs"=>"1.11.2 - *", "HDF5"=>"0.17.3 - *", "HDF5_jll"=>"2.1.2 - *", "HTTP"=>"1.11.0 - *", "HashArrayMappedTries"=>"0.2.0 - *", "Hwloc_jll"=>"2.14.0 - *", "IRTools"=>"0.4.20 - *", "ImageBase"=>"0.1.7 - *", "ImageCore"=>"0.10.5 - *", "ImageShow"=>"0.3.8 - *", "Inflate"=>"0.1.5 - *", "InlineStrings"=>"1.4.6 - *", "InternedStrings"=>"0.7.0 - *", "InverseFunctions"=>"0.1.17 - *", "InvertedIndices"=>"1.3.1 - *", "IrrationalConstants"=>"0.2.6 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLD2"=>"0.6.6 - *", "JLLWrappers"=>"1.8.0 - *", "JSON3"=>"1.14.3 - *", "KernelAbstractions"=>"0.9.42 - *", "LLVM"=>"9.13.1 - *", "LLVMExtra_jll"=>"0.0.47 - *", "LaTeXStrings"=>"1.4.1 - *", "LazyModules"=>"0.3.1 - *", "Libiconv_jll"=>"1.18.0 - *", "LogExpFunctions"=>"0.3.29 - *", "LoggingExtras"=>"1.2.0 - *", "MAT"=>"0.11.5 - *", "MLCore"=>"1.1.0 - *", "MLDataDevices"=>"1.5.3 - *", "MLDatasets"=>"0.7.21 - *", "MLUtils"=>"0.4.13 - *", "MPIABI_jll"=>"0.1.5 - *", "MPICH_jll"=>"5.0.1 - *", "MPIPreferences"=>"0.1.12 - *", "MPItrampoline_jll"=>"5.5.6 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MbedTLS"=>"1.1.10 - *", "MbedTLS_jll"=>"2.28.1010 - *", "MicrosoftMPI_jll"=>"10.1.4 - *", "Missings"=>"1.2.0 - *", "MosaicViews"=>"0.3.4 - *", "NNlib"=>"0.9.45 - *", "NPZ"=>"0.4.3 - *", "NaNMath"=>"1.1.4 - *", "NearestNeighbors"=>"0.4.29 - *", "OffsetArrays"=>"1.17.0 - *", "OneHotArrays"=>"0.2.11 - *", "OpenMPI_jll"=>"5.0.11 - *", "OpenSSL"=>"1.6.1 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optimisers"=>"0.3.4 - *", "OrderedCollections"=>"1.8.2 - *", "PackageExtensionCompat"=>"1.0.2 - *", "PaddedViews"=>"0.5.12 - *", "Parsers"=>"2.8.8 - *", "PeriodicTable"=>"1.2.1 - *", "Pickle"=>"0.3.7 - *", "PooledArrays"=>"1.4.3 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrettyTables"=>"3.4.8 - *", "ProgressLogging"=>"0.1.6 - *", "PtrArrays"=>"1.4.0 - *", "RealDot"=>"0.1.0 - *", "Reexport"=>"1.2.2 - *", "Requires"=>"1.3.1 - *", "ScopedValues"=>"1.6.2 - *", "Scratch"=>"1.3.0 - *", "SentinelArrays"=>"1.4.10 - *", "Setfield"=>"1.1.2 - *", "ShowCases"=>"0.1.0 - *", "SimpleBufferStream"=>"1.2.0 - *", "SimpleTraits"=>"0.9.6 - *", "SimpleWeightedGraphs"=>"1.5.1 - *", "SortingAlgorithms"=>"1.2.3 - *", "SparseInverseSubset"=>"0.1.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StackViews"=>"0.1.2 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StridedViews"=>"0.4.6 - *", "StringEncodings"=>"0.3.7 - *", "StringManipulation"=>"0.5.0 - *", "StructArrays"=>"0.7.3 - *", "StructTypes"=>"1.11.0 - *", "Symbolics"=>"7.39.0 - 7", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TensorCore"=>"0.1.1 - *", "TranscodingStreams"=>"0.11.3 - *", "URIs"=>"1.7.0 - *", "Unitful"=>"1.29.0 - *", "UnitfulAtomic"=>"1.0.0 - *", "UnsafeAtomics"=>"0.3.2 - *", "WeakRefStrings"=>"1.4.3 - *", "Word2Vec"=>"0.5.3 - *", "Word2Vec_jll"=>"0.1.0 - *", "WorkerUtilities"=>"1.6.1 - *", "XML2_jll"=>"2.13.9 - *", "Xorg_libpciaccess_jll"=>"0.19.0 - *", "ZipFile"=>"0.10.1 - *", "Zstd_jll"=>"1.5.7 - *", "Zygote"=>"0.6.77 - *", "ZygoteRules"=>"0.2.8 - *", "aws_c_auth_jll"=>"0.9.6 - *", "aws_c_cal_jll"=>"0.9.13 - *", "aws_c_common_jll"=>"0.12.6 - *", "aws_c_compression_jll"=>"0.3.2 - *", "aws_c_http_jll"=>"0.10.15 - *", "aws_c_io_jll"=>"0.26.3 - *", "aws_c_s3_jll"=>"0.11.5 - *", "aws_c_sdkutils_jll"=>"0.2.4 - *", "aws_checksums_jll"=>"0.2.10 - *", "dlfcn_win32_jll"=>"1.4.2 - *", "libaec_jll"=>"1.1.7 - *", "mpif_jll"=>"0.1.7 - *", "s2n_tls_jll"=>"1.7.8 - *")),
"ITensors+big20-partial" => (["ITensors", "Statistics", "StaticArrays", "PrecompileTools", "DocStringExtensions", "Tables", "OrderedCollections", "MacroTools", "Requires", "Compat", "ChainRulesCore", "Adapt", "Preferences", "FillArrays", "ArgCheck", "Setfield", "Accessors", "TimerOutputs", "ConstructionBase", "Functors", "DataAPI"], Dict("Accessors"=>"0.1.45 - 0.1", "Adapt"=>"4.7.0 - 4", "ArgCheck"=>"2.5.0 - 2", "ChainRulesCore"=>"1.26.1 - 1", "Compat"=>"4.18.1 - 4", "ConstructionBase"=>"1.6.0 - 1", "DataAPI"=>"1.16.0 - 1", "DocStringExtensions"=>"0.9.5 - 0.9", "FillArrays"=>"1.17.0 - 1", "Functors"=>"0.5.3 - 0.5", "ITensors"=>"0.9.30 - 0.9", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "Requires"=>"1.3.1 - 1", "Setfield"=>"1.1.2 - 1", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "Tables"=>"1.14.0 - 1", "TimerOutputs"=>"1.2.1 - 1")),
"Knet+manifest-bump-CUDA" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("AbstractFFTs"=>"1.5.0 - *", "Adapt"=>"3.7.2 - *", "Atomix"=>"0.1.0 - *", "AutoGrad"=>"1.2.5 - *", "BFloat16s"=>"0.2.0 - *", "Bzip2_jll"=>"1.0.9 - *", "CEnum"=>"0.4.2 - *", "CUDA"=>"6.3.1 - 6", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "ColorTypes"=>"0.11.5 - *", "ColorVectorSpace"=>"0.9.10 - *", "Colors"=>"0.12.11 - *", "Compat"=>"4.18.1 - *", "DocStringExtensions"=>"0.9.5 - *", "EnzymeCore"=>"0.8.21 - *", "ExprTools"=>"0.1.11 - *", "FFTW_jll"=>"3.3.12 - *", "FileIO"=>"1.20.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "GPUArrays"=>"8.8.1 - *", "GPUArraysCore"=>"0.1.5 - *", "GPUCompiler"=>"0.17.3 - *", "Ghostscript_jll"=>"9.55.1 - *", "Giflib_jll"=>"5.2.3 - *", "Graphics"=>"1.1.3 - *", "ImageCore"=>"0.9.4 - *", "ImageMagick"=>"1.4.2 - *", "ImageMagick_jll"=>"7.1.2029 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLD2"=>"0.4.55 - *", "JLLWrappers"=>"1.8.0 - *", "JpegTurbo_jll"=>"3.2.0 - *", "KernelAbstractions"=>"0.9.42 - *", "Knet"=>"1.4.10 - *", "LERC_jll"=>"4.1.0 - *", "LLVM"=>"4.17.1 - *", "LLVMExtra_jll"=>"0.0.18 - *", "Libglvnd_jll"=>"1.7.1 - *", "Libtiff_jll"=>"4.7.3 - *", "LittleCMS_jll"=>"2.19.1 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MosaicViews"=>"0.3.4 - *", "NNlib"=>"0.8.21 - *", "NaNMath"=>"1.1.4 - *", "OffsetArrays"=>"1.17.0 - *", "OpenJpeg_jll"=>"2.5.5 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"1.8.2 - *", "PaddedViews"=>"0.5.12 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "Random123"=>"1.7.1 - *", "RandomNumbers"=>"1.6.0 - *", "Reexport"=>"1.2.2 - *", "Requires"=>"1.3.1 - *", "SpecialFunctions"=>"2.9.0 - *", "StackViews"=>"0.1.2 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "TensorCore"=>"0.1.1 - *", "TimerOutputs"=>"0.5.29 - *", "TranscodingStreams"=>"0.11.3 - *", "UnsafeAtomics"=>"0.2.1 - *", "XZ_jll"=>"5.8.3 - *", "Xorg_libX11_jll"=>"1.8.13 - *", "Xorg_libXau_jll"=>"1.0.13 - *", "Xorg_libXdmcp_jll"=>"1.1.6 - *", "Xorg_libXext_jll"=>"1.3.8 - *", "Xorg_libxcb_jll"=>"1.17.1 - *", "Xorg_xtrans_jll"=>"1.6.0 - *", "Zstd_jll"=>"1.5.7 - *", "libpng_jll"=>"1.6.58 - *", "libwebp_jll"=>"1.6.0 - *", "libzip_jll"=>"1.11.4 - *")),
"Knet+manifest-bump-NNlib" => (["Knet", "CUDA", "NNlib", "JLD2"], Dict("AbstractFFTs"=>"1.5.0 - *", "Adapt"=>"3.7.2 - *", "Atomix"=>"0.1.0 - *", "AutoGrad"=>"1.2.5 - *", "BFloat16s"=>"0.2.0 - *", "Bzip2_jll"=>"1.0.9 - *", "CEnum"=>"0.4.2 - *", "CUDA"=>"3.13.1 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "ColorTypes"=>"0.11.5 - *", "ColorVectorSpace"=>"0.9.10 - *", "Colors"=>"0.12.11 - *", "Compat"=>"4.18.1 - *", "DocStringExtensions"=>"0.9.5 - *", "EnzymeCore"=>"0.8.21 - *", "ExprTools"=>"0.1.11 - *", "FFTW_jll"=>"3.3.12 - *", "FileIO"=>"1.20.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "GPUArrays"=>"8.8.1 - *", "GPUArraysCore"=>"0.1.5 - *", "GPUCompiler"=>"0.17.3 - *", "Ghostscript_jll"=>"9.55.1 - *", "Giflib_jll"=>"5.2.3 - *", "Graphics"=>"1.1.3 - *", "ImageCore"=>"0.9.4 - *", "ImageMagick"=>"1.4.2 - *", "ImageMagick_jll"=>"7.1.2029 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLD2"=>"0.4.55 - *", "JLLWrappers"=>"1.8.0 - *", "JpegTurbo_jll"=>"3.2.0 - *", "KernelAbstractions"=>"0.9.42 - *", "Knet"=>"1.4.10 - *", "LERC_jll"=>"4.1.0 - *", "LLVM"=>"4.17.1 - *", "LLVMExtra_jll"=>"0.0.18 - *", "Libglvnd_jll"=>"1.7.1 - *", "Libtiff_jll"=>"4.7.3 - *", "LittleCMS_jll"=>"2.19.1 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MosaicViews"=>"0.3.4 - *", "NNlib"=>"0.9.45 - 0.9", "NaNMath"=>"1.1.4 - *", "OffsetArrays"=>"1.17.0 - *", "OpenJpeg_jll"=>"2.5.5 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"1.8.2 - *", "PaddedViews"=>"0.5.12 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "Random123"=>"1.7.1 - *", "RandomNumbers"=>"1.6.0 - *", "Reexport"=>"1.2.2 - *", "Requires"=>"1.3.1 - *", "SpecialFunctions"=>"2.9.0 - *", "StackViews"=>"0.1.2 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "TensorCore"=>"0.1.1 - *", "TimerOutputs"=>"0.5.29 - *", "TranscodingStreams"=>"0.11.3 - *", "UnsafeAtomics"=>"0.2.1 - *", "XZ_jll"=>"5.8.3 - *", "Xorg_libX11_jll"=>"1.8.13 - *", "Xorg_libXau_jll"=>"1.0.13 - *", "Xorg_libXdmcp_jll"=>"1.1.6 - *", "Xorg_libXext_jll"=>"1.3.8 - *", "Xorg_libxcb_jll"=>"1.17.1 - *", "Xorg_xtrans_jll"=>"1.6.0 - *", "Zstd_jll"=>"1.5.7 - *", "libpng_jll"=>"1.6.58 - *", "libwebp_jll"=>"1.6.0 - *", "libzip_jll"=>"1.11.4 - *")),
"Metatheory+bump-DataStructures" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("DataStructures"=>"0.19.6 - 0.19", "Metatheory"=>"2.0.2 - 2", "TermInterface"=>"0.3.3 - 0.3", "TimerOutputs"=>"0.5.29 - 0.5")),
"Metatheory+bump-TermInterface" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("DataStructures"=>"0.18.22 - 0.18", "Metatheory"=>"2.0.2 - 2", "TermInterface"=>"2", "TimerOutputs"=>"0.5.29 - 0.5")),
"Metatheory+bump-TimerOutputs" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("DataStructures"=>"0.18.22 - 0.18", "Metatheory"=>"2.0.2 - 2", "TermInterface"=>"0.3.3 - 0.3", "TimerOutputs"=>"1.2.1 - 1")),
"Metatheory+manifest-bump-TermInterface" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("AutoHashEquals"=>"2.2.0 - *", "Compat"=>"4.18.1 - *", "DataStructures"=>"0.18.22 - *", "DocStringExtensions"=>"0.9.5 - *", "ExprTools"=>"0.1.11 - *", "Metatheory"=>"2.0.2 - *", "OrderedCollections"=>"1.8.2 - *", "Reexport"=>"1.2.2 - *", "TermInterface"=>"2", "TimerOutputs"=>"0.5.29 - *")),
"Metatheory+manifest-bump-TimerOutputs" => (["Metatheory", "DataStructures", "TimerOutputs", "TermInterface"], Dict("AutoHashEquals"=>"2.2.0 - *", "Compat"=>"4.18.1 - *", "DataStructures"=>"0.18.22 - *", "DocStringExtensions"=>"0.9.5 - *", "ExprTools"=>"0.1.11 - *", "Metatheory"=>"2.0.2 - *", "OrderedCollections"=>"1.8.2 - *", "Reexport"=>"1.2.2 - *", "TermInterface"=>"0.3.3 - *", "TimerOutputs"=>"1.2.1 - 1")),
"Oceananigans+big20-partial" => (["Oceananigans", "Statistics", "JLLWrappers", "StaticArrays", "Reexport", "PrecompileTools", "DocStringExtensions", "Tables", "OrderedCollections", "FFTW", "RecipesBase", "MacroTools", "JLD2", "FileIO", "Requires", "Distances", "Compat", "ChainRulesCore", "Adapt", "Preferences", "OffsetArrays"], Dict("Adapt"=>"4.7.0 - 4", "ChainRulesCore"=>"1.26.1 - 1", "Compat"=>"4.18.1 - 4", "Distances"=>"0.10.12 - 0.10", "DocStringExtensions"=>"0.9.5 - 0.9", "FFTW"=>"1.10.0 - 1", "FileIO"=>"1.20.0 - 1", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "Oceananigans"=>"0.111", "OffsetArrays"=>"1.17.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "Tables"=>"1.14.0 - 1")),
"POMDPs+manifest-add-Images" => (["POMDPs", "Distributions", "NamedTupleTools", "Graphs", "Images"], Dict("Accessors"=>"0.1.45 - *", "AliasTables"=>"1.1.3 - *", "ArnoldiMethod"=>"0.4.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CommonSolve"=>"0.2.14 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConstructionBase"=>"1.6.0 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.19.6 - *", "DensityInterface"=>"0.4.0 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "FillArrays"=>"1.17.0 - *", "Gamma"=>"1.2.0 - *", "Graphs"=>"1.14.0 - *", "HypergeometricFunctions"=>"0.3.30 - *", "Images"=>"0.26.2 - 0.26", "Inflate"=>"0.1.5 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "Missings"=>"1.2.0 - *", "NamedTupleTools"=>"0.14.3 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"2.0.1 - *", "PDMats"=>"0.11.41 - *", "POMDPLinter"=>"0.1.3 - *", "POMDPs"=>"1.0.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PtrArrays"=>"1.4.0 - *", "QuadGK"=>"2.11.3 - *", "Reexport"=>"1.2.2 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "SimpleTraits"=>"0.9.6 - *", "SortingAlgorithms"=>"1.2.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StatsFuns"=>"2.2.1 - *")),
"Pluto+big10-partial" => (["Pluto", "PlutoDependencyExplorer", "JLLWrappers", "PrecompileTools", "HTTP", "Tables", "OrderedCollections", "Compat", "Preferences", "Scratch", "CodecZlib", "URIs"], Dict("CodecZlib"=>"0.7.9 - 0.7", "Compat"=>"4.18.1 - 4", "HTTP"=>"2.6.7 - 2", "JLLWrappers"=>"1.8.0 - 1", "OrderedCollections"=>"1.8.2 - 1", "Pluto"=>"1.0.3 - 1", "PlutoDependencyExplorer"=>"1.2.2 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "Scratch"=>"1.3.0 - 1", "Tables"=>"1.14.0 - 1", "URIs"=>"1.7.0 - 1")),
"Pluto+big10-upgrade" => (["Pluto", "PlutoDependencyExplorer", "JLLWrappers", "PrecompileTools", "HTTP", "Tables", "OrderedCollections", "Compat", "Preferences", "Scratch", "CodecZlib", "URIs"], Dict("CodecZlib"=>"0.7.9 - 0.7", "Compat"=>"4.18.1 - 4", "HTTP"=>"2.6.7 - 2", "JLLWrappers"=>"1.8.0 - 1", "OrderedCollections"=>"2.0.1 - 2", "Pluto"=>"1.0.3 - 1", "PlutoDependencyExplorer"=>"1.2.2 - 1", "PrecompileTools"=>"1.3.4 - 1", "Preferences"=>"1.5.2 - 1", "Scratch"=>"1.3.0 - 1", "Tables"=>"1.14.0 - 1", "URIs"=>"1.7.0 - 1")),
"Rasters+manifest-add-Turing" => (["Rasters", "ProgressMeter", "DimensionalData", "FillArrays", "Turing"], Dict("Adapt"=>"4.7.0 - *", "CFTime"=>"0.2.10 - *", "ColorTypes"=>"0.12.1 - *", "CommonDataModel"=>"0.4.4 - *", "ConstructionBase"=>"1.6.0 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.19.6 - *", "DataValueInterfaces"=>"1.0.0 - *", "DimensionalData"=>"0.30.2 - *", "DiskArrays"=>"0.4.22 - *", "Extents"=>"0.1.6 - *", "FieldMetadata"=>"0.3.1 - *", "FillArrays"=>"1.17.0 - *", "FixedPointNumbers"=>"0.8.6 - *", "Flatten"=>"0.4.3 - *", "GeoFormatTypes"=>"0.4.5 - *", "GeoInterface"=>"1.6.2 - *", "GeometryOpsCore"=>"0.1.12 - *", "Interfaces"=>"0.3.2 - *", "IntervalSets"=>"0.7.14 - *", "InvertedIndices"=>"1.3.1 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "LRUCache"=>"1.6.2 - *", "MacroTools"=>"0.5.16 - *", "Missings"=>"1.2.0 - *", "OffsetArrays"=>"1.17.0 - *", "OrderedCollections"=>"2.0.1 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "ProgressMeter"=>"1.11.0 - *", "Rasters"=>"0.15.0 - *", "RecipesBase"=>"1.3.4 - *", "Reexport"=>"1.2.2 - *", "Setfield"=>"1.1.2 - *", "StableTasks"=>"0.1.7 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "Turing"=>"0.48")),
"Soss+add-OrdinaryDiffEq" => (["Soss", "Distributions", "StatsBase", "DataStructures", "OrdinaryDiffEq"], Dict("DataStructures"=>"0.18.22 - 0.18", "Distributions"=>"0.25.131 - 0.25", "OrdinaryDiffEq"=>"7.8.1 - 7", "Soss"=>"0.21.2 - 0.21", "StatsBase"=>"0.33.22 - 0.33")),
"Soss+big10-partial" => (["Soss", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions"], Dict("Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "PrecompileTools"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Soss"=>"0.21.2 - 0.21", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34")),
"Soss+big20-upgrade" => (["Soss", "Statistics", "JLLWrappers", "StaticArrays", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ForwardDiff", "Tables", "OrderedCollections", "RecipesBase", "MacroTools", "Parameters", "Requires", "Combinatorics", "JSON3"], Dict("Combinatorics"=>"1.1.0 - 1", "DataStructures"=>"0.19.6 - 0.19", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "JSON3"=>"1.14.3 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "Parameters"=>"0.13.1 - 0.13", "PrecompileTools"=>"1.3.4 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "Soss"=>"0.21.2 - 0.21", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1")),
"Soss+manifest-add-OrdinaryDiffEq" => (["Soss", "Distributions", "StatsBase", "DataStructures", "OrdinaryDiffEq"], Dict("AbstractLattices"=>"0.2.1 - *", "AbstractTrees"=>"0.4.5 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"3.7.2 - *", "AliasTables"=>"1.1.3 - *", "ArgCheck"=>"2.5.0 - *", "ArrayInterface"=>"6.0.17 - *", "ArrayInterfaceCore"=>"0.1.29 - *", "ArrayInterfaceStaticArrays"=>"0.1.2 - *", "ArrayInterfaceStaticArraysCore"=>"0.1.4 - *", "ArrayLayouts"=>"0.8.19 - *", "ArraysOfArrays"=>"0.5.10 - *", "AutoHashEquals"=>"0.2.0 - *", "BangBang"=>"0.3.40 - *", "Baselet"=>"0.1.1 - *", "BenchmarkTools"=>"1.8.0 - *", "Bijections"=>"0.1.10 - *", "Bzip2_jll"=>"1.0.9 - *", "Calculus"=>"0.5.2 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CodecBzip2"=>"0.8.5 - *", "CodecZlib"=>"0.7.9 - *", "Combinatorics"=>"1.1.0 - *", "CommonSolve"=>"0.2.14 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConcreteStructs"=>"0.2.8 - *", "ConstructionBase"=>"1.5.6 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.18.22 - *", "DataValueInterfaces"=>"1.0.0 - *", "DefineSingletons"=>"0.1.2 - *", "DensityInterface"=>"0.4.0 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "DynamicIterators"=>"0.4.3 - *", "DynamicPolynomials"=>"0.4.6 - *", "ElasticArrays"=>"1.2.12 - *", "ExprTools"=>"0.1.11 - *", "FillArrays"=>"0.13.11 - *", "FiniteDiff"=>"2.17.0 - *", "FlexLinearAlgebra"=>"0.1.1 - *", "ForwardDiff"=>"0.10.39 - *", "GPUArraysCore"=>"0.1.5 - *", "Gamma"=>"1.1.0 - *", "GeneralizedGenerated"=>"0.3.3 - *", "HypergeometricFunctions"=>"0.3.30 - *", "IfElse"=>"0.1.1 - *", "Infinities"=>"0.1.13 - *", "InitialValues"=>"0.3.1 - *", "IntegerMathUtils"=>"0.1.4 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.1.1 - *", "IterTools"=>"1.10.0 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"1.8.0 - *", "JSON3"=>"1.14.3 - *", "JuliaVariables"=>"0.2.4 - *", "KeywordCalls"=>"0.2.5 - *", "LabelledArrays"=>"1.13.0 - *", "LazyArrays"=>"0.22.18 - *", "Libiconv_jll"=>"1.18.0 - *", "LightXML"=>"0.9.3 - *", "LineSearches"=>"7.5.1 - *", "LinearAlgebraX"=>"0.1.13 - *", "LogExpFunctions"=>"0.3.29 - *", "LogarithmicNumbers"=>"1.4.1 - *", "MCMCDiagnostics"=>"0.3.0 - *", "MLStyle"=>"0.4.17 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MathOptInterface"=>"1.48.0 - *", "MatrixFactorizations"=>"0.9.6 - *", "MeasureBase"=>"0.12.3 - *", "MeasureTheory"=>"0.16.5 - *", "Measurements"=>"2.14.1 - *", "Metatheory"=>"1.4.0 - *", "MicroCollections"=>"0.1.4 - *", "Missings"=>"1.2.0 - *", "Mods"=>"1.3.4 - *", "Multisets"=>"0.4.6 - *", "MultivariatePolynomials"=>"0.4.7 - *", "MutableArithmetics"=>"1.8.0 - *", "NLSolversBase"=>"7.8.3 - *", "NaNMath"=>"1.1.4 - *", "NameResolution"=>"0.1.5 - *", "NamedTupleTools"=>"0.14.3 - *", "NestedTuples"=>"0.3.10 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optim"=>"1.11.0 - *", "OrderedCollections"=>"1.8.2 - *", "OrdinaryDiffEq"=>"7.8.1 - 7", "PDMats"=>"0.11.35 - *", "Parameters"=>"0.12.3 - *", "Parsers"=>"2.8.8 - *", "Permutations"=>"0.4.23 - *", "Polynomials"=>"4.1.2 - *", "PositiveFactorizations"=>"0.2.4 - *", "PreallocationTools"=>"0.4.11 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrettyPrint"=>"0.2.0 - *", "PrettyPrinting"=>"0.4.3 - *", "Primes"=>"0.5.7 - *", "PtrArrays"=>"1.4.0 - *", "QuadGK"=>"2.11.3 - *", "RecipesBase"=>"1.3.4 - *", "RecursiveArrayTools"=>"2.37.0 - *", "Reexport"=>"1.2.2 - *", "Referenceables"=>"0.1.3 - *", "Requires"=>"1.3.1 - *", "RingLists"=>"0.2.9 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "RuntimeGeneratedFunctions"=>"0.5.25 - *", "SampleChains"=>"0.5.1 - *", "Setfield"=>"1.1.2 - *", "SimpleGraphs"=>"0.7.18 - *", "SimplePartitions"=>"0.3.3 - *", "SimplePolynomials"=>"0.2.18 - *", "SimplePosets"=>"0.1.5 - *", "SimpleRandom"=>"0.3.2 - *", "SnoopPrecompile"=>"1.0.3 - *", "SortingAlgorithms"=>"1.2.3 - *", "Soss"=>"0.21.2 - *", "SpecialFunctions"=>"2.9.0 - *", "SplittablesBase"=>"0.1.15 - *", "Static"=>"0.6.6 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.33.22 - *", "StatsFuns"=>"1.5.3 - *", "StructArrays"=>"0.6.18 - *", "StructTypes"=>"1.11.0 - *", "StructUtils"=>"2.8.5 - *", "SymbolicIndexingInterface"=>"0.2.2 - *", "SymbolicUtils"=>"0.19.11 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TermInterface"=>"0.2.3 - *", "ThreadsX"=>"0.1.12 - *", "TimerOutputs"=>"0.5.29 - *", "Trajectories"=>"0.2.2 - *", "TranscodingStreams"=>"0.11.3 - *", "Transducers"=>"0.4.80 - *", "TransformVariables"=>"0.6.4 - *", "Tricks"=>"0.1.13 - *", "TupleVectors"=>"0.1.5 - *", "UnPack"=>"1.0.2 - *", "UnsafeArrays"=>"1.0.9 - *", "XML2_jll"=>"2.15.3 - *", "ZygoteRules"=>"0.2.8 - *")),
"Soss+manifest-bump-DataStructures" => (["Soss", "Distributions", "StatsBase", "DataStructures"], Dict("AbstractLattices"=>"0.2.1 - *", "AbstractTrees"=>"0.4.5 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"3.7.2 - *", "AliasTables"=>"1.1.3 - *", "ArgCheck"=>"2.5.0 - *", "ArrayInterface"=>"6.0.17 - *", "ArrayInterfaceCore"=>"0.1.29 - *", "ArrayInterfaceStaticArrays"=>"0.1.2 - *", "ArrayInterfaceStaticArraysCore"=>"0.1.4 - *", "ArrayLayouts"=>"0.8.19 - *", "ArraysOfArrays"=>"0.5.10 - *", "AutoHashEquals"=>"0.2.0 - *", "BangBang"=>"0.3.40 - *", "Baselet"=>"0.1.1 - *", "BenchmarkTools"=>"1.8.0 - *", "Bijections"=>"0.1.10 - *", "Bzip2_jll"=>"1.0.9 - *", "Calculus"=>"0.5.2 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CodecBzip2"=>"0.8.5 - *", "CodecZlib"=>"0.7.9 - *", "Combinatorics"=>"1.1.0 - *", "CommonSolve"=>"0.2.14 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConcreteStructs"=>"0.2.8 - *", "ConstructionBase"=>"1.5.6 - *", "DataAPI"=>"1.16.0 - *", "DataStructures"=>"0.19.6 - 0.19", "DataValueInterfaces"=>"1.0.0 - *", "DefineSingletons"=>"0.1.2 - *", "DensityInterface"=>"0.4.0 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "Distributions"=>"0.25.131 - *", "DocStringExtensions"=>"0.9.5 - *", "DynamicIterators"=>"0.4.3 - *", "DynamicPolynomials"=>"0.4.6 - *", "ElasticArrays"=>"1.2.12 - *", "ExprTools"=>"0.1.11 - *", "FillArrays"=>"0.13.11 - *", "FiniteDiff"=>"2.17.0 - *", "FlexLinearAlgebra"=>"0.1.1 - *", "ForwardDiff"=>"0.10.39 - *", "GPUArraysCore"=>"0.1.5 - *", "Gamma"=>"1.1.0 - *", "GeneralizedGenerated"=>"0.3.3 - *", "HypergeometricFunctions"=>"0.3.30 - *", "IfElse"=>"0.1.1 - *", "Infinities"=>"0.1.13 - *", "InitialValues"=>"0.3.1 - *", "IntegerMathUtils"=>"0.1.4 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.1.1 - *", "IterTools"=>"1.10.0 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON"=>"1.8.0 - *", "JSON3"=>"1.14.3 - *", "JuliaVariables"=>"0.2.4 - *", "KeywordCalls"=>"0.2.5 - *", "LabelledArrays"=>"1.13.0 - *", "LazyArrays"=>"0.22.18 - *", "Libiconv_jll"=>"1.18.0 - *", "LightXML"=>"0.9.3 - *", "LineSearches"=>"7.5.1 - *", "LinearAlgebraX"=>"0.1.13 - *", "LogExpFunctions"=>"0.3.29 - *", "LogarithmicNumbers"=>"1.4.1 - *", "MCMCDiagnostics"=>"0.3.0 - *", "MLStyle"=>"0.4.17 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MathOptInterface"=>"1.48.0 - *", "MatrixFactorizations"=>"0.9.6 - *", "MeasureBase"=>"0.12.3 - *", "MeasureTheory"=>"0.16.5 - *", "Measurements"=>"2.14.1 - *", "Metatheory"=>"1.4.0 - *", "MicroCollections"=>"0.1.4 - *", "Missings"=>"1.2.0 - *", "Mods"=>"1.3.4 - *", "Multisets"=>"0.4.6 - *", "MultivariatePolynomials"=>"0.4.7 - *", "MutableArithmetics"=>"1.8.0 - *", "NLSolversBase"=>"7.8.3 - *", "NaNMath"=>"1.1.4 - *", "NameResolution"=>"0.1.5 - *", "NamedTupleTools"=>"0.14.3 - *", "NestedTuples"=>"0.3.10 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optim"=>"1.11.0 - *", "OrderedCollections"=>"1.8.2 - *", "PDMats"=>"0.11.35 - *", "Parameters"=>"0.12.3 - *", "Parsers"=>"2.8.8 - *", "Permutations"=>"0.4.23 - *", "Polynomials"=>"4.1.2 - *", "PositiveFactorizations"=>"0.2.4 - *", "PreallocationTools"=>"0.4.11 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrettyPrint"=>"0.2.0 - *", "PrettyPrinting"=>"0.4.3 - *", "Primes"=>"0.5.7 - *", "PtrArrays"=>"1.4.0 - *", "QuadGK"=>"2.11.3 - *", "RecipesBase"=>"1.3.4 - *", "RecursiveArrayTools"=>"2.37.0 - *", "Reexport"=>"1.2.2 - *", "Referenceables"=>"0.1.3 - *", "Requires"=>"1.3.1 - *", "RingLists"=>"0.2.9 - *", "Rmath"=>"0.9.0 - *", "Rmath_jll"=>"0.5.2 - *", "Roots"=>"3.0.8 - *", "RuntimeGeneratedFunctions"=>"0.5.25 - *", "SampleChains"=>"0.5.1 - *", "Setfield"=>"1.1.2 - *", "SimpleGraphs"=>"0.7.18 - *", "SimplePartitions"=>"0.3.3 - *", "SimplePolynomials"=>"0.2.18 - *", "SimplePosets"=>"0.1.5 - *", "SimpleRandom"=>"0.3.2 - *", "SnoopPrecompile"=>"1.0.3 - *", "SortingAlgorithms"=>"1.2.3 - *", "Soss"=>"0.21.2 - *", "SpecialFunctions"=>"2.9.0 - *", "SplittablesBase"=>"0.1.15 - *", "Static"=>"0.6.6 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.33.22 - *", "StatsFuns"=>"1.5.3 - *", "StructArrays"=>"0.6.18 - *", "StructTypes"=>"1.11.0 - *", "StructUtils"=>"2.8.5 - *", "SymbolicIndexingInterface"=>"0.2.2 - *", "SymbolicUtils"=>"0.19.11 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TermInterface"=>"0.2.3 - *", "ThreadsX"=>"0.1.12 - *", "TimerOutputs"=>"0.5.29 - *", "Trajectories"=>"0.2.2 - *", "TranscodingStreams"=>"0.11.3 - *", "Transducers"=>"0.4.80 - *", "TransformVariables"=>"0.6.4 - *", "Tricks"=>"0.1.13 - *", "TupleVectors"=>"0.1.5 - *", "UnPack"=>"1.0.2 - *", "UnsafeArrays"=>"1.0.9 - *", "XML2_jll"=>"2.15.3 - *", "ZygoteRules"=>"0.2.8 - *")),
"Symbolics+manifest-add-Images" => (["Symbolics", "DataStructures", "SymbolicUtils", "ArrayInterface", "Images"], Dict("ADTypes"=>"1.24.0 - *", "AbstractPlutoDingetjes"=>"1.4.1 - *", "AbstractTrees"=>"0.4.5 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"4.7.0 - *", "ArnoldiMethod"=>"0.4.0 - *", "ArrayInterface"=>"7.30.1 - *", "Bijections"=>"0.2.2 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "Combinatorics"=>"1.0.2 - *", "CommonSubexpressions"=>"0.3.1 - *", "CommonWorldInvalidations"=>"1.2.2 - *", "Compat"=>"4.18.1 - *", "CompositeTypes"=>"0.1.4 - *", "CompositionsBase"=>"0.1.2 - *", "ConstructionBase"=>"1.6.0 - *", "DataStructures"=>"0.19.6 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DocStringExtensions"=>"0.9.5 - *", "DomainSets"=>"0.8.1 - *", "DynamicPolynomials"=>"0.6.8 - *", "EnumX"=>"1.0.7 - *", "ExprTools"=>"0.1.11 - *", "ExproniconLite"=>"0.10.14 - *", "ForwardDiff"=>"1.4.5 - *", "FunctionMaps"=>"0.1.2 - *", "GPUArraysCore"=>"0.2.0 - *", "Graphs"=>"1.14.0 - *", "Images"=>"0.26.2 - 0.26", "Inflate"=>"0.1.5 - *", "IntegerMathUtils"=>"0.1.4 - *", "IntervalSets"=>"0.7.14 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "JLLWrappers"=>"1.8.0 - *", "Jieko"=>"0.2.1 - *", "LabelledArrays"=>"1.20.3 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "Moshi"=>"0.3.9 - *", "MultivariatePolynomials"=>"0.5.19 - *", "MutableArithmetics"=>"1.8.0 - *", "NaNMath"=>"1.1.4 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"2.0.1 - *", "PreallocationTools"=>"1.7.1 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "Primes"=>"0.5.7 - *", "ReadOnlyArrays"=>"0.2.0 - *", "RecipesBase"=>"1.3.4 - *", "RecursiveArrayTools"=>"4.5.1 - *", "Reexport"=>"1.2.2 - *", "RuntimeGeneratedFunctions"=>"0.5.25 - *", "SciMLPublic"=>"1.3.0 - *", "SciMLStructures"=>"1.10.5 - *", "Setfield"=>"1.1.2 - *", "SimpleTraits"=>"0.9.6 - *", "SpecialFunctions"=>"2.9.0 - *", "StarAlgebras"=>"0.3.0 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "SymbolicIndexingInterface"=>"0.3.55 - *", "SymbolicLimits"=>"1.2.1 - *", "SymbolicUtils"=>"4.46.2 - *", "Symbolics"=>"7.39.0 - *", "TaskLocalValues"=>"0.1.3 - *", "TermInterface"=>"2.0.0 - *", "WeakCacheSets"=>"0.1.0 - *")),
"Transformers+bump-HTTP" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("Flux"=>"0.14.25 - 0.14", "HTTP"=>"2.6.7 - 2", "Transformers"=>"0.3.1 - 0.3", "Zygote"=>"0.6.77 - 0.6")),
"Transformers+manifest-bump-Flux" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("AbstractFFTs"=>"1.5.0 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"4.7.0 - *", "AliasTables"=>"1.1.3 - *", "Atomix"=>"1.1.3 - *", "BFloat16s"=>"0.6.1 - *", "BangBang"=>"0.4.9 - *", "BitFlags"=>"0.1.10 - *", "BytePairEncoding"=>"0.5.2 - *", "CEnum"=>"0.5.0 - *", "ChainRules"=>"1.73.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CodeTracking"=>"3.0.2 - *", "CodecZlib"=>"0.7.9 - *", "CommonSubexpressions"=>"0.3.1 - *", "CommonWorldInvalidations"=>"1.2.2 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConcurrentUtilities"=>"2.6.0 - *", "ConstructionBase"=>"1.6.0 - *", "DLFP8Types"=>"0.1.0 - *", "DataAPI"=>"1.16.0 - *", "DataDeps"=>"0.7.14 - *", "DataStructures"=>"0.18.22 - *", "DataValueInterfaces"=>"1.0.0 - *", "DelimitedFiles"=>"1.9.1 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DocStringExtensions"=>"0.9.5 - *", "DoubleArrayTries"=>"0.1.1 - *", "EnzymeCore"=>"0.8.21 - *", "ExceptionUnwrapping"=>"0.1.11 - *", "ExprTools"=>"0.1.11 - *", "Fetch"=>"0.1.4 - *", "FillArrays"=>"1.17.0 - *", "Flux"=>"0.16.11 - 0.16", "ForwardDiff"=>"1.4.5 - *", "FuncPipelines"=>"0.2.3 - *", "FuncTransforms"=>"0.1.1 - *", "Functors"=>"0.4.12 - *", "GPUArrays"=>"10.3.1 - *", "GPUArraysCore"=>"0.1.6 - *", "HTML_Entities"=>"1.0.2 - *", "HTTP"=>"1.11.0 - *", "HashArrayMappedTries"=>"0.2.0 - *", "HuggingFaceApi"=>"0.1.0 - *", "IRTools"=>"0.4.20 - *", "IfElse"=>"0.1.1 - *", "InitialValues"=>"0.3.1 - *", "InternedStrings"=>"0.7.0 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON3"=>"1.14.3 - *", "KernelAbstractions"=>"0.9.42 - *", "LLVM"=>"9.13.1 - *", "LLVMExtra_jll"=>"0.0.47 - *", "LRUCache"=>"1.6.2 - *", "Libiconv_jll"=>"1.18.0 - *", "LightXML"=>"0.9.3 - *", "LogExpFunctions"=>"0.3.29 - *", "LoggingExtras"=>"1.2.0 - *", "MLCore"=>"1.1.0 - *", "MLDataDevices"=>"1.5.3 - *", "MLUtils"=>"0.4.13 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MbedTLS"=>"1.1.10 - *", "MbedTLS_jll"=>"2.28.1010 - *", "Missings"=>"1.2.0 - *", "NNlib"=>"0.9.31 - *", "NaNMath"=>"1.1.4 - *", "NeuralAttentionlib"=>"0.3.3 - *", "OffsetArrays"=>"1.17.0 - *", "OhMyArtifacts"=>"0.3.1 - *", "OneHotArrays"=>"0.2.11 - *", "OpenSSL"=>"1.6.1 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optimisers"=>"0.3.4 - *", "OrderedCollections"=>"1.8.2 - *", "PackageExtensionCompat"=>"1.0.2 - *", "Parsers"=>"2.8.8 - *", "PartialFunctions"=>"1.2.1 - *", "Pickle"=>"0.3.7 - *", "Pidfile"=>"1.3.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrimitiveOneHot"=>"0.2.1 - *", "ProgressLogging"=>"0.1.6 - *", "ProgressMeter"=>"1.11.0 - *", "PtrArrays"=>"1.4.0 - *", "RealDot"=>"0.1.0 - *", "Reexport"=>"1.2.2 - *", "RelocatableFolders"=>"1.0.1 - *", "Requires"=>"1.3.1 - *", "RustRegex"=>"0.1.0 - *", "SafeTensors"=>"1.2.1 - *", "SciMLPublic"=>"1.3.0 - *", "ScopedValues"=>"1.6.2 - *", "Scratch"=>"1.3.0 - *", "Setfield"=>"1.1.2 - *", "ShowCases"=>"0.1.0 - *", "SimpleBufferStream"=>"1.2.0 - *", "SimpleTraits"=>"0.9.6 - *", "SortingAlgorithms"=>"1.2.3 - *", "SparseInverseSubset"=>"0.1.3 - *", "SpecialFunctions"=>"2.9.0 - *", "Static"=>"1.4.6 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StrTables"=>"1.0.1 - *", "StridedViews"=>"0.4.6 - *", "StringEncodings"=>"0.3.7 - *", "StringViews"=>"1.3.7 - *", "StructArrays"=>"0.6.18 - *", "StructTypes"=>"1.11.0 - *", "StructWalk"=>"0.2.1 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TextEncodeBase"=>"0.8.3 - *", "TranscodingStreams"=>"0.11.3 - *", "Transformers"=>"0.3.1 - *", "Tricks"=>"0.1.13 - *", "URIs"=>"1.7.0 - *", "UnsafeAtomics"=>"0.3.2 - *", "ValSplit"=>"0.1.2 - *", "WordTokenizers"=>"0.5.6 - *", "XML2_jll"=>"2.15.3 - *", "ZipFile"=>"0.10.1 - *", "Zygote"=>"0.6.77 - *", "ZygoteRules"=>"0.2.8 - *", "rure_jll"=>"0.2.2 - *")),
"Transformers+manifest-bump-HTTP" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("AbstractFFTs"=>"1.5.0 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"4.7.0 - *", "AliasTables"=>"1.1.3 - *", "Atomix"=>"1.1.3 - *", "BFloat16s"=>"0.6.1 - *", "BangBang"=>"0.4.9 - *", "BitFlags"=>"0.1.10 - *", "BytePairEncoding"=>"0.5.2 - *", "CEnum"=>"0.5.0 - *", "ChainRules"=>"1.73.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CodeTracking"=>"3.0.2 - *", "CodecZlib"=>"0.7.9 - *", "CommonSubexpressions"=>"0.3.1 - *", "CommonWorldInvalidations"=>"1.2.2 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConcurrentUtilities"=>"2.6.0 - *", "ConstructionBase"=>"1.6.0 - *", "DLFP8Types"=>"0.1.0 - *", "DataAPI"=>"1.16.0 - *", "DataDeps"=>"0.7.14 - *", "DataStructures"=>"0.18.22 - *", "DataValueInterfaces"=>"1.0.0 - *", "DelimitedFiles"=>"1.9.1 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DocStringExtensions"=>"0.9.5 - *", "DoubleArrayTries"=>"0.1.1 - *", "EnzymeCore"=>"0.8.21 - *", "ExceptionUnwrapping"=>"0.1.11 - *", "ExprTools"=>"0.1.11 - *", "Fetch"=>"0.1.4 - *", "FillArrays"=>"1.17.0 - *", "Flux"=>"0.14.25 - *", "ForwardDiff"=>"1.4.5 - *", "FuncPipelines"=>"0.2.3 - *", "FuncTransforms"=>"0.1.1 - *", "Functors"=>"0.4.12 - *", "GPUArrays"=>"10.3.1 - *", "GPUArraysCore"=>"0.1.6 - *", "HTML_Entities"=>"1.0.2 - *", "HTTP"=>"2.6.7 - 2", "HashArrayMappedTries"=>"0.2.0 - *", "HuggingFaceApi"=>"0.1.0 - *", "IRTools"=>"0.4.20 - *", "IfElse"=>"0.1.1 - *", "InitialValues"=>"0.3.1 - *", "InternedStrings"=>"0.7.0 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON3"=>"1.14.3 - *", "KernelAbstractions"=>"0.9.42 - *", "LLVM"=>"9.13.1 - *", "LLVMExtra_jll"=>"0.0.47 - *", "LRUCache"=>"1.6.2 - *", "Libiconv_jll"=>"1.18.0 - *", "LightXML"=>"0.9.3 - *", "LogExpFunctions"=>"0.3.29 - *", "LoggingExtras"=>"1.2.0 - *", "MLCore"=>"1.1.0 - *", "MLDataDevices"=>"1.5.3 - *", "MLUtils"=>"0.4.13 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MbedTLS"=>"1.1.10 - *", "MbedTLS_jll"=>"2.28.1010 - *", "Missings"=>"1.2.0 - *", "NNlib"=>"0.9.31 - *", "NaNMath"=>"1.1.4 - *", "NeuralAttentionlib"=>"0.3.3 - *", "OffsetArrays"=>"1.17.0 - *", "OhMyArtifacts"=>"0.3.1 - *", "OneHotArrays"=>"0.2.11 - *", "OpenSSL"=>"1.6.1 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optimisers"=>"0.3.4 - *", "OrderedCollections"=>"1.8.2 - *", "PackageExtensionCompat"=>"1.0.2 - *", "Parsers"=>"2.8.8 - *", "PartialFunctions"=>"1.2.1 - *", "Pickle"=>"0.3.7 - *", "Pidfile"=>"1.3.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrimitiveOneHot"=>"0.2.1 - *", "ProgressLogging"=>"0.1.6 - *", "ProgressMeter"=>"1.11.0 - *", "PtrArrays"=>"1.4.0 - *", "RealDot"=>"0.1.0 - *", "Reexport"=>"1.2.2 - *", "RelocatableFolders"=>"1.0.1 - *", "Requires"=>"1.3.1 - *", "RustRegex"=>"0.1.0 - *", "SafeTensors"=>"1.2.1 - *", "SciMLPublic"=>"1.3.0 - *", "ScopedValues"=>"1.6.2 - *", "Scratch"=>"1.3.0 - *", "Setfield"=>"1.1.2 - *", "ShowCases"=>"0.1.0 - *", "SimpleBufferStream"=>"1.2.0 - *", "SimpleTraits"=>"0.9.6 - *", "SortingAlgorithms"=>"1.2.3 - *", "SparseInverseSubset"=>"0.1.3 - *", "SpecialFunctions"=>"2.9.0 - *", "Static"=>"1.4.6 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StrTables"=>"1.0.1 - *", "StridedViews"=>"0.4.6 - *", "StringEncodings"=>"0.3.7 - *", "StringViews"=>"1.3.7 - *", "StructArrays"=>"0.6.18 - *", "StructTypes"=>"1.11.0 - *", "StructWalk"=>"0.2.1 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TextEncodeBase"=>"0.8.3 - *", "TranscodingStreams"=>"0.11.3 - *", "Transformers"=>"0.3.1 - *", "Tricks"=>"0.1.13 - *", "URIs"=>"1.7.0 - *", "UnsafeAtomics"=>"0.3.2 - *", "ValSplit"=>"0.1.2 - *", "WordTokenizers"=>"0.5.6 - *", "XML2_jll"=>"2.15.3 - *", "ZipFile"=>"0.10.1 - *", "Zygote"=>"0.6.77 - *", "ZygoteRules"=>"0.2.8 - *", "rure_jll"=>"0.2.2 - *")),
"Transformers+manifest-bump-Zygote" => (["Transformers", "Zygote", "Flux", "HTTP"], Dict("AbstractFFTs"=>"1.5.0 - *", "Accessors"=>"0.1.45 - *", "Adapt"=>"4.7.0 - *", "AliasTables"=>"1.1.3 - *", "Atomix"=>"1.1.3 - *", "BFloat16s"=>"0.6.1 - *", "BangBang"=>"0.4.9 - *", "BitFlags"=>"0.1.10 - *", "BytePairEncoding"=>"0.5.2 - *", "CEnum"=>"0.5.0 - *", "ChainRules"=>"1.73.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CodeTracking"=>"3.0.2 - *", "CodecZlib"=>"0.7.9 - *", "CommonSubexpressions"=>"0.3.1 - *", "CommonWorldInvalidations"=>"1.2.2 - *", "Compat"=>"4.18.1 - *", "CompositionsBase"=>"0.1.2 - *", "ConcurrentUtilities"=>"2.6.0 - *", "ConstructionBase"=>"1.6.0 - *", "DLFP8Types"=>"0.1.0 - *", "DataAPI"=>"1.16.0 - *", "DataDeps"=>"0.7.14 - *", "DataStructures"=>"0.18.22 - *", "DataValueInterfaces"=>"1.0.0 - *", "DelimitedFiles"=>"1.9.1 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DocStringExtensions"=>"0.9.5 - *", "DoubleArrayTries"=>"0.1.1 - *", "EnzymeCore"=>"0.8.21 - *", "ExceptionUnwrapping"=>"0.1.11 - *", "ExprTools"=>"0.1.11 - *", "Fetch"=>"0.1.4 - *", "FillArrays"=>"1.17.0 - *", "Flux"=>"0.14.25 - *", "ForwardDiff"=>"1.4.5 - *", "FuncPipelines"=>"0.2.3 - *", "FuncTransforms"=>"0.1.1 - *", "Functors"=>"0.4.12 - *", "GPUArrays"=>"10.3.1 - *", "GPUArraysCore"=>"0.1.6 - *", "HTML_Entities"=>"1.0.2 - *", "HTTP"=>"1.11.0 - *", "HashArrayMappedTries"=>"0.2.0 - *", "HuggingFaceApi"=>"0.1.0 - *", "IRTools"=>"0.4.20 - *", "IfElse"=>"0.1.1 - *", "InitialValues"=>"0.3.1 - *", "InternedStrings"=>"0.7.0 - *", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "JSON3"=>"1.14.3 - *", "KernelAbstractions"=>"0.9.42 - *", "LLVM"=>"9.13.1 - *", "LLVMExtra_jll"=>"0.0.47 - *", "LRUCache"=>"1.6.2 - *", "Libiconv_jll"=>"1.18.0 - *", "LightXML"=>"0.9.3 - *", "LogExpFunctions"=>"0.3.29 - *", "LoggingExtras"=>"1.2.0 - *", "MLCore"=>"1.1.0 - *", "MLDataDevices"=>"1.5.3 - *", "MLUtils"=>"0.4.13 - *", "MacroTools"=>"0.5.16 - *", "MappedArrays"=>"0.4.3 - *", "MbedTLS"=>"1.1.10 - *", "MbedTLS_jll"=>"2.28.1010 - *", "Missings"=>"1.2.0 - *", "NNlib"=>"0.9.31 - *", "NaNMath"=>"1.1.4 - *", "NeuralAttentionlib"=>"0.3.3 - *", "OffsetArrays"=>"1.17.0 - *", "OhMyArtifacts"=>"0.3.1 - *", "OneHotArrays"=>"0.2.11 - *", "OpenSSL"=>"1.6.1 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "Optimisers"=>"0.3.4 - *", "OrderedCollections"=>"1.8.2 - *", "PackageExtensionCompat"=>"1.0.2 - *", "Parsers"=>"2.8.8 - *", "PartialFunctions"=>"1.2.1 - *", "Pickle"=>"0.3.7 - *", "Pidfile"=>"1.3.0 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "PrimitiveOneHot"=>"0.2.1 - *", "ProgressLogging"=>"0.1.6 - *", "ProgressMeter"=>"1.11.0 - *", "PtrArrays"=>"1.4.0 - *", "RealDot"=>"0.1.0 - *", "Reexport"=>"1.2.2 - *", "RelocatableFolders"=>"1.0.1 - *", "Requires"=>"1.3.1 - *", "RustRegex"=>"0.1.0 - *", "SafeTensors"=>"1.2.1 - *", "SciMLPublic"=>"1.3.0 - *", "ScopedValues"=>"1.6.2 - *", "Scratch"=>"1.3.0 - *", "Setfield"=>"1.1.2 - *", "ShowCases"=>"0.1.0 - *", "SimpleBufferStream"=>"1.2.0 - *", "SimpleTraits"=>"0.9.6 - *", "SortingAlgorithms"=>"1.2.3 - *", "SparseInverseSubset"=>"0.1.3 - *", "SpecialFunctions"=>"2.9.0 - *", "Static"=>"1.4.6 - *", "StaticArrays"=>"1.9.20 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StatsAPI"=>"1.8.0 - *", "StatsBase"=>"0.34.13 - *", "StrTables"=>"1.0.1 - *", "StridedViews"=>"0.4.6 - *", "StringEncodings"=>"0.3.7 - *", "StringViews"=>"1.3.7 - *", "StructArrays"=>"0.6.18 - *", "StructTypes"=>"1.11.0 - *", "StructWalk"=>"0.2.1 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "TextEncodeBase"=>"0.8.3 - *", "TranscodingStreams"=>"0.11.3 - *", "Transformers"=>"0.3.1 - *", "Tricks"=>"0.1.13 - *", "URIs"=>"1.7.0 - *", "UnsafeAtomics"=>"0.3.2 - *", "ValSplit"=>"0.1.2 - *", "WordTokenizers"=>"0.5.6 - *", "XML2_jll"=>"2.15.3 - *", "ZipFile"=>"0.10.1 - *", "Zygote"=>"0.7.13 - 0.7", "ZygoteRules"=>"0.2.8 - *", "rure_jll"=>"0.2.2 - *")),
"Turing+big20-partial" => (["Turing", "Statistics", "JLLWrappers", "Distributions", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "JSON", "SpecialFunctions", "DataStructures", "ProgressMeter", "ForwardDiff", "DelimitedFiles", "Tables", "OrderedCollections", "RecipesBase", "MacroTools", "Requires", "Optim", "SciMLBase"], Dict("DataStructures"=>"0.19.6 - 0.19", "DelimitedFiles"=>"1.9.1 - 1", "Distributions"=>"0.25.131 - 0.25", "DocStringExtensions"=>"0.9.5 - 0.9", "ForwardDiff"=>"1.4.5 - 1", "JLLWrappers"=>"1.8.0 - 1", "JSON"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "Optim"=>"2.3.1 - 2", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "ProgressMeter"=>"1.11.0 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SciMLBase"=>"3.51.0 - 3", "SpecialFunctions"=>"2.9.0 - 2", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "Tables"=>"1.14.0 - 1", "Turing"=>"0.48")),
"VoronoiFVM+big20-partial" => (["VoronoiFVM", "Statistics", "JLLWrappers", "StaticArrays", "StatsBase", "Reexport", "PrecompileTools", "DocStringExtensions", "SpecialFunctions", "DataStructures", "ForwardDiff", "OrderedCollections", "Graphs", "RecipesBase", "MacroTools", "JLD2", "Interpolations", "FileIO", "Requires", "Colors", "SciMLBase"], Dict("Colors"=>"0.13.1 - 0.13", "DataStructures"=>"0.19.6 - 0.19", "DocStringExtensions"=>"0.9.5 - 0.9", "FileIO"=>"1.20.0 - 1", "ForwardDiff"=>"1.4.5 - 1", "Graphs"=>"1.14.0 - 1", "Interpolations"=>"0.16.3 - 0.16", "JLD2"=>"0.6.6 - 0.6", "JLLWrappers"=>"1.8.0 - 1", "MacroTools"=>"0.5.16 - 0.5", "OrderedCollections"=>"2.0.1 - 2", "PrecompileTools"=>"1.3.4 - 1", "RecipesBase"=>"1.3.4 - 1", "Reexport"=>"1.2.2 - 1", "Requires"=>"1.3.1 - 1", "SciMLBase"=>"3.51.0 - 3", "SpecialFunctions"=>"2.9.0 - 2", "StaticArrays"=>"1.9.20 - 1", "Statistics"=>"1.11.5 - 1", "StatsBase"=>"0.34.13 - 0.34", "VoronoiFVM"=>"3.5.2 - 3")),
"Zygote+manifest-add-Images" => (["Zygote", "ForwardDiff", "ChainRules", "ChainRulesCore", "Images"], Dict("AbstractFFTs"=>"1.5.0 - *", "Adapt"=>"4.7.0 - *", "ChainRules"=>"1.73.0 - *", "ChainRulesCore"=>"1.26.1 - *", "ChangesOfVariables"=>"0.1.11 - *", "CommonSubexpressions"=>"0.3.1 - *", "Compat"=>"4.18.1 - *", "ConstructionBase"=>"1.6.0 - *", "DataAPI"=>"1.16.0 - *", "DataValueInterfaces"=>"1.0.0 - *", "DiffResults"=>"1.1.0 - *", "DiffRules"=>"1.16.0 - *", "DocStringExtensions"=>"0.9.5 - *", "FillArrays"=>"1.17.0 - *", "ForwardDiff"=>"1.4.5 - *", "GPUArraysCore"=>"0.2.0 - *", "IRTools"=>"0.4.20 - *", "Images"=>"0.26.2 - 0.26", "InverseFunctions"=>"0.1.17 - *", "IrrationalConstants"=>"0.2.6 - *", "IteratorInterfaceExtensions"=>"1.0.0 - *", "JLLWrappers"=>"1.8.0 - *", "LogExpFunctions"=>"1.0.1 - *", "MacroTools"=>"0.5.16 - *", "NaNMath"=>"1.1.4 - *", "OpenSpecFun_jll"=>"0.5.6 - *", "OrderedCollections"=>"2.0.1 - *", "PrecompileTools"=>"1.3.4 - *", "Preferences"=>"1.5.2 - *", "RealDot"=>"0.1.0 - *", "SparseInverseSubset"=>"0.1.3 - *", "SpecialFunctions"=>"2.9.0 - *", "StaticArraysCore"=>"1.4.4 - *", "Statistics"=>"1.11.5 - *", "StructArrays"=>"0.7.3 - *", "TableTraits"=>"1.0.1 - *", "Tables"=>"1.14.0 - *", "Zygote"=>"0.7.13 - *", "ZygoteRules"=>"0.2.8 - *")),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment