We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3557fd commit c5d4eeeCopy full SHA for c5d4eee
.travis.yml
@@ -50,7 +50,7 @@ jobs:
50
- env: &py36_env
51
- PYTHON=3.6
52
- NUMPY=1.13.0
53
- - PANDAS=0.20.2
+ - PANDAS=0.21.0.dev0
54
- *no_coverage
55
- *no_optimize
56
- *imports
continuous_integration/travis/install.sh
@@ -82,6 +82,12 @@ pip install -q \
82
xxhash \
83
pycodestyle
84
85
+if [[ ${PANDAS} == '0.21.0.dev0' ]]; then
86
+ conda uninstall -y pandas
87
+ pip install --pre -f "https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com" pandas
88
+fi
89
+
90
91
# Install dask
92
pip install -q --no-deps -e .[complete]
93
echo pip freeze
0 commit comments