We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93a451a commit 0728060Copy full SHA for 0728060
conda-recipe/meta.yaml
@@ -54,13 +54,10 @@ test:
54
- tests
55
requires:
56
{% for dep in pyproject['project']['optional-dependencies']['dev'] %}
57
- {% if dep.startswith('torch>=') %} # pip: torch -> conda: pytorch
58
- - py{{ dep.lower() }}
59
- {% else %}
+ {% if 'torch' not in dep %} # can't install pytorch>=2.8 from conda-forge smh
60
- {{ dep.lower().replace('_', '-') }}
61
{% endif %}
62
{% endfor %}
63
- - cpuonly
64
commands:
65
- pytest --capture=no
66
0 commit comments