Skip to content

Commit 4234154

Browse files
Fix Project.toml: move weakdeps back out of [deps]
Commit 286ea09 accidentally moved FastBroadcast, Polyester, SparseArrays, StaticArrays, and RecursiveArrayToolsShorthandConstructors into [deps] (they were added there by stray Pkg.add/Pkg.develop calls during development). Restore FastBroadcast/Polyester/SparseArrays to [weakdeps] and drop StaticArrays/ShorthandConstructors (they are test-only). This fixes the Aqua stale_deps and deps_compat failures on Julia 1.10 CI, which were caused by the polluted [deps] triggering a circular precompile with the ShorthandConstructors subpackage dev'd in runtests.jl. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 26866cf commit 4234154

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,23 @@ authors = ["Chris Rackauckas <accounts@chrisrackauckas.com>"]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
88
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
99
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
10-
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
1110
GPUArraysCore = "46192b85-c4d5-4398-a991-12ede77f4527"
1211
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
13-
Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
1412
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1513
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
16-
RecursiveArrayToolsShorthandConstructors = "39fb7555-b4ad-4efd-8abe-30331df017d3"
17-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
18-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1914
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
2015
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
2116

2217
[weakdeps]
2318
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
19+
FastBroadcast = "7034ab61-46d4-4ed7-9d0f-46aef9175898"
2420
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
2521
KernelAbstractions = "63c18a36-062a-441e-b654-da1e3ab1ce7c"
2622
Measurements = "eff96d63-e80a-5855-80a2-b1b0885c5ab7"
2723
MonteCarloMeasurements = "0987c9cc-fe09-11e8-30f0-b96dd679fdca"
24+
Polyester = "f517fe37-dbe3-4b94-8317-1923a5111588"
2825
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
26+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2927
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
3028
StructArrays = "09ab397b-f2b6-538f-b94a-2f83cf4a842a"
3129
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

0 commit comments

Comments
 (0)