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 98d8a6d  ARROW-6722: [Java] Provide a uniform way to get vector name
     add 155415c  ARROW-6655: [Python] Filesystem bindings for S3

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |   7 +
 ci/conda_env_python.yml                            |   1 +
 ci/cpp-msvc-build-main.bat                         |   3 +
 ci/travis_install_linux.sh                         |   8 -
 ...travis_script_go.sh => travis_install_minio.sh} |  30 +-
 ci/travis_install_osx.sh                           |   2 +-
 ci/travis_script_python.sh                         |   8 +
 cpp/cmake_modules/ThirdpartyToolchain.cmake        |  10 +
 cpp/src/arrow/filesystem/s3fs.cc                   |   6 +
 cpp/src/arrow/filesystem/s3fs.h                    |   2 +-
 cpp/src/arrow/filesystem/s3fs_test.cc              |  11 +-
 python/CMakeLists.txt                              |   4 +
 python/pyarrow/_csv.pyx                            |   4 +-
 python/pyarrow/_cuda.pyx                           |   4 +-
 python/pyarrow/_fs.pxd                             |  68 +++
 python/pyarrow/_fs.pyx                             |  69 +--
 python/pyarrow/_json.pyx                           |   4 +-
 python/pyarrow/_orc.pxd                            |   4 +-
 python/pyarrow/_orc.pyx                            |   2 +-
 python/pyarrow/_parquet.pxd                        |  10 +-
 python/pyarrow/_parquet.pyx                        |   8 +-
 python/pyarrow/_s3fs.pyx                           | 173 ++++++++
 python/pyarrow/feather.pxi                         |   4 +-
 python/pyarrow/fs.py                               |   9 +-
 python/pyarrow/includes/libarrow.pxd               | 167 +++++---
 python/pyarrow/includes/libarrow_fs.pxd            |  92 ----
 python/pyarrow/includes/libarrow_s3fs.pxd          |  60 +++
 python/pyarrow/io-hdfs.pxi                         |   4 +-
 python/pyarrow/io.pxi                              |  56 +--
 python/pyarrow/ipc.pxi                             |  28 +-
 python/pyarrow/lib.pxd                             |  24 +-
 python/pyarrow/{benchmark.py => s3fs.py}           |  11 +-
 python/pyarrow/serialization.pxi                   |   6 +-
 python/pyarrow/tests/conftest.py                   |  55 +++
 python/pyarrow/tests/test_flight.py                |  12 +-
 python/pyarrow/tests/test_fs.py                    | 474 +++++++++++++--------
 python/pyarrow/tests/test_parquet.py               |  55 ++-
 python/pyarrow/util.py                             |  10 +
 python/requirements-test.txt                       |   1 +
 python/setup.py                                    |   7 +
 40 files changed, 1013 insertions(+), 500 deletions(-)
 copy ci/{travis_script_go.sh => travis_install_minio.sh} (66%)
 create mode 100644 python/pyarrow/_fs.pxd
 create mode 100644 python/pyarrow/_s3fs.pyx
 delete mode 100644 python/pyarrow/includes/libarrow_fs.pxd
 create mode 100644 python/pyarrow/includes/libarrow_s3fs.pxd
 copy python/pyarrow/{benchmark.py => s3fs.py} (87%)

Reply via email to