Skip to content

Commit ecdec77

Browse files
Remove redundant test dependencies from sublibraries
Remove test dependencies that are already in deps section: - OrdinaryDiffEqAdamsBashforthMoulton: Remove DiffEqBase - OrdinaryDiffEqBDF: Remove StaticArrays - OrdinaryDiffEqExtrapolation: Remove DiffEqBase - OrdinaryDiffEqRosenbrock: Remove ForwardDiff, LinearSolve, LinearAlgebra These packages don't need to be duplicated in [extras] since they're already available as main dependencies. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent e53158e commit ecdec77

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

lib/OrdinaryDiffEqAdamsBashforthMoulton/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
2323
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
2424
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
2525
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
26-
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
2726
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2827

2928
[compat]

lib/OrdinaryDiffEqBDF/Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
3333
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3434
Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9"
3535
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
36-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
3736
ODEProblemLibrary = "fdc4e326-1af4-4b90-96e7-779fcce2daa5"
3837
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
3938
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
@@ -72,7 +71,7 @@ Reexport = "1.2"
7271
SafeTestsets = "0.1.0"
7372

7473
[targets]
75-
test = ["DiffEqDevTools", "ForwardDiff", "Random", "SafeTestsets", "Test", "ODEProblemLibrary", "NonlinearSolve", "StaticArrays", "Enzyme", "LinearSolve", "JET", "Aqua", "AllocCheck"]
74+
test = ["DiffEqDevTools", "ForwardDiff", "Random", "SafeTestsets", "Test", "ODEProblemLibrary", "NonlinearSolve", "Enzyme", "LinearSolve", "JET", "Aqua", "AllocCheck"]
7675

7776
[sources.OrdinaryDiffEqSDIRK]
7877
path = "../OrdinaryDiffEqSDIRK"

lib/OrdinaryDiffEqExtrapolation/Project.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2424
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
2525
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
2626
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
27-
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
2827
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2928

3029
[compat]

lib/OrdinaryDiffEqRosenbrock/Project.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
2525
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
2626

2727
[extras]
28-
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
2928
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3029
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
3130
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
32-
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
33-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
3431
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
3532
Enzyme = "7da242da-08ed-463a-9acd-ee780be4f1d9"
3633
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
@@ -72,7 +69,7 @@ Reexport = "1.2"
7269
SafeTestsets = "0.1.0"
7370

7471
[targets]
75-
test = ["DiffEqDevTools", "Random", "OrdinaryDiffEqNonlinearSolve", "SafeTestsets", "Test", "LinearAlgebra", "LinearSolve", "ForwardDiff", "ODEProblemLibrary", "Enzyme", "JET", "Aqua", "AllocCheck"]
72+
test = ["DiffEqDevTools", "Random", "OrdinaryDiffEqNonlinearSolve", "SafeTestsets", "Test", "ODEProblemLibrary", "Enzyme", "JET", "Aqua", "AllocCheck"]
7673

7774
[sources.OrdinaryDiffEqDifferentiation]
7875
path = "../OrdinaryDiffEqDifferentiation"

0 commit comments

Comments
 (0)