Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions p/pyarrow/build_info.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"maintainer": "Harithanagothu2",
"maintainer": "SakshiJain0302",
"package_name": "pyarrow",
"github_url": "https://github.com/apache/arrow.git",
"version": "apache-arrow-19.0.0",
Expand All @@ -14,25 +14,25 @@
"build_script": "pyarrow_ubi_9.3.sh"
},
"14.0.1": {
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"16.1.0": {
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"18.0.0":{
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"apache-arrow-14.0.1": {
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"apache-arrow-15.0.1": {
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"apache-arrow-16.1.0": {
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"apache-arrow-18.0.0":{
"build_script": "pyarrow_15.0.1_ubi_9.3.sh"
"build_script": "pyarrow_14.0.1_ubi_9.3.sh"
},
"*": {
"build_script": "pyarrow_19.0.0_ubi_9.3.sh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# -----------------------------------------------------------------------------
#
# Package : pyarrow
# Version : 15.0.1
# Version : 14.0.1
# Source repo : https://github.com/apache/arrow.git
# Tested on : UBI:9.3
# Language : Python
# Ci-Check : True
# Script License: Apache License, Version 2 or later
# Maintainer : Sai Kiran Nukala <sai.kiran.nukala@ibm.com>
# Maintainer : Sakshi Jain <sakshi.jain16@ibm.com>
#
# Disclaimer: This script has been tested in root mode on the given
# platform using the mentioned version of the package.
Expand All @@ -20,7 +20,7 @@

# Variables
PACKAGE_NAME=pyarrow
PACKAGE_VERSION=${1:-apache-arrow-15.0.1}
PACKAGE_VERSION=${1:-apache-arrow-14.0.1}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why we have to rename the build-script and update the build-info.json? build-info.json should always points to the latest version. Please revert the change. Keep cython==0.29.36 change and make sure it works for both 14.0.1 and 15.0.1

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can rename file to latest UBI version(from pyarrow_15.0.1_ubi_9.3.sh to pyarrow_15.0.1_ubi_9.6.sh)

PACKAGE_URL=https://github.com/apache/arrow.git
PACKAGE_DIR=./arrow/python
CURRENT_DIR="${PWD}"
Expand Down Expand Up @@ -64,7 +64,7 @@ sed -i '/cdef object alloc_c_stream(ArrowArrayStream\*\* c_stream)/s/ noexcept//
echo "Fixes applied."

pip install -r python/requirements-build.txt
pip install cython wheel numpy==1.26.4 setuptools-scm
pip install cython==0.29.36 wheel numpy==1.26.4 setuptools-scm

echo "Preparing for build..."

Expand Down