From 419f37718323a8b1674e4d12072b974aaf037580 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 22:29:36 +0000 Subject: [PATCH] chore(deps): update pyo3 requirement from 0.22.0 to 0.23.3 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/v0.22.6/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.22.0...v0.22.6) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- eppo_core/Cargo.toml | 2 +- python-sdk/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eppo_core/Cargo.toml b/eppo_core/Cargo.toml index 18a5517..27b10b9 100644 --- a/eppo_core/Cargo.toml +++ b/eppo_core/Cargo.toml @@ -41,7 +41,7 @@ url = "2.5.0" uuid = { version = "1.11.0", features = ["v4", "serde"] } # pyo3 dependencies -pyo3 = { version = "0.22.0", optional = true, default-features = false } +pyo3 = { version = "0.23.3", optional = true, default-features = false } serde-pyobject = { version = "0.4.0", optional = true} # magnus dependencies diff --git a/python-sdk/Cargo.toml b/python-sdk/Cargo.toml index d88c454..546707e 100644 --- a/python-sdk/Cargo.toml +++ b/python-sdk/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] [dependencies] eppo_core = { version = "=6.0.0", path = "../eppo_core", features = ["pyo3", "vendored"] } log = "0.4.22" -pyo3 = { version = "0.22.0" } +pyo3 = { version = "0.23.3" } pyo3-log = "0.11.0" serde-pyobject = "0.4.0" serde_json = "1.0.125"