Skip to content
Closed
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
1 change: 1 addition & 0 deletions dev/tasks/conda-recipes/arrow-cpp/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ cmake -G "Ninja" ^
-DARROW_PARQUET:BOOL=ON ^
-DARROW_GANDIVA:BOOL=ON ^
-DARROW_ORC:BOOL=ON ^
-DARROW_S3:BOOL=ON ^
-DBoost_NO_BOOST_CMAKE=ON ^
..

Expand Down
1 change: 1 addition & 0 deletions dev/tasks/conda-recipes/arrow-cpp/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ cmake \
-DARROW_PARQUET=ON \
-DARROW_GANDIVA=ON \
-DARROW_ORC=ON \
-DARROW_S3=ON \
-DCMAKE_AR=${AR} \
-DCMAKE_RANLIB=${RANLIB} \
-GNinja \
Expand Down
2 changes: 2 additions & 0 deletions dev/tasks/conda-recipes/arrow-cpp/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ requirements:
- {{ compiler('c') }}
- {{ compiler('cxx') }}
host:
- aws-sdk-cpp
- boost-cpp
- brotli
- c-ares
Expand All @@ -45,6 +46,7 @@ requirements:

run:
- {{ pin_compatible('numpy', lower_bound='1.14') }}
- aws-sdk-cpp
- boost-cpp
- brotli
- c-ares
Expand Down
1 change: 1 addition & 0 deletions dev/tasks/conda-recipes/pyarrow/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ copy /Y "%SRC_DIR%\cpp\cmake_modules\FindPythonLibsNew.cmake" cmake_modules\
SET ARROW_HOME=%LIBRARY_PREFIX%
SET SETUPTOOLS_SCM_PRETEND_VERSION=%PKG_VERSION%
SET PYARROW_BUILD_TYPE=release
SET PYARROW_WITH_S3=1
SET PYARROW_WITH_FLIGHT=1
SET PYARROW_WITH_GANDIVA=1
SET PYARROW_WITH_PARQUET=1
Expand Down
1 change: 1 addition & 0 deletions dev/tasks/conda-recipes/pyarrow/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export PYARROW_BUILD_TYPE=release
export PYARROW_WITH_FLIGHT=1
export PYARROW_WITH_PLASMA=1
export PYARROW_WITH_PARQUET=1
export PYARROW_WITH_S3=1
export PYARROW_WITH_ORC=1
export PYARROW_WITH_GANDIVA=1

Expand Down
2 changes: 2 additions & 0 deletions dev/tasks/conda-recipes/pyarrow/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ requirements:
test:
imports:
- pyarrow
- pyarrow.fs
- pyarrow.s3fs

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Aside: we worried about the naming conflict with https://s3fs.readthedocs.io/en/latest/? Might be good to disambiguate

- pyarrow.flight # [not py==27]
- pyarrow.gandiva # [not py==27]
- pyarrow.orc # [unix]
Expand Down