You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/12/30 12:29:40 UTC

[arrow-rs] branch master updated: Update verify_release.sh to work with 30.0.0 (#3413)

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

alamb 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 9398af67d Update verify_release.sh to work with 30.0.0 (#3413)
9398af67d is described below

commit 9398af67d5d6530616fd5e687ba781299d74bfd4
Author: Andrew Lamb <an...@nerdnetworks.org>
AuthorDate: Fri Dec 30 07:29:34 2022 -0500

    Update verify_release.sh to work with 30.0.0 (#3413)
---
 dev/release/verify-release-candidate.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev/release/verify-release-candidate.sh b/dev/release/verify-release-candidate.sh
index 98c582c2e..c42391222 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -118,6 +118,11 @@ test_source_distribution() {
 
   (cd arrow && cargo build && cargo test)
   (cd arrow-flight && cargo build && cargo test)
+  # To avoid https://github.com/apache/arrow-rs/issues/3410,
+  # remove path reference from parquet:
+  # object_store = { version = "0.5", path = "../object_store", default-features = false, optional = true }
+  # object_store = { version = "0.5", default-features = false, optional = true }
+  sed -i -e 's/\(^object_store.*\)\(path = ".*", \)/\1/g' parquet/Cargo.toml
   (cd parquet && cargo build && cargo test)
   (cd parquet_derive && cargo build && cargo test)