File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,16 @@ before_install:
32
32
- ./miniconda.sh -b
33
33
- export PATH=$HOME/miniconda/bin:$PATH
34
34
- export PATH=$HOME/miniconda2/bin:$PATH
35
- - conda update --yes --quiet conda
35
+ - conda config --set always_yes yes
36
+ - conda update --all --quiet
36
37
- PKGS="python=${PYTHON}"
37
38
- PKGS="${PKGS} numpy"; if [ ${NUMPY} ]; then PKGS="${PKGS}=${NUMPY}"; fi
38
39
- PKGS="${PKGS} Cython"; if [ ${CYTHON} ]; then PKGS="${PKGS}=${CYTHON}"; fi
39
40
- PKGS="${PKGS} pandas"; if [ ${PANDAS} ]; then PKGS="${PKGS}=${PANDAS}"; fi
40
41
41
42
# Install packages
42
43
install :
43
- - conda create --yes --quiet - n rng-test ${PKGS} nose pip setuptools
44
+ - conda create -n rng-test ${PKGS} nose pip setuptools --quiet
44
45
- source activate rng-test
45
46
- export BUILD_DIR=$PWD
46
47
- python setup.py install
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ build_script:
17
17
- cmd : C:\Miniconda.exe /S /D=C:\Py
18
18
- SET PATH=C:\Py;C:\Py\Scripts;C:\Py\Library\bin;%PATH%
19
19
- conda config --set always_yes yes
20
- - conda update conda
21
- - conda install numpy cython nose
20
+ - conda update conda --quiet
21
+ - conda install numpy cython nose --quiet
22
22
- pip install . -vvv
23
23
24
24
test_script :
You can’t perform that action at this time.
0 commit comments