Skip to content

Commit 3703f74

Browse files
committed
move blosc import to install_conda.sh script
1 parent a134759 commit 3703f74

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ci/install_conda.sh

+3
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ conda remove -n pandas pandas
8686

8787
source activate pandas
8888

89+
pip install -U blosc # See https://github.com/pydata/pandas/pull/9783
90+
python -c 'import blosc; blosc.print_versions()'
91+
8992
# set the compiler cache to work
9093
if [ "$IRON_TOKEN" ]; then
9194
export PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH

ci/script.sh

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ fi
1616
"$TRAVIS_BUILD_DIR"/ci/build_docs.sh 2>&1 > /tmp/doc.log &
1717
# doc build log will be shown after tests
1818

19-
pip install -U blosc # See https://github.com/pydata/pandas/pull/9783
20-
python -c 'import blosc; blosc.print_versions()'
21-
2219
if [ "$BUILD_TEST" ]; then
2320
echo "We are not running nosetests as this is simply a build test."
2421
else

doc/source/whatsnew/v0.16.1.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Bug Fixes
106106
- Bug in plotting continuously using ``secondary_y`` may not show legend properly. (:issue:`9610`, :issue:`9779`)
107107
- Bug in ``DataFrame.plot(kind="hist")`` results in ``TypeError`` when ``DataFrame`` contains non-numeric columns (:issue:`9853`)
108108
- Bug where repeated plotting of ``DataFrame`` with a ``DatetimeIndex`` may raise ``TypeError`` (:issue:`9852`)
109-
109+
- Bug in ``setup.py`` that would allow an incompat cython version to build (:issue:`9827`)
110110
- Bug in plotting ``secondary_y`` incorrectly attaches ``right_ax`` property to secondary axes specifying itself recursively. (:issue:`9861`)
111111

112112
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`9675`)

0 commit comments

Comments
 (0)