Skip to content

Commit c5d4eee

Browse files
committed
CI: Added a worker for pandas-dev
1 parent e3557fd commit c5d4eee

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- env: &py36_env
5151
- PYTHON=3.6
5252
- NUMPY=1.13.0
53-
- PANDAS=0.20.2
53+
- PANDAS=0.21.0.dev0
5454
- *no_coverage
5555
- *no_optimize
5656
- *imports

continuous_integration/travis/install.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ pip install -q \
8282
xxhash \
8383
pycodestyle
8484

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+
8591
# Install dask
8692
pip install -q --no-deps -e .[complete]
8793
echo pip freeze

0 commit comments

Comments
 (0)