From 84a165fb57c451ed3cf3701375c45bd500c6017a Mon Sep 17 00:00:00 2001 From: Jan-Lukas Wynen Date: Mon, 8 Jul 2024 13:31:03 +0200 Subject: [PATCH 1/2] Copier update ess template --- .copier-answers.ess.yml | 2 +- .github/ISSUE_TEMPLATE/blank.md | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/blank.md diff --git a/.copier-answers.ess.yml b/.copier-answers.ess.yml index 527cc4e7..1ab77e63 100644 --- a/.copier-answers.ess.yml +++ b/.copier-answers.ess.yml @@ -1,3 +1,3 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 815268a +_commit: 0951a4b _src_path: https://github.com/scipp/ess_template.git diff --git a/.github/ISSUE_TEMPLATE/blank.md b/.github/ISSUE_TEMPLATE/blank.md new file mode 100644 index 00000000..22a75aeb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/blank.md @@ -0,0 +1,8 @@ +--- +name: Blank +about: General issue that does not fit another category +title: '' +labels: '' +assignees: '' + +--- From e68985afa9e9d8f9d48a43fda4954dca6c94520d Mon Sep 17 00:00:00 2001 From: Jan-Lukas Wynen Date: Mon, 8 Jul 2024 13:31:27 +0200 Subject: [PATCH 2/2] Copier update --- .copier-answers.yml | 2 +- conda/meta.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index 93e73aa7..d675c021 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 91ffffb +_commit: 6848c57 _src_path: gh:scipp/copier_template description: Reflectometry data reduction for the European Spallation Source max_python: '3.12' diff --git a/conda/meta.yaml b/conda/meta.yaml index 9ae3e1f3..cbab0d23 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -18,8 +18,9 @@ requirements: run: - python>=3.10 + {# Conda does not allow spaces between package name and version, so remove them #} {% for package in dependencies %} - - {% if package == "graphviz" %}python-graphviz{% else %}{{ package }}{% endif %} + - {% if package == "graphviz" %}python-graphviz{% else %}{{ package|replace(" ", "") }}{% endif %} {% endfor %}