Skip to content

Commit

Permalink
Merge pull request #3090 from WikiWatershed/tt/circumvent-gwlfe-segfa…
Browse files Browse the repository at this point in the history
…ults

Circumvent GWLF-E SegFaults due to NumPy

Connects #3089
  • Loading branch information
rajadain committed Feb 26, 2019
2 parents b392627 + 8aa7b57 commit 48d5ca0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
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

0 comments on commit 48d5ca0

Please sign in to comment.