Skip to content

Commit 57bf79c

Browse files
Fix downgrade CI
1 parent 4db4000 commit 57bf79c

File tree

11 files changed

+30
-41
lines changed

11 files changed

+30
-41
lines changed

Project.toml

Lines changed: 12 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,14 @@ SIAMFANLEquations = "084e46ad-d928-497d-ad5e-07fa361a48c4"
4545
SpeedMapping = "f1835b91-879b-4a3f-a438-e4baacf14412"
4646
Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
4747

48+
[sources]
49+
BracketingNonlinearSolve = {path = "lib/BracketingNonlinearSolve"}
50+
NonlinearSolveBase = {path = "lib/NonlinearSolveBase"}
51+
NonlinearSolveFirstOrder = {path = "lib/NonlinearSolveFirstOrder"}
52+
NonlinearSolveQuasiNewton = {path = "lib/NonlinearSolveQuasiNewton"}
53+
NonlinearSolveSpectralMethods = {path = "lib/NonlinearSolveSpectralMethods"}
54+
SimpleNonlinearSolve = {path = "lib/SimpleNonlinearSolve"}
55+
4856
[extensions]
4957
NonlinearSolveFastLevenbergMarquardtExt = "FastLevenbergMarquardt"
5058
NonlinearSolveFixedPointAccelerationExt = "FixedPointAcceleration"
@@ -58,7 +66,7 @@ NonlinearSolveSpeedMappingExt = "SpeedMapping"
5866
NonlinearSolveSundialsExt = "Sundials"
5967

6068
[compat]
61-
ADTypes = "1.9"
69+
ADTypes = "1.11"
6270
Aqua = "0.8"
6371
ArrayInterface = "7.16"
6472
BandedMatrices = "1.5"
@@ -68,7 +76,7 @@ CUDA = "5.5"
6876
CommonSolve = "0.2.4"
6977
ConcreteStructs = "0.2.3"
7078
DiffEqBase = "6.158.3"
71-
DifferentiationInterface = "0.6.18, 0.7"
79+
DifferentiationInterface = "0.6.27, 0.7"
7280
Enzyme = "0.13.11"
7381
ExplicitImports = "1.5"
7482
FastClosures = "0.3.2"
@@ -103,15 +111,15 @@ Random = "1.10"
103111
ReTestItems = "1.24"
104112
Reexport = "1.2"
105113
SIAMFANLEquations = "1.0.1"
106-
SciMLBase = "2.69"
114+
SciMLBase = "2.92"
107115
SimpleNonlinearSolve = "2.1"
108116
SparseArrays = "1.10"
109117
SparseConnectivityTracer = "0.6.5"
110118
SparseMatrixColorings = "0.4.5"
111119
SpeedMapping = "0.3"
112120
StableRNGs = "1"
113121
StaticArrays = "1.9"
114-
StaticArraysCore = "1.4"
122+
StaticArraysCore = "1.4.3"
115123
Sundials = "4.23.1"
116124
SymbolicIndexingInterface = "0.3.36"
117125
Test = "1.10"
@@ -151,24 +159,5 @@ Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
151159
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
152160
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
153161

154-
[sources.BracketingNonlinearSolve]
155-
path = "lib/BracketingNonlinearSolve"
156-
157-
[sources.NonlinearSolveBase]
158-
path = "lib/NonlinearSolveBase"
159-
160-
[sources.NonlinearSolveFirstOrder]
161-
path = "lib/NonlinearSolveFirstOrder"
162-
163-
[sources.NonlinearSolveQuasiNewton]
164-
path = "lib/NonlinearSolveQuasiNewton"
165-
166-
[sources.NonlinearSolveSpectralMethods]
167-
path = "lib/NonlinearSolveSpectralMethods"
168-
169-
[sources.SimpleNonlinearSolve]
170-
path = "lib/SimpleNonlinearSolve"
171-
172162
[targets]
173163
test = ["Aqua", "BandedMatrices", "BenchmarkTools", "CUDA", "Enzyme", "ExplicitImports", "FastLevenbergMarquardt", "FixedPointAcceleration", "Hwloc", "InteractiveUtils", "LeastSquaresOptim", "LineSearches", "MINPACK", "NLSolvers", "NLsolve", "NaNMath", "NonlinearProblemLibrary", "OrdinaryDiffEqTsit5", "PETSc", "Pkg", "PolyesterForwardDiff", "Random", "ReTestItems", "SIAMFANLEquations", "SparseConnectivityTracer", "SpeedMapping", "StableRNGs", "StaticArrays", "Sundials", "Test", "Zygote"]
174-

lib/BracketingNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ InteractiveUtils = "<0.0.1, 1"
3434
NonlinearSolveBase = "1.1"
3535
PrecompileTools = "1.2"
3636
Reexport = "1.2"
37-
SciMLBase = "2.69"
37+
SciMLBase = "2.92"
3838
Test = "1.10"
3939
TestItemRunner = "1"
4040
julia = "1.10"

