File tree 4 files changed +7
-9
lines changed
4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ matrix:
86
86
- JOB_NAME : " 36"
87
87
- TEST_ARGS="--skip-slow --skip-network"
88
88
- PANDAS_TESTING_MODE="deprecate"
89
+ - CONDA_FORGE=true
89
90
addons :
90
91
apt :
91
92
packages :
Original file line number Diff line number Diff line change @@ -53,14 +53,17 @@ conda config --set ssl_verify false || exit 1
53
53
conda config --set always_yes true --set changeps1 false || exit 1
54
54
conda update -q conda
55
55
56
+ echo " [add channels]"
56
57
# add the pandas channel to take priority
57
58
# to add extra packages
58
- echo " [add channels]"
59
59
conda config --add channels pandas || exit 1
60
60
conda config --remove channels defaults || exit 1
61
61
conda config --add channels defaults || exit 1
62
62
63
- conda install anaconda-client
63
+ if [ " $CONDA_FORGE " ]; then
64
+ # add conda-forge channel as priority
65
+ conda config --add channels conda-forge || exit 1
66
+ fi
64
67
65
68
# Useful for debugging any issues with conda
66
69
conda info -a || exit 1
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ html5lib
14
14
jinja2
15
15
sqlalchemy
16
16
pymysql
17
+ feather-format
17
18
# psycopg2 (not avail on defaults ATM)
18
19
beautifulsoup4
19
20
s3fs
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments