Skip to content

Commit ba56083

Browse files
Use the latest rand and ndarray-rand (#50)
* Use the latest rand and ndarray-rand * Fix fmt
1 parent c5403ef commit ba56083

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ ndarray = "0.12.1"
2020
noisy_float = "0.1.8"
2121
num-integer = "0.1"
2222
num-traits = "0.2"
23-
rand = "0.6"
23+
rand = "0.7"
2424
itertools = { version = "0.8.0", default-features = false }
2525
indexmap = "1.0"
2626

2727
[dev-dependencies]
2828
criterion = "0.2"
2929
quickcheck = { version = "0.8.1", default-features = false }
30-
ndarray-rand = "0.9"
30+
ndarray-rand = "0.10"
3131
approx = "0.3"
3232
quickcheck_macros = "0.8"
3333
num-bigint = "0.2.2"

src/correlation.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,5 +340,4 @@ mod pearson_correlation_tests {
340340
assert_eq!(a.ndim(), 2);
341341
assert!(a.pearson_correlation().all_close(&numpy_corrcoeff, 1e-7));
342342
}
343-
344343
}

0 commit comments

Comments
 (0)