We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a165f commit e68985aCopy full SHA for e68985a
.copier-answers.yml
@@ -1,5 +1,5 @@
1
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2
-_commit: 91ffffb
+_commit: 6848c57
3
_src_path: gh:scipp/copier_template
4
description: Reflectometry data reduction for the European Spallation Source
5
max_python: '3.12'
conda/meta.yaml
@@ -18,8 +18,9 @@ requirements:
18
run:
19
- python>=3.10
20
21
+ {# Conda does not allow spaces between package name and version, so remove them #}
22
{% for package in dependencies %}
- - {% if package == "graphviz" %}python-graphviz{% else %}{{ package }}{% endif %}
23
+ - {% if package == "graphviz" %}python-graphviz{% else %}{{ package|replace(" ", "") }}{% endif %}
24
{% endfor %}
25
26
0 commit comments