Skip to content

Commit 458c265

Browse files
authored
Merge pull request #56 from scipp/copier-update
Copier update
2 parents cb2b91e + e68985a commit 458c265

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.copier-answers.ess.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 815268a
2+
_commit: 0951a4b
33
_src_path: https://github.com/scipp/ess_template.git

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
2-
_commit: 91ffffb
2+
_commit: 6848c57
33
_src_path: gh:scipp/copier_template
44
description: Reflectometry data reduction for the European Spallation Source
55
max_python: '3.12'

.github/ISSUE_TEMPLATE/blank.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Blank
3+
about: General issue that does not fit another category
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---

conda/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ requirements:
1818
run:
1919
- python>=3.10
2020

21+
{# Conda does not allow spaces between package name and version, so remove them #}
2122
{% for package in dependencies %}
22-
- {% if package == "graphviz" %}python-graphviz{% else %}{{ package }}{% endif %}
23+
- {% if package == "graphviz" %}python-graphviz{% else %}{{ package|replace(" ", "") }}{% endif %}
2324
{% endfor %}
2425

2526

0 commit comments

Comments
 (0)