File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ language : python
2+
3+ matrix :
4+ include :
5+ - os : linux
6+
7+ python :
8+ - 3.8
9+
10+ before_install :
11+ - sudo apt-get update
12+ - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
13+ - chmod +x miniconda.sh
14+ - bash miniconda.sh -b -p $HOME/miniconda
15+ - export PATH="$HOME/miniconda/bin:$PATH"
16+ - hash -r
17+ - conda config --set always_yes yes --set changeps1 no
18+ - conda config --append channels conda-forge
19+ - conda update -q conda
20+ # Useful for debugging any issues with conda
21+ - conda info -a
22+
23+ install :
24+ - conda install numpy
25+ - conda install scipy
26+ - conda install matplotlib
27+ - conda install pandas
28+ - conda install cvxpy
29+ - conda install coveralls
30+
31+ script :
32+ - python --version
33+
34+ after_success :
35+ - coveralls
You can’t perform that action at this time.
0 commit comments