Skip to content

Commit 5f26469

Browse files
committed
minor tidy
1 parent 9c4562e commit 5f26469

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
conda-remove-defaults: "true"
116116
- uses: actions/download-artifact@v4
117117
with: {pattern: ccpi-regulariser-*, path: dist, merge-multiple: true}
118-
- run: conda install anaconda-client
118+
- run: mamba install anaconda-client
119119
- name: anaconda upload -c ccpi
120120
run: >
121121
anaconda -v -t ${{ secrets.CCPI_CONDA_TOKEN }} upload --force

recipe/meta.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ requirements:
5151
- cuda-version {{ cuda_compiler_version }} # [cuda_compiler_version != "None"]
5252
run:
5353
- python
54-
- numpy
54+
{% for dep in project.get("dependencies") %}
55+
- {{ dep.lower() }}
56+
{% endfor %}
5557
- __cuda # [cuda_compiler_version != "None"]
5658
- {{ pin_compatible('cuda-version', min_pin='x', max_pin='x') }} # [cuda_compiler_version != "None"]
5759

0 commit comments

Comments
 (0)