Skip to content

try installing bzip2 #17698

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

Closed
wants to merge 2 commits into from
Closed
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
3 changes: 3 additions & 0 deletions ci/install_circle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ time conda install -n pandas pytest>=3.1.0 || exit 1
source activate pandas
time pip install moto || exit 1

# https://github.com/conda/conda/issues/6030
conda install gcc_linux-64

# build but don't install
echo "[build em]"
time python setup.py build_ext --inplace || exit 1
Expand Down
3 changes: 3 additions & 0 deletions ci/install_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ if [ -e ${REQ} ]; then
time bash $REQ || exit 1
fi

# test commit
conda install bzip2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if we need this is should be somewhat selective and should skip tests if it's not installed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's an issue with the recipe in the defaults channel. It's being rebuilt.

I'm kind of surprised that pytables doesn't raise an exception on write here. They fall back to zlib with a warning.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep u to want to raise an issue there


# remove any installed pandas package
# w/o removing anything else
echo
Expand Down