lib/NonlinearSolveBase/Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,21 @@ NonlinearSolveBaseSparseMatrixColoringsExt = "SparseMatrixColorings"
4848
ADTypes = "1.9"
4949
Adapt = "4.1.0"
5050
Aqua = "0.8.7"
51-
ArrayInterface = "7.9"
51+
ArrayInterface = "7.16"
5252
BandedMatrices = "1.5"
5353
CommonSolve = "0.2.4"
5454
Compat = "4.15"
5555
ConcreteStructs = "0.2.3"
5656
DiffEqBase = "6.158.3"
57-
DifferentiationInterface = "0.6.16, 0.7"
57+
DifferentiationInterface = "0.6.27, 0.7"
5858
EnzymeCore = "0.8"
5959
ExplicitImports = "1.10.1"
6060
FastClosures = "0.3"
6161
ForwardDiff = "0.10.36, 1"
6262
InteractiveUtils = "<0.0.1, 1"
6363
LineSearch = "0.1.4"
6464
LinearAlgebra = "1.10"
65-
LinearSolve = "3.15"
65+
LinearSolve = "2.36.1, 3"
6666
Markdown = "1.10"
6767
MaybeInplace = "0.1.4"
6868
Preferences = "1.4"
@@ -73,7 +73,7 @@ SciMLJacobianOperators = "0.1.1"
7373
SciMLOperators = "0.4, 1.0"
7474
SparseArrays = "1.10"
7575
SparseMatrixColorings = "0.4.5"
76-
StaticArraysCore = "1.4"
76+
StaticArraysCore = "1.4.3"
7777
SymbolicIndexingInterface = "0.3.36"
7878
Test = "1.10"
7979
TimerOutputs = "0.5.23"

lib/NonlinearSolveFirstOrder/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ PrecompileTools = "1.2"
5353
Random = "1.10"
5454
ReTestItems = "1.24"
5555
Reexport = "1"
56-
SciMLBase = "2.69"
56+
SciMLBase = "2.92"
5757
SciMLJacobianOperators = "0.1.0"
5858
Setfield = "1.1.1"
5959
SparseArrays = "1.10"

lib/NonlinearSolveHomotopyContinuation/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ LinearAlgebra = "1.10"
3232
NaNMath = "1.1"
3333
NonlinearSolve = "4"
3434
NonlinearSolveBase = "1.3.3"
35-
SciMLBase = "2.72.2"
35+
SciMLBase = "2.92"
3636
SymbolicIndexingInterface = "0.3.36"
3737
TaylorDiff = "0.3.1"
3838
Test = "1.10"

lib/NonlinearSolveQuasiNewton/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Pkg = "1.10"
5252
PrecompileTools = "1.2"
5353
ReTestItems = "1.24"
5454
Reexport = "1"
55-
SciMLBase = "2.69"
55+
SciMLBase = "2.92"
5656
SciMLOperators = "0.4, 1"
5757
StableRNGs = "1"
5858
StaticArrays = "1.9.8"

lib/NonlinearSolveSciPy/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ PrecompileTools = "1.2"
2323
PythonCall = "0.9"
2424
ReTestItems = "1.24"
2525
Reexport = "1"
26-
SciMLBase = "2.69"
26+
SciMLBase = "2.92"
2727
Test = "1.10"
2828
julia = "1.10"
2929

lib/NonlinearSolveSpectralMethods/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Pkg = "1.10"
4141
PrecompileTools = "1.2"
4242
ReTestItems = "1.24"
4343
Reexport = "1"
44-
SciMLBase = "2.69"
44+
SciMLBase = "2.92"
4545
StableRNGs = "1"
4646
StaticArrays = "1.9.8"
4747
Test = "1.10"

lib/SCCNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Pkg = "1.10"
2525
PrecompileTools = "1.2"
2626
ReTestItems = "1.24"
2727
Reexport = "1"
28-
SciMLBase = "2.69"
28+
SciMLBase = "2.92"
2929
StableRNGs = "1"
3030
StaticArrays = "1.9.8"
3131
SymbolicIndexingInterface = "0.3.36"

lib/SciMLJacobianOperators/Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1515
SciMLOperators = "c0aeaf25-5076-4817-a8d5-81caf7dfa961"
1616

1717
[compat]
18-
ADTypes = "1.8.1"
18+
ADTypes = "1.11"
1919
Aqua = "0.8.7"
2020
ArrayInterface = "7.16"
2121
ConcreteStructs = "0.2.3"
2222
ConstructionBase = "1.5"
23-
DifferentiationInterface = "0.6.16, 0.7"
23+
DifferentiationInterface = "0.6.27, 0.7"
2424
Enzyme = "0.13.11"
2525
ExplicitImports = "1.9.0"
2626
FastClosures = "0.3.2"
@@ -29,7 +29,7 @@ ForwardDiff = "0.10.36, 1"
2929
InteractiveUtils = "<0.0.1, 1"
3030
LinearAlgebra = "1.10"
3131
ReverseDiff = "1.15"
32-
SciMLBase = "2.69"
32+
SciMLBase = "2.92"
3333
SciMLOperators = "0.4, 1"
3434
Test = "1.10"
3535
TestItemRunner = "1"

0 commit comments

Comments
 (0)