From ca88688baa56155b9f03e13291ad9ad9971c766e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Nov 2022 07:15:43 +0000 Subject: [PATCH] Update pyo3 requirement from 0.8.5 to 0.17.3 Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) to permit the latest version. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.8.5...v0.17.3) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c38421f..73c6a0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ crate-type = ["cdylib"] # argmin_core = { path = "../argmin-core" } # argmin = { path = "../argmin", features = ["ctrlc", "ndarrayl"]} argmin = {version = "0.2.6", features = ["ctrlc", "ndarrayl"]} -pyo3 = { version = "0.8.5", features = ["extension-module"] } +pyo3 = { version = "0.17.3", features = ["extension-module"] } serde = "1.0" numpy = "0.7.0" ndarray = "0.13"