Skip to content

Commit

Permalink
Added Matplotlib to Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Sep 3, 2013
1 parent 988d996 commit 1751382
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ before_install:

install:
- export PYTHONIOENCODING=UTF8 # just in case
- $PIP_WHEEL_COMMAND "Cython>=0.18" --use-mirrors
- $PIP_WHEEL_COMMAND "numpy==$NUMPY_VERSION" --use-mirrors
- $PIP_WHEEL_COMMAND "scipy>=0.12" --use-mirrors
- $PIP_WHEEL_COMMAND "Cython>=0.18"
- $PIP_WHEEL_COMMAND "numpy==$NUMPY_VERSION"
- $PIP_WHEEL_COMMAND "scipy>=0.12"
- $PIP_WHEEL_COMMAND "matplotlib>=1.3.0"
- pip install git+http://github.com/astropy/astropy.git#egg=astropy
- pip install atpy
- if [[ $SETUP_CMD == cov ]]; then pip install pytest --use-mirrors; fi
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def run(self):
package_data={'sedfitter.sed.tests':['data/*.fits.gz'],
'sedfitter.utils.tests':['data/*.conf', 'data/*.par']},
provides=['sedfitter'],
requires=['numpy', 'astropy', 'atpy'],
requires=['numpy', 'astropy', 'atpy', 'scipy', 'matplotlib'],
cmdclass={'build_py': build_py, 'test':SEDFitterTest},
keywords=['Scientific/Engineering'],
)
Expand Down

0 comments on commit 1751382

Please sign in to comment.