We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f774b22 commit b374a8fCopy full SHA for b374a8f
.travis.yml
@@ -2,11 +2,23 @@ language: python
2
python:
3
- 3.6
4
5
+before_install:
6
+ - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
7
+ - chmod +x miniconda.sh
8
+ - "./miniconda.sh -b"
9
+ - export PATH=/home/travis/miniconda2/bin:$PATH
10
+ - conda update --yes conda
11
+ - sudo rm -rf /dev/shm
12
+ - sudo ln -s /run/shm /dev/shm
13
+
14
install:
15
- "pip install scipy"
16
- "pip install numpy"
17
- "pip install matplotlib"
18
- "pip install pandas"
19
+ - "pip install cvxpy"
20
+ - conda install -y -c cvxgrp cvxpy
21
+ - conda install -y -c anaconda cvxopt
22
23
script:
24
- python --version
0 commit comments