You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/01/18 20:50:09 UTC

[arrow-rs] branch master updated: Upgrade pyo3 to 0.18.0 (#3557)

This is an automated email from the ASF dual-hosted git repository.

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new de62808a9 Upgrade pyo3 to 0.18.0 (#3557)
de62808a9 is described below

commit de62808a9d65e052ff3e89550bf780d952c8ceae
Author: Liang-Chi Hsieh <vi...@gmail.com>
AuthorDate: Wed Jan 18 12:50:03 2023 -0800

    Upgrade pyo3 to 0.18.0 (#3557)
---
 arrow-pyarrow-integration-testing/Cargo.toml | 2 +-
 arrow/Cargo.toml                             | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arrow-pyarrow-integration-testing/Cargo.toml b/arrow-pyarrow-integration-testing/Cargo.toml
index e1fa90836..7a2dc563a 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 = "31.0.0", features = ["pyarrow"] }
-pyo3 = { version = "0.17", features = ["extension-module"] }
+pyo3 = { version = "0.18", features = ["extension-module"] }
 
 [package.metadata.maturin]
 requires-dist = ["pyarrow>=1"]
diff --git a/arrow/Cargo.toml b/arrow/Cargo.toml
index 8719cba0e..ee926ee52 100644
--- a/arrow/Cargo.toml
+++ b/arrow/Cargo.toml
@@ -61,7 +61,7 @@ arrow-string = { version = "31.0.0", path = "../arrow-string" }
 
 rand = { version = "0.8", default-features = false, features = ["std", "std_rng"], optional = true }
 comfy-table = { version = "6.0", optional = true, default-features = false }
-pyo3 = { version = "0.17", default-features = false, optional = true }
+pyo3 = { version = "0.18", default-features = false, optional = true }
 bitflags = { version = "1.2.1", default-features = false, optional = true }
 
 [package.metadata.docs.rs]