Skip to content

Commit 714ead6

Browse files
committed
Fix sources section format in subpackage Project.toml files
The [sources] section should be a single section with all sources listed as key-value pairs, not separate [sources.PackageName] subsections.
1 parent ee49e88 commit 714ead6

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

lib/NonlinearSolveHomotopyContinuation/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1616
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
1717
TaylorDiff = "b36ab563-344f-407b-a36a-4f200bebf99c"
1818

19-
[sources.NonlinearSolveBase]
20-
path = "../NonlinearSolveBase"
19+
[sources]
20+
NonlinearSolveBase = {path = "../NonlinearSolveBase"}
2121

2222
[compat]
2323
ADTypes = "1.11.0"

lib/NonlinearSolveQuasiNewton/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
2121
[weakdeps]
2222
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
2323

24-
[sources.NonlinearSolveBase]
25-
path = "../NonlinearSolveBase"
24+
[sources]
25+
NonlinearSolveBase = {path = "../NonlinearSolveBase"}
2626

2727
[extensions]
2828
NonlinearSolveQuasiNewtonForwardDiffExt = "ForwardDiff"

lib/NonlinearSolveSciPy/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
1111
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1212
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1313

14-
[sources.NonlinearSolveBase]
15-
path = "../NonlinearSolveBase"
14+
[sources]
15+
NonlinearSolveBase = {path = "../NonlinearSolveBase"}
1616

1717
[compat]
1818
ConcreteStructs = "0.2.3"

lib/SimpleNonlinearSolve/Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,9 @@ DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
2929
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
3030
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
3131

32-
[sources.BracketingNonlinearSolve]
33-
path = "../BracketingNonlinearSolve"
34-
35-
[sources.NonlinearSolveBase]
36-
path = "../NonlinearSolveBase"
32+
[sources]
33+
BracketingNonlinearSolve = {path = "../BracketingNonlinearSolve"}
34+
NonlinearSolveBase = {path = "../NonlinearSolveBase"}
3735

3836
[extensions]
3937
SimpleNonlinearSolveChainRulesCoreExt = "ChainRulesCore"

0 commit comments

Comments
 (0)