Skip to content

Commit

Permalink
fix data-gathering in conda recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Jun 12, 2024
1 parent b964fee commit d6241e5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions conda/recipes/ucx-py/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ requirements:
- {{ b_r }}
{% endfor %}
# 'libucx' wheel dependency is unnecessary... the 'ucx' conda-forge package is used here instead
{% for rbb_r in data["tool.rapids-build-backend"]["requires"] if not r.startswith("libucx") %}
{% for rbb_r in data["tool"]["rapids-build-backend"]["requires"] if not r.startswith("libucx") %}
- {{ rbb_r }}
{% endfor %}
run:
Expand All @@ -50,12 +50,12 @@ test:
- ucp

about:
home: {{ data.get("project", {}).get("urls", {}).get("Homepage", "") }}
license: {{ data.get("project", {}).get("license", {}).get("text", "") }}
home: {{ data["project"]["urls"]["Homepage"] }}
license: {{ data["project"]["license"]["text"] }}
license_file:
{% for e in data.get("tool", {}).get("setuptools", {}).get("license-files", []) %}
{% for e in data["tool"]["setuptools"]["license-files"] %}
- ../../../{{ e }}
{% endfor %}
summary: {{ data.get("project", {}).get("description", "") }}
dev_url: {{ data.get("project", {}).get("urls", {}).get("Source", "") }}
doc_url: {{ data.get("project", {}).get("urls", {}).get("Documentation", "") }}
summary: {{ data["project"]["description"] }}
dev_url: {{ data["project"]["urls"]["Source"] }}
doc_url: {{ data["project"]["urls"]["Documentation"] }}

0 comments on commit d6241e5

Please sign in to comment.