File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 26
26
create-args : >-
27
27
conda-build
28
28
boa
29
- - run : conda mambabuild --channel conda-forge --channel scipp --no-anaconda-upload --override-channels --output-folder conda/package conda
29
+ - run : conda mambabuild --channel conda-forge --channel scipp --channel ess-dmsc -- no-anaconda-upload --override-channels --output-folder conda/package conda
30
30
31
31
- uses : actions/upload-artifact@v4
32
32
with :
Original file line number Diff line number Diff line change 9
9
10
10
{% set pyproject = load_file_data('pyproject.toml') %}
11
11
{% set dependencies = pyproject.get('project', {}).get('dependencies', {}) %}
12
-
12
+ {% set conda_package_name_registry = {
13
+ " graphviz " : " python-graphviz" ,
14
+ " confluent_kafka " : " python-confluent-kafka"
15
+ } %}
13
16
14
17
requirements :
15
18
build :
@@ -21,7 +24,7 @@ requirements:
21
24
- python>=3.10
22
25
23
26
{% for package in dependencies %}
24
- - {% if package == "graphviz" %}python-graphviz{% else %}{{ package }}{% endif % }
27
+ - {{conda_package_name_registry.get( package, package)} }
25
28
{% endfor %}
26
29
27
30
You can’t perform that action at this time.
0 commit comments