From 62f0a934f7791ea16b7cd32a7f1099cc5c43bb05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Feb 2022 19:20:58 +0000 Subject: [PATCH 1/2] Update pyo3 requirement from 0.15 to 0.16 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.15.0...v0.16.0) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arrow/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml index f5368c1f13bc..d4df7ad87724 100644 --- a/arrow/Cargo.toml +++ b/arrow/Cargo.toml @@ -53,7 +53,7 @@ chrono-tz = {version = "0.6", optional = true} flatbuffers = { version = "=2.1.1", optional = true } hex = "0.4" comfy-table = { version = "5.0", optional = true, default-features = false } -pyo3 = { version = "0.15", optional = true } +pyo3 = { version = "0.16", optional = true } lexical-core = "^0.8" multiversion = "0.6.1" bitflags = "1.2.1" From 481f0c2f5533a870914d8cb22660df8db7fe2708 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Mon, 28 Feb 2022 16:04:42 -0500 Subject: [PATCH 2/2] Update pyo3 version in integration tests as well --- arrow-pyarrow-integration-testing/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-pyarrow-integration-testing/Cargo.toml b/arrow-pyarrow-integration-testing/Cargo.toml index 60e7c72af563..34297bada7e6 100644 --- a/arrow-pyarrow-integration-testing/Cargo.toml +++ b/arrow-pyarrow-integration-testing/Cargo.toml @@ -33,7 +33,7 @@ crate-type = ["cdylib"] [dependencies] arrow = { path = "../arrow", version = "9.1.0", features = ["pyarrow"] } -pyo3 = { version = "0.15", features = ["extension-module"] } +pyo3 = { version = "0.16", features = ["extension-module"] } [package.metadata.maturin] requires-dist = ["pyarrow>=1"]