Skip to content

Commit 2d34bf7

Browse files
committed
Fix conda dependency on pytorch
Signed-off-by: Nicola Vigano <nicola.vigano@cea.fr>
1 parent 91ce299 commit 2d34bf7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

conda/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ requirements:
2626
- python {{ py_min_version }}
2727
# Dependencies as defined in environment.yaml
2828
# Some names might be different from pypi, so please curate that list manually
29-
{% for dep in env_file['dependencies'] %}
29+
{% for dep in env_file['dependencies'] if not dep == "torch" %}
3030
- {{ dep }}
3131
{% endfor %}
32+
- pytorch
3233

3334
about:
3435
home: {{ project['urls']['Homepage'] }}

0 commit comments

Comments
 (0)