Skip to content

Commit

Permalink
Change how mpi dependencies are handled
Browse files Browse the repository at this point in the history
  • Loading branch information
taylor-a-barnes authored Jan 11, 2025
1 parent 6d8fe92 commit b01feee
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions recipes/mdi/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,25 @@ requirements:
- make
- ninja
- python {{ python }}
- {{ mpi }}
{% if target_platform != "win-64" %}
- mpich
{% else %}
- msmpi
{% endif %}
host:
- python {{ python }}
- {{ mpi }}
{% if target_platform != "win-64" %}
- mpich
{% else %}
- msmpi
{% endif %}
run:
- python {{ python }}
- {{ mpi }}
{% if target_platform != "win-64" %}
- mpich
{% else %}
- msmpi
{% endif %}

test:
commands:
Expand Down

0 comments on commit b01feee

Please sign in to comment.