From 797c420f98022d7d691167f22fa1b169242aacc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:36:37 +0800 Subject: [PATCH] :arrow_up: Update pyo3 requirement from 0.22 to 0.23 (#719) 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.22.0...v0.23.2) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- python/extension/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/extension/Cargo.toml b/python/extension/Cargo.toml index 78bcd740..943bc0ce 100644 --- a/python/extension/Cargo.toml +++ b/python/extension/Cargo.toml @@ -21,7 +21,7 @@ rayon = { version = "1.7" } rayon-cond = { version = "0.3" } anyhow = { version = "1.0" } serde = { version = "1.0", features = ["derive"] } -pyo3 = { version = "0.22", features = ["extension-module", "anyhow", "serde"] } +pyo3 = { version = "0.23", features = ["extension-module", "anyhow", "serde"] } mimalloc = { version = "0.1", default-features = false, optional = true } [dependencies.ltp]