From 3604387032da05c9bfc7a4455eba6395760176cc Mon Sep 17 00:00:00 2001 From: xd009642 Date: Mon, 30 Nov 2020 21:13:48 +0400 Subject: [PATCH 1/2] Bump version and dependencies post ndarray 0.14 --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7c4a5de4..83812b76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ndarray-stats" -version = "0.3.1-alpha.0" +version = "0.4.0" authors = ["Jim Turner ", "LukeMathWalker "] edition = "2018" @@ -16,22 +16,22 @@ keywords = ["array", "multidimensional", "statistics", "matrix", "ndarray"] categories = ["data-structures", "science"] [dependencies] -ndarray = "0.13" +ndarray = "0.14" noisy_float = "0.1.8" num-integer = "0.1" num-traits = "0.2" rand = "0.7" -itertools = { version = "0.8.0", default-features = false } +itertools = { version = "0.9.0", default-features = false } indexmap = "1.0" [dev-dependencies] -ndarray = { version = "0.13", features = ["approx"] } -criterion = "0.2" -quickcheck = { version = "0.8.1", default-features = false } -ndarray-rand = "0.11" -approx = "0.3" -quickcheck_macros = "0.8" -num-bigint = "0.2.2" +ndarray = { version = "0.14", features = ["approx"] } +criterion = "0.3" +quickcheck = { version = "0.9.2", default-features = false } +ndarray-rand = "0.12" +approx = "0.4" +quickcheck_macros = "0.9" +num-bigint = "0.3.1" [[bench]] name = "sort" From bc2a278a82776a4b0891091ab13ecefce2fff295 Mon Sep 17 00:00:00 2001 From: xd009642 Date: Tue, 1 Dec 2020 09:37:46 +0400 Subject: [PATCH 2/2] Update travis min version and simplify tarp install --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 827dba65..64d6409b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ addons: - libssl-dev cache: cargo rust: - - 1.37.0 + - 1.42.0 - stable - beta - nightly @@ -16,7 +16,7 @@ matrix: - rust: nightly before_cache: | if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then - RUSTFLAGS="--cfg procmacro2_semver_exempt" cargo install cargo-tarpaulin -f + cargo install cargo-tarpaulin -f fi before_script: - rustup component add rustfmt