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

Circumvent GWLF-E SegFaults due to NumPy #3090

Merged
merged 2 commits into from
Feb 26, 2019
Merged
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
1 change: 1 addition & 0 deletions deployment/ansible/group_vars/all
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@ observation_api_url: "http://www.wikiwatershed-vs.org/"
enabled_features: ''

numba_version: "0.38.1"
numpy_version: "1.14.5"

redis_version: "2:2.8.4-2ubuntu0.2"
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
- name: Install numba
pip: name=numba version={{ numba_version }}

- name: Install numpy
pip: name=numpy version={{ numpy_version }}

- name: Install application Python dependencies for development and test
pip: requirements="{{ app_home }}/requirements/{{ item }}.txt"
with_items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
- name: Install numba
pip: name=numba version={{ numba_version }}

- name: Install numpy
pip: name=numpy version={{ numpy_version }}

- name: Install application Python dependencies for development and test
pip: requirements="{{ app_home }}/requirements/{{ item }}.txt"
with_items:
Expand Down
2 changes: 0 additions & 2 deletions src/mmw/requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ https://bitbucket.org/jurko/suds/get/94664ddd46a6.tar.gz#egg=suds-jurko
django_celery_results==1.0.1
pandas==0.22.0
git+git://github.com/emiliom/ulmo@wml_values_md#egg=ulmo
numpy==1.14.5
hs_restclient==1.2.10
six==1.11.0
fiona==1.7.11
timeout-decorator==0.4.0
numba==0.38.1
redis==2.10.6