From 636f7dfd2f4249f65d518924d182ae5ec168f16b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Dec 2020 06:13:32 +0000 Subject: [PATCH] Bump numpy from 0.11.0 to 0.12.2 Bumps [numpy](https://github.com/rust-numpy/rust-numpy) from 0.11.0 to 0.12.2. - [Release notes](https://github.com/rust-numpy/rust-numpy/releases) - [Changelog](https://github.com/PyO3/rust-numpy/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-numpy/rust-numpy/compare/v0.11.0...v0.12.2) Signed-off-by: dependabot[bot] --- Cargo.lock | 50 ++++++++++++++++++++++++++++++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 45 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42d8f444a8..88b535179b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,16 +306,16 @@ dependencies = [ [[package]] name = "numpy" -version = "0.11.0" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1afa393812b0e4c33d8a46054028ce39d79f954dfa98298f25691abf00b24e39" +checksum = "9fd9e8e652becf4ba6c11803945f8bf463c23f482f704bb33f70ae9d22482d10" dependencies = [ "cfg-if", "libc", "ndarray", "num-complex", "num-traits", - "pyo3", + "pyo3 0.12.4", ] [[package]] @@ -406,7 +406,23 @@ dependencies = [ "libc", "parking_lot", "paste", - "pyo3cls", + "pyo3cls 0.11.1", + "unindent", +] + +[[package]] +name = "pyo3" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf6bbbe8f70d179260b3728e5d04eb012f4f0c7988e58c11433dd689cecaa72e" +dependencies = [ + "ctor", + "indoc", + "inventory", + "libc", + "parking_lot", + "paste", + "pyo3cls 0.12.4", "unindent", ] @@ -421,13 +437,35 @@ dependencies = [ "syn", ] +[[package]] +name = "pyo3-derive-backend" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10ecd0eb6ed7b3d9965b4f4370b5b9e99e3e5e8742000e1c452c018f8c2a322f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "pyo3cls" version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3fa17e1ea569d0bf3b7c00f2a9eea831ca05e55dd76f1794c541abba1c64baa" dependencies = [ - "pyo3-derive-backend", + "pyo3-derive-backend 0.11.1", + "quote", + "syn", +] + +[[package]] +name = "pyo3cls" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d344fdaa6a834a06dd1720ff104ea12fe101dad2e8db89345af9db74c0bb11a0" +dependencies = [ + "pyo3-derive-backend 0.12.4", "quote", "syn", ] @@ -537,7 +575,7 @@ dependencies = [ "ndarray", "numpy", "petgraph", - "pyo3", + "pyo3 0.11.1", "rand", "rand_pcg", "rayon", diff --git a/Cargo.toml b/Cargo.toml index bb2c53f6fe..a67de06b49 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ crate-type = ["cdylib"] [dependencies] petgraph = "0.5.1" fixedbitset = "0.2.0" -numpy = "0.11.0" +numpy = "0.12.2" ndarray = "0.13.0" rand = "0.7" rand_pcg = "0.2"