Skip to content

Commit

Permalink
BLD: Pin pyarrow=0.4.1 (pandas-dev#17065)
Browse files Browse the repository at this point in the history
Addresses pandas-devgh-17064.

Also add some additional build information when calling `pd.show_versions`
  • Loading branch information
jreback authored and alanbato committed Nov 10, 2017
1 parent dfe3ca1 commit 2a3b8f9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/requirements-2.7.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ source activate pandas

echo "install 27"

conda install -n pandas -c conda-forge feather-format
conda install -n pandas -c conda-forge feather-format pyarrow=0.4.1
2 changes: 1 addition & 1 deletion ci/requirements-2.7_BUILD_TEST.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ source activate pandas

echo "install 27 BUILD_TEST"

conda install -n pandas -c conda-forge pyarrow dask
conda install -n pandas -c conda-forge pyarrow=0.4.1 dask
2 changes: 1 addition & 1 deletion ci/requirements-3.5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source activate pandas

echo "install 35"

conda install -n pandas -c conda-forge feather-format
conda install -n pandas -c conda-forge feather-format pyarrow=0.4.1

# pip install python-dateutil to get latest
conda remove -n pandas python-dateutil --force
Expand Down
1 change: 1 addition & 0 deletions ci/requirements-3.6.run
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jinja2
sqlalchemy
pymysql
feather-format
pyarrow=0.4.1
# psycopg2 (not avail on defaults ATM)
beautifulsoup4
s3fs
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-3.6_DOC.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ echo "[install DOC_BUILD deps]"

pip install pandas-gbq

conda install -n pandas -c conda-forge feather-format nbsphinx pandoc
conda install -n pandas -c conda-forge feather-format pyarrow=0.4.1 nbsphinx pandoc

conda install -n pandas -c r r rpy2 --yes
1 change: 1 addition & 0 deletions ci/requirements-3.6_WIN.run
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ xlrd
xlwt
scipy
feather-format
pyarrow=0.4.1
numexpr
pytables
matplotlib
Expand Down
3 changes: 2 additions & 1 deletion pandas/util/_print_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def show_versions(as_json=False):
("jinja2", lambda mod: mod.__version__),
("s3fs", lambda mod: mod.__version__),
("pandas_gbq", lambda mod: mod.__version__),
("pandas_datareader", lambda mod: mod.__version__)
("pandas_datareader", lambda mod: mod.__version__),
("pyarrow", lambda mod: mod.__version__),
]

deps_blob = list()
Expand Down

0 comments on commit 2a3b8f9

Please sign in to comment.