From 2ab21433efcce4f15128d37b6ecd1cbb106982bc Mon Sep 17 00:00:00 2001 From: Gernot Bauer Date: Wed, 12 Mar 2025 16:32:13 +0100 Subject: [PATCH] Update PyO3 version to 0.24 --- CHANGELOG.md | 5 +++++ Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4a1633..58ab193 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## Unreleased + +### Packaging +- Update to PyO3 0.24 + ## 0.23.0 - 2024-11-22 ### Packaging diff --git a/Cargo.toml b/Cargo.toml index f696dea..57de5e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pythonize" -version = "0.23.0" +version = "0.24.0" authors = ["David Hewitt <1939362+davidhewitt@users.noreply.github.com>"] edition = "2021" rust-version = "1.63" @@ -13,11 +13,11 @@ documentation = "https://docs.rs/crate/pythonize/" [dependencies] serde = { version = "1.0", default-features = false, features = ["std"] } -pyo3 = { version = "0.23.1", default-features = false } +pyo3 = { version = "0.24", default-features = false } [dev-dependencies] serde = { version = "1.0", default-features = false, features = ["derive"] } -pyo3 = { version = "0.23.1", default-features = false, features = ["auto-initialize", "macros", "py-clone"] } +pyo3 = { version = "0.24", default-features = false, features = ["auto-initialize", "macros", "py-clone"] } serde_json = "1.0" serde_bytes = "0.11" maplit = "1.0.2"