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 d82298f85 Fix pyarrow integration test (#3707)
d82298f85 is described below
commit d82298f855a1bc8c99fc635292cbf55675807c46
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Mon Feb 13 13:05:52 2023 +0000
Fix pyarrow integration test (#3707)
---
arrow-pyarrow-integration-testing/Cargo.toml | 3 ---
arrow-pyarrow-integration-testing/pyproject.toml | 2 ++
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/arrow-pyarrow-integration-testing/Cargo.toml
b/arrow-pyarrow-integration-testing/Cargo.toml
index 75990dc90..3ab256e54 100644
--- a/arrow-pyarrow-integration-testing/Cargo.toml
+++ b/arrow-pyarrow-integration-testing/Cargo.toml
@@ -34,6 +34,3 @@ crate-type = ["cdylib"]
[dependencies]
arrow = { path = "../arrow", version = "33.0.0", features = ["pyarrow"] }
pyo3 = { version = "0.18", features = ["extension-module"] }
-
-[package.metadata.maturin]
-requires-dist = ["pyarrow>=1"]
diff --git a/arrow-pyarrow-integration-testing/pyproject.toml
b/arrow-pyarrow-integration-testing/pyproject.toml
index 27480690e..d75f8de1a 100644
--- a/arrow-pyarrow-integration-testing/pyproject.toml
+++ b/arrow-pyarrow-integration-testing/pyproject.toml
@@ -18,3 +18,5 @@
[build-system]
requires = ["maturin"]
build-backend = "maturin"
+
+dependencies = ["pyarrow>=1"]