Skip to content

Commit bbe3281

Browse files
Fix Reexport dependency conflict in downgrade CI
Updates Reexport version constraint from various versions (1, 1.2) to 1.2.2 across all packages to resolve dependency conflict with OrdinaryDiffEqTsit5 v1.2.0. When running with ALLOW_RERESOLVE: false in the downgrade CI, the previous constraint would pin to Reexport v1.2.0, but OrdinaryDiffEqTsit5 v1.2.0 requires Reexport v1.2.2, creating an unsatisfiable constraint. Updated in: - Main package Project.toml - lib/BracketingNonlinearSolve/Project.toml - lib/NonlinearSolveFirstOrder/Project.toml - lib/NonlinearSolveQuasiNewton/Project.toml - lib/NonlinearSolveSciPy/Project.toml - lib/NonlinearSolveSpectralMethods/Project.toml - lib/SCCNonlinearSolve/Project.toml - lib/SimpleNonlinearSolve/Project.toml 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 8b1ddf1 commit bbe3281

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ PrecompileTools = "1.2"
101101
Preferences = "1.4"
102102
Random = "1.10"
103103
ReTestItems = "1.24"
104-
Reexport = "1.2"
104+
Reexport = "1.2.2"
105105
SIAMFANLEquations = "1.0.1"
106106
SciMLBase = "2.69"
107107
SimpleNonlinearSolve = "2.1"

lib/BracketingNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ForwardDiff = "0.10.36, 1"
3333
InteractiveUtils = "<0.0.1, 1"
3434
NonlinearSolveBase = "1.1"
3535
PrecompileTools = "1.2"
36-
Reexport = "1.2"
36+
Reexport = "1.2.2"
3737
SciMLBase = "2.69"
3838
Test = "1.10"
3939
TestItemRunner = "1"

lib/NonlinearSolveFirstOrder/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
Random = "1.10"
5454
ReTestItems = "1.24"
55-
Reexport = "1"
55+
Reexport = "1.2.2"
5656
SciMLBase = "2.69"
5757
SciMLJacobianOperators = "0.1.0"
5858
Setfield = "1.1.1"

lib/NonlinearSolveQuasiNewton/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ NonlinearSolveBase = "1.4"
5151
Pkg = "1.10"
5252
PrecompileTools = "1.2"
5353
ReTestItems = "1.24"
54-
Reexport = "1"
54+
Reexport = "1.2.2"
5555
SciMLBase = "2.69"
5656
SciMLOperators = "0.4, 1"
5757
StableRNGs = "1"

lib/NonlinearSolveSciPy/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ NonlinearSolveBase = "1.4"
2222
PrecompileTools = "1.2"
2323
PythonCall = "0.9"
2424
ReTestItems = "1.24"
25-
Reexport = "1"
25+
Reexport = "1.2.2"
2626
SciMLBase = "2.69"
2727
Test = "1.10"
2828
julia = "1.10"

lib/NonlinearSolveSpectralMethods/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ NonlinearSolveBase = "1.4"
4040
Pkg = "1.10"
4141
PrecompileTools = "1.2"
4242
ReTestItems = "1.24"
43-
Reexport = "1"
43+
Reexport = "1.2.2"
4444
SciMLBase = "2.69"
4545
StableRNGs = "1"
4646
StaticArrays = "1.9.8"

lib/SCCNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ NonlinearSolveFirstOrder = "1"
2424
Pkg = "1.10"
2525
PrecompileTools = "1.2"
2626
ReTestItems = "1.24"
27-
Reexport = "1"
27+
Reexport = "1.2.2"
2828
SciMLBase = "2.69"
2929
StableRNGs = "1"
3030
StaticArrays = "1.9.8"

lib/SimpleNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Pkg = "1.10"
6666
PolyesterForwardDiff = "0.1.3"
6767
PrecompileTools = "1.2"
6868
Random = "1.10"
69-
Reexport = "1.2"
69+
Reexport = "1.2.2"
7070
ReverseDiff = "1.15"
7171
SciMLBase = "2.69"
7272
Setfield = "1.1.1"

0 commit comments

Comments
 (0)