From a2a31beb3b5b3b9e4fd54625b8a38f204e880891 Mon Sep 17 00:00:00 2001 From: Ritchie Vink Date: Wed, 14 Aug 2024 19:00:04 +0200 Subject: [PATCH] Release pyo3-polars 0.16.0 -> Rust Polars 0.42 (#95) --- Cargo.toml | 24 ++++++++++++------------ pyo3-polars-derive/Cargo.toml | 2 +- pyo3-polars/Cargo.toml | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f0d8c82..3abd31b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,21 +9,21 @@ members = [ ] [workspace.dependencies] -polars = { version = "0.41.0", default-features = false } -polars-core = { version = "0.41.0", default-features = false } -polars-ffi = { version = "0.41.0", default-features = false } -polars-plan = { version = "0.41.0", default-feautres = false } -polars-lazy = { version = "0.41.0", default-features = false } +polars = { version = "0.42.0", default-features = false } +polars-core = { version = "0.42.0", default-features = false } +polars-ffi = { version = "0.42.0", default-features = false } +polars-plan = { version = "0.42.0", default-feautres = false } +polars-lazy = { version = "0.42.0", default-features = false } [workspace.dependencies.arrow] package = "polars-arrow" -version = "0.41.3" +version = "0.42.0" path = "../polars/crates/polars-arrow" default-features = false -[patch.crates-io] -polars = { git = "https://github.com/pola-rs/polars.git" } -polars-core = { git = "https://github.com/pola-rs/polars.git" } -polars-ffi = { git = "https://github.com/pola-rs/polars.git" } -polars-plan = { git = "https://github.com/pola-rs/polars.git" } -polars-lazy = { git = "https://github.com/pola-rs/polars.git" } +#[patch.crates-io] +#polars = { git = "https://github.com/pola-rs/polars.git" } +#polars-core = { git = "https://github.com/pola-rs/polars.git" } +#polars-ffi = { git = "https://github.com/pola-rs/polars.git" } +#polars-plan = { git = "https://github.com/pola-rs/polars.git" } +#polars-lazy = { git = "https://github.com/pola-rs/polars.git" } diff --git a/pyo3-polars-derive/Cargo.toml b/pyo3-polars-derive/Cargo.toml index 2a4c413..7e2d212 100644 --- a/pyo3-polars-derive/Cargo.toml +++ b/pyo3-polars-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyo3-polars-derive" -version = "0.9.0" +version = "0.10.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/pyo3-polars/Cargo.toml b/pyo3-polars/Cargo.toml index 3df51a4..3c32e5f 100644 --- a/pyo3-polars/Cargo.toml +++ b/pyo3-polars/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyo3-polars" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "MIT" readme = "../README.md" @@ -19,7 +19,7 @@ polars-ffi = { workspace = true, optional = true } polars-lazy = { workspace = true, optional = true } polars-plan = { workspace = true, optional = true } pyo3 = "0.22.2" -pyo3-polars-derive = { version = "0.9.0", path = "../pyo3-polars-derive", optional = true } +pyo3-polars-derive = { version = "0.10.0", path = "../pyo3-polars-derive", optional = true } serde = { version = "1", optional = true } serde-pickle = { version = "1", optional = true } thiserror = "1"