Skip to content

Commit f597ccc

Browse files
committed
DistributedArrays depends on SparseArrays
src/mapreduce.jl does 'import SparseArrays: nnz'. Without this change, Julia reports an error on 'using DistributedArrays' about the SparseArrays dependency.
1 parent 072661c commit f597ccc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
99
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1010
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
11+
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1112
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1213

1314
[compat]
1415
julia = ">= 1.0"
1516

1617
[extras]
1718
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
18-
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1919
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
2020

2121
[targets]
22-
test = ["Test", "SparseArrays", "SpecialFunctions"]
22+
test = ["Test", "SpecialFunctions"]

0 commit comments

Comments
 (0)