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

[arrow] branch master updated (3f7f245 -> ba273db)

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

apitrou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from 3f7f245  ARROW-8340: [Documentation] Remove the old Sphinx pin
     add ba273db  ARROW-14625: [Python][CI] Enable Python test on s390x

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |  30 +
 ci/scripts/util_checkout.sh                        |   2 +
 cpp/cmake_modules/FindArrowDataset.cmake           |   3 +-
 dev/tasks/macros.jinja                             |   3 -
 python/CMakeLists.txt                              |   6 +
 python/pyarrow/_dataset.pxd                        | 118 +++
 python/pyarrow/_dataset.pyx                        | 842 +--------------------
 python/pyarrow/_dataset_parquet.pyx                | 823 ++++++++++++++++++++
 python/pyarrow/dataset.py                          |  34 +-
 python/pyarrow/includes/libarrow_dataset.pxd       |  67 --
 .../pyarrow/includes/libarrow_dataset_parquet.pxd  |  90 +++
 python/pyarrow/tests/test_dataset.py               | 148 ++--
 python/pyproject.toml                              |   2 +-
 python/requirements-build.txt                      |   2 +-
 python/requirements-wheel-build.txt                |   2 +-
 python/setup.py                                    |   5 +
 16 files changed, 1216 insertions(+), 961 deletions(-)
 create mode 100644 python/pyarrow/_dataset_parquet.pyx
 create mode 100644 python/pyarrow/includes/libarrow_dataset_parquet.pxd