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 2020/03/17 12:33:53 UTC

[arrow] branch master updated (ac197f4 -> 948c8f6)

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 ac197f4  ARROW-8105: [Python] Fix segfault when shrunken masked array is passed to pyarrow.array
     add 948c8f6  ARROW-7427: [Python] Support SparseCSFTensor

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/python/numpy_convert.cc      |  87 +++++++++++++++
 cpp/src/arrow/python/numpy_convert.h       |  13 +++
 cpp/src/arrow/python/pyarrow.cc            |  18 +++
 cpp/src/arrow/python/pyarrow.h             |   6 +
 cpp/src/arrow/python/pyarrow_api.h         |   9 ++
 cpp/src/arrow/python/pyarrow_lib.h         |   2 +
 python/pyarrow/__init__.pxd                |   5 +-
 python/pyarrow/__init__.py                 |   1 +
 python/pyarrow/includes/libarrow.pxd       |  32 ++++++
 python/pyarrow/lib.pxd                     |  15 +++
 python/pyarrow/public-api.pxi              |  25 ++++-
 python/pyarrow/tensor.pxi                  | 172 +++++++++++++++++++++++++++--
 python/pyarrow/tests/test_sparse_tensor.py | 109 ++++++++++++++++++
 13 files changed, 484 insertions(+), 10 deletions(-)