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.
requirements/host
pyproject.toml
1 parent af0f3ef commit 8dfb748Copy full SHA for 8dfb748
conda/recipes/dask-cuda/meta.yaml
@@ -29,8 +29,9 @@ requirements:
29
host:
30
- python
31
- pip
32
- - tomli
33
- - versioneer >=0.24
+ {% for r in data.get("build-system", {}).get("requires", []) %}
+ - {{ r }}
34
+ {% endfor %}
35
run:
36
37
{% for r in data.get("project", {}).get("dependencies", []) %}
pyproject.toml
@@ -1,9 +1,9 @@
1
[build-system]
2
build-backend = "setuptools.build_meta"
3
requires = [
4
- "setuptools>=64.0.0",
5
- "tomli ; python_version < '3.11'",
6
- "versioneer>=0.24",
+ "setuptools >=64.0.0",
+ "tomli", # Unneeded for Python 3.11+
+ "versioneer >=0.24",
7
]
8
9
[project]
0 commit comments