File tree 1 file changed +12
-8
lines changed
1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change 33
33
source activate ${ENVNAME}
34
34
fi
35
35
fi
36
+ conda install --yes numpy scipy mkl-service
36
37
37
- pip install jupyter
38
- conda install --yes matplotlib --channel conda-forge
39
- conda install --yes numpy scipy pytest pytest-cov pandas patsy joblib mkl-service
38
+ pip install --upgrade pip
39
+
40
+ # Install editable using the setup.py
41
+ pip install -e .
42
+
43
+ # Install extra testing stuff
40
44
if [ ${PYTHON_VERSION} == " 2.7" ]; then
41
- conda install --yes mock enum34 ;
45
+ pip install mock
42
46
fi
43
47
44
- pip install --upgrade pip
45
- pip install --no-deps numdifftools
46
- pip install git+https://github.com/Theano/Theano.git
47
- pip install tqdm h5py nose-parameterized==0.6.0
48
+ pip install pytest pytest-cov nose-parameterized pylint
49
+
50
+ # Install untested, non-required code (linter fails without them)
51
+ pip install ipython ipywidgets numdifftools
48
52
49
53
if [ -z ${NO_SETUP} ]; then
50
54
python setup.py build_ext --inplace
You can’t perform that action at this time.
0 commit comments