Skip to content

Commit 5095334

Browse files
authored
Merge pull request #331 from QuantEcon/remove_matplotlib
Remove matplotlib from config files
2 parents db11d67 + efb0664 commit 5095334

File tree

6 files changed

+1
-11
lines changed

6 files changed

+1
-11
lines changed

.travis.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,10 @@ before_install:
2525
#- sudo ln -s /run/shm /dev/shm
2626

2727
install:
28-
- conda install --yes python=$TRAVIS_PYTHON_VERSION ipython numpy scipy matplotlib nose pandas pip sympy pytables statsmodels numba
28+
- conda install --yes python=$TRAVIS_PYTHON_VERSION ipython numpy scipy nose pandas pip sympy pytables statsmodels numba
2929
# To Install Full Anaconda Stack (conda install --yes python=$TRAVIS_PYTHON_VERSION anaconda)
3030
- pip install coveralls coverage
3131
- python setup.py install
32-
- cp quantecon/tests/matplotlibrc .
3332

3433
script:
3534
- nosetests --with-coverage --cover-package=quantecon --exclude=models #quantecon.models excluded from tests to prevent triggering the ImportWarning

pip-requirements.txt

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ numpydoc
1010

1111
scipy
1212

13-
matplotlib
14-
1513
pandas
1614

1715
statsmodels

quantecon/arma.py

-2
Original file line numberDiff line numberDiff line change
@@ -250,5 +250,3 @@ def simulation(self, ts_length=90):
250250
vals = dlsim(sys, u)[1]
251251

252252
return vals.flatten()
253-
254-

quantecon/meta.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,12 @@ requirements:
3232
# - numpy
3333
# - scipy
3434
# - pandas
35-
# - matplotlib
3635

3736
run:
3837
- python
3938
- numpy
4039
- scipy
4140
- pandas
42-
- matplotlib
4341

4442
test:
4543
# Python imports

quantecon/tests/matplotlibrc

-2
This file was deleted.

rtd-environment.yml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ dependencies:
66
- numpy
77
- numpydoc
88
- scipy
9-
- matplotlib
109
- pandas
1110
- statsmodels
1211
- sympy

0 commit comments

Comments
 (0)