File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ install:
22
22
- conda config --add channels conda-forge
23
23
- conda update -q conda
24
24
- conda info -a
25
- - conda create -n test-environment python=$PYTHON
25
+ - conda create -q - n test-environment python=$PYTHON
26
26
- source activate test-environment
27
27
- if [[ "$PANDAS" == "MASTER" ]]; then
28
- conda install numpy pytz python-dateutil;
28
+ conda install -q numpy pytz python-dateutil;
29
29
PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com";
30
30
pip install --pre --upgrade --timeout=60 -f $PRE_WHEELS pandas;
31
31
else
32
- conda install pandas=$PANDAS;
32
+ conda install -q pandas=$PANDAS;
33
33
fi
34
34
- pip install coverage pytest pytest-cov flake8 codecov
35
35
- REQ="ci/requirements-${PYTHON}-${PANDAS}"
36
36
- if [ -f "$REQ.pip" ]; then
37
37
pip install -r "$REQ.pip";
38
38
else
39
- conda install --file "$REQ.conda";
39
+ conda install -q - -file "$REQ.conda";
40
40
fi
41
41
- conda list
42
42
- python setup.py install
You can’t perform that action at this time.
0 commit comments