Skip to content

Commit

Permalink
Fix Travis CI script for renamed package
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Mar 9, 2016
1 parent 1d37c93 commit 8cca41a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ci/travis_script_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export ARROW_HOME=$ARROW_CPP_INSTALL

python setup.py build_ext --inplace

py.test -vv -r sxX arrow
py.test -vv -r sxX pyarrow

# if [ $TRAVIS_OS_NAME == "linux" ]; then
# valgrind --tool=memcheck py.test -vv -r sxX arrow
Expand Down
23 changes: 20 additions & 3 deletions python/doc/INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Installing pyarrow (Apache Arrow Python library)
## Building pyarrow (Apache Arrow Python library)

First, clone the master git repository:

Expand Down Expand Up @@ -59,12 +59,29 @@ make
make install
```

#### Build and install `pyarrow` library
#### Build the `pyarrow` library

```bash
cd arrow/python

python setup.py install
python setup.py build_ext --inplace
```

This library is not set up to install yet (see for example,
https://issues.apache.org/jira/browse/ARROW-53) until some issues are sorted
out, but you can try out the library by importing from this directory:

```python
In [1]: import pyarrow

In [2]: pyarrow.from_pylist([1,2,3])
Out[2]:
<pyarrow.array.Int64Array object at 0x7f899f3e60e8>
[
1,
2,
3
]
```

#### Mac OS X-specific stuff
Expand Down

0 comments on commit 8cca41a

Please sign in to comment.