Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 696dda7

Browse files
committed
Merge pull request #6472 from jenshnielsen/deprecatewheelhouse
CI: Install all dependencies from pypi
2 parents bc703a8 + 2d9799f commit 696dda7

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.travis.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ env:
3737
- secure: "dfjNqGKzQG5bu3FnDNwLG8H/C4QoieFo4PfFmZPdM2RY7WIzukwKFNT6kiDfOrpwt+2bR7FhzjOGlDECGtlGOtYPN8XuXGjhcP4a4IfakdbDfF+D3NPIpf5VlE6776k0VpvcZBTMYJKNFIMc7QPkOwjvNJ2aXyfe3hBuGlKJzQU="
3838
- BUILD_DOCS=false
3939
- NUMPY=numpy
40+
- OPENBLAS_NUM_THREADS=1
4041
- PANDAS=
4142
- NPROC=2
4243
- TEST_ARGS=--no-pep8
@@ -77,15 +78,9 @@ install:
7778
pip install --upgrade wheel
7879
pip install --upgrade setuptools
7980
- |
80-
# Install only from travis wheelhouse
81-
if [ -z "$PRE" ]; then
82-
wheelhouse_pip_install python-dateutil $NUMPY $PANDAS pyparsing!=2.1.2 pillow sphinx!=1.3.0;
83-
else
84-
pip install $PRE python-dateutil $NUMPY pyparsing!=2.1.2 pillow sphinx!=1.3.0;
85-
fi
86-
# Always install from pypi
87-
pip install $PRE pep8 cycler coveralls coverage
88-
pip install pillow sphinx!=1.3.0 $MOCK numpydoc ipython colorspacious
81+
# Install dependencies from pypi
82+
pip install $PRE python-dateutil $NUMPY pyparsing!=2.1.2 $PANDAS pep8 cycler coveralls coverage
83+
pip install $PRE pillow sphinx!=1.3.0 $MOCK numpydoc ipython colorspacious
8984
# Install nose from a build which has partial
9085
# support for python36 and suport for coverage output suppressing
9186
pip install git+https://github.com/jenshnielsen/nose.git@matplotlibnose
@@ -125,7 +120,6 @@ script:
125120
- |
126121
echo Testing import of tkagg backend
127122
MPLBACKEND="tkagg" python -c 'import matplotlib.pyplot as plt; print(plt.get_backend())'
128-
echo Testing using $NPROC processes
129123
echo The following args are passed to nose $NOSE_ARGS
130124
if [[ $BUILD_DOCS == false ]]; then
131125
export MPL_REPO_DIR=$PWD # needed for pep8-conformance test of the examples

0 commit comments

Comments
 (0)