From f4f3817b42adba4c1ffb8e21b59b90673dadd672 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Oct 2023 13:48:24 +0000 Subject: [PATCH] chore(deps): Update polars, pyo3 and pyo3-polars. (#67) --- Cargo.toml | 4 +++- pywr-python/Cargo.toml | 4 ++-- pywr-schema/Cargo.toml | 6 +++--- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index deb94bfa..130c074b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,9 @@ 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" } +polars = { version = "0.34.2", features = ["lazy", "rows", "ndarray"] } +pyo3-polars = "0.8.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..c0206067 100644 --- a/pywr-python/Cargo.toml +++ b/pywr-python/Cargo.toml @@ -14,8 +14,8 @@ categories = ["science", "simulation"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -pyo3-polars = "0.7.0" -pyo3 = { version = "0.19.0" } +pyo3 = { workspace = true } +pyo3-polars = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } pywr-core = { path="../pywr-core" } diff --git a/pywr-schema/Cargo.toml b/pywr-schema/Cargo.toml index a8857ce3..f5112477 100644 --- a/pywr-schema/Cargo.toml +++ b/pywr-schema/Cargo.toml @@ -15,15 +15,15 @@ categories = ["science", "simulation"] [dependencies] svgbobdoc = { version = "0.3.0", features = ["enable"] } -polars = { version = "0.33.2", features = ["lazy", "rows", "ndarray"] } -pyo3-polars = "0.7.0" +polars = { workspace = true } +pyo3 = { workspace = true } +pyo3-polars = { workspace = true } strum = "0.25" strum_macros = "0.25" hdf5 = { workspace = true } csv = { workspace = true } tracing = { workspace = true } -pyo3 = { workspace = true } num = { workspace = true } ndarray = { workspace = true } serde = { workspace = true }