Skip to content

Commit cdd50a1

Browse files
committed
BLD: add pyarrow to show_versions
BLD: pin pyarrow=0.4.1
1 parent c55dbf0 commit cdd50a1

7 files changed

+8
-5
lines changed

ci/requirements-2.7.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source activate pandas
44

55
echo "install 27"
66

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

ci/requirements-2.7_BUILD_TEST.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ source activate pandas
44

55
echo "install 27 BUILD_TEST"
66

7-
conda install -n pandas -c conda-forge pyarrow dask
7+
conda install -n pandas -c conda-forge pyarrow=0.4.1 dask

ci/requirements-3.5.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ source activate pandas
44

55
echo "install 35"
66

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

99
# pip install python-dateutil to get latest
1010
conda remove -n pandas python-dateutil --force

ci/requirements-3.6.run

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jinja2
1515
sqlalchemy
1616
pymysql
1717
feather-format
18+
pyarrow=0.4.1
1819
# psycopg2 (not avail on defaults ATM)
1920
beautifulsoup4
2021
s3fs

ci/requirements-3.6_DOC.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ echo "[install DOC_BUILD deps]"
66

77
pip install pandas-gbq
88

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

1111
conda install -n pandas -c r r rpy2 --yes

ci/requirements-3.6_WIN.run

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ xlrd
88
xlwt
99
scipy
1010
feather-format
11+
pyarrow=0.4.1
1112
numexpr
1213
pytables
1314
matplotlib

pandas/util/_print_versions.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def show_versions(as_json=False):
9494
("jinja2", lambda mod: mod.__version__),
9595
("s3fs", lambda mod: mod.__version__),
9696
("pandas_gbq", lambda mod: mod.__version__),
97-
("pandas_datareader", lambda mod: mod.__version__)
97+
("pandas_datareader", lambda mod: mod.__version__),
98+
("pyarrow", lambda mod: mod.__version__),
9899
]
99100

100101
deps_blob = list()

0 commit comments

Comments
 (0)