Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ endif

.PHONY: build
build: $(CORE_DEPS)
WHEEL_ALIAS=$(HYBRIDBACKEND_WHEEL_ALIAS) \
WHEEL_BUILD=$(HYBRIDBACKEND_WHEEL_BUILD) \
WHEEL_REQUIRES=$(HYBRIDBACKEND_WHEEL_REQUIRES) \
WHEEL_ALIAS="$(HYBRIDBACKEND_WHEEL_ALIAS)" \
WHEEL_BUILD="$(HYBRIDBACKEND_WHEEL_BUILD)" \
WHEEL_REQUIRES="$(HYBRIDBACKEND_WHEEL_REQUIRES)" \
python setup.py bdist_wheel
@ls dist/*.whl

Expand Down
4 changes: 1 addition & 3 deletions arrow/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@

set -eo pipefail

cd arrow/src
git apply ../s3_enhancements.patch
cd -
cp -rf arrow/patches/cpp arrow/src/cpp

if [[ ! -d $CACHE_DIR ]]; then
CACHE_DIR=arrow/cache
Expand Down
Loading