From 1ff06ee1f7f64c874d86f437247ce2bc4d4dcb57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 19:15:29 +0000 Subject: [PATCH] chore(deps): Update pyo3 requirement from 0.19.0 to 0.20.0 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.19.0...v0.19.2) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- pywr-python/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index deb94bfa..301c13d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ thiserror = "1.0.25" time = { version = "0.3", features = ["serde", "serde-well-known", "serde-human-readable", "macros"] } num = "0.4.0" ndarray = "0.15.3" -pyo3 = { version = "0.19.0" } +pyo3 = { version = "0.20.0" } tracing = "0.1" csv = "1.1" hdf5 = { version="0.8.1" } diff --git a/pywr-python/Cargo.toml b/pywr-python/Cargo.toml index 47617bc7..4e4e9419 100644 --- a/pywr-python/Cargo.toml +++ b/pywr-python/Cargo.toml @@ -15,7 +15,7 @@ categories = ["science", "simulation"] [dependencies] pyo3-polars = "0.7.0" -pyo3 = { version = "0.19.0" } +pyo3 = { version = "0.20.0" } serde = { workspace = true } serde_json = { workspace = true } pywr-core = { path="../pywr-core" }