File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments