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 2019/06/05 17:27:22 UTC

[arrow] branch master updated: ARROW-5516: [Python][Documentation] Development page for pyarrow has a missing dependency in using pip

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 42dc04c  ARROW-5516: [Python][Documentation] Development page for pyarrow has a missing dependency in using pip
42dc04c is described below

commit 42dc04c0a04ac4b3479de67550e16d6b11e3bb0b
Author: HyukjinKwon <gu...@apache.org>
AuthorDate: Wed Jun 5 19:27:11 2019 +0200

    ARROW-5516: [Python][Documentation] Development page for pyarrow has a missing dependency in using pip
    
    I followed the guide ("Using pip") at https://arrow.apache.org/docs/python/development.html to setup arrow, and seems it requires another dependency `hypothesis`:
    
    ```
    ImportError while loading conftest '/.../arrow/python/pyarrow/tests/conftest.py'.
    pyarrow/tests/conftest.py:20: in <module>
        import hypothesis as h
    E   ModuleNotFoundError: No module named 'hypothesis'
    ```
    
    Author: HyukjinKwon <gu...@apache.org>
    
    Closes #4477 from HyukjinKwon/minor-doc-fix and squashes the following commits:
    
    80ab1771f <HyukjinKwon> Development page for pyarrow has a missing dependency in using pip
---
 docs/source/developers/python.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/source/developers/python.rst b/docs/source/developers/python.rst
index c6e68be..69bd59d 100644
--- a/docs/source/developers/python.rst
+++ b/docs/source/developers/python.rst
@@ -229,7 +229,7 @@ folder as the repositories and a target installation folder:
 
    virtualenv pyarrow
    source ./pyarrow/bin/activate
-   pip install six numpy pandas cython pytest
+   pip install six numpy pandas cython pytest hypothesis
 
    # This is the folder where we will install the Arrow libraries during
    # development