Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Travis: Install numpy with OpenBLAS instead of MKL #456

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,11 @@ before_install:
#- sudo ln -s /run/shm /dev/shm

install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION ipython numpy scipy nose pandas pip sympy pytables statsmodels numba
- pip install coveralls coverage flake8
# catch flake8 error before anything else
- flake8 --ignore=F401,E501,E226,E231,W291,E241 quantecon
- conda install -c conda-forge --yes python=$TRAVIS_PYTHON_VERSION ipython numpy scipy nose pandas pip sympy pytables statsmodels numba
# To Install Full Anaconda Stack (conda install --yes python=$TRAVIS_PYTHON_VERSION anaconda)
- pip install coveralls coverage
- python setup.py install

script:
Expand Down
4 changes: 0 additions & 4 deletions quantecon/tests/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,8 @@ def get_data_dir():

def get_h5_data_file():
"""
<<<<<<< HEAD
return the data file used for holding test data. If the data
directory or file do not exist, they are created.
=======
return the data file used for holding test data
>>>>>>> master

Notes
-----
Expand Down