File tree 3 files changed +5
-304
lines changed
3 files changed +5
-304
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,9 @@ pip install wheel
37
37
# comment this line to disable the fetching of wheel files
38
38
base_url=http://cache27diy-cpycloud.rhcloud.com
39
39
wheel_box=${TRAVIS_PYTHON_VERSION}${JOB_TAG}
40
- PIP_ARGS+=" -I --use-wheel --find-links=$base_url /$wheel_box /"
40
+ PIP_ARGS+=" -I --use-wheel --find-links=$base_url /$wheel_box / --allow-external --allow-insecure "
41
41
42
- # Force virtualenv to accpet system_site_packages
42
+ # Force virtualenv to accept system_site_packages
43
43
rm -f $VIRTUAL_ENV /lib/python$TRAVIS_PYTHON_VERSION /no-global-site-packages.txt
44
44
45
45
@@ -49,11 +49,12 @@ if [ -n "$LOCALE_OVERRIDE" ]; then
49
49
time sudo locale-gen " $LOCALE_OVERRIDE "
50
50
fi
51
51
52
- time pip install $PIP_ARGS -r ci/requirements-${wheel_box} .txt
53
52
54
53
# we need these for numpy
55
54
time sudo apt-get $APT_ARGS install libatlas-base-dev gfortran
56
55
56
+ time pip install $PIP_ARGS -r ci/requirements-${wheel_box} .txt
57
+
57
58
58
59
# Need to enable for locale testing. The location of the locale file(s) is
59
60
# distro specific. For example, on Arch Linux all of the locales are in a
Original file line number Diff line number Diff line change @@ -1349,11 +1349,7 @@ def describe(self, percentile_width=50):
1349
1349
-------
1350
1350
desc : Series
1351
1351
"""
1352
- try :
1353
- from collections import Counter
1354
- except ImportError : # pragma: no cover
1355
- # For Python < 2.7, we include a local copy of this:
1356
- from pandas .util .counter import Counter
1352
+ from pandas .compat import Counter
1357
1353
1358
1354
if self .dtype == object :
1359
1355
names = ['count' , 'unique' ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments