Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: add more versions #17065

Merged
merged 1 commit into from
Jul 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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