Skip to content

Commit bf4e2d8

Browse files
committed
minor tidy
1 parent 05c52b6 commit bf4e2d8

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
@@ -116,7 +116,7 @@ jobs:
116116
conda-remove-defaults: "true"
117117
- uses: actions/download-artifact@v4
118118
with: {pattern: ccpi-regulariser-*, path: dist, merge-multiple: true}
119-
- run: conda install anaconda-client
119+
- run: mamba install anaconda-client
120120
- name: anaconda upload -c ccpi
121121
run: >
122122
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
- {{ pin_compatible('python', min_pin='x.x', max_pin='x') }}
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)