Skip to content

Commit

Permalink
BLD: add pyarrow to show_versions
Browse files Browse the repository at this point in the history
BLD: pin feather=0.4.0, pyarrow=0.4.1
  • Loading branch information
jreback committed Jul 24, 2017
1 parent c55dbf0 commit 014b6dd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
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=0.4.0

# pip install python-dateutil to get latest
conda remove -n pandas python-dateutil --force
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-3.6.run
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ html5lib
jinja2
sqlalchemy
pymysql
feather-format
feather-format=0.4.0
# 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=0.4.0 nbsphinx pandoc

conda install -n pandas -c r r rpy2 --yes
2 changes: 1 addition & 1 deletion ci/requirements-3.6_WIN.run
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ xlsxwriter
xlrd
xlwt
scipy
feather-format
feather-format=0.4.0
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 014b6dd

Please sign in to comment.