From 5d657bcba9649d266e16221908390d2334c03af6 Mon Sep 17 00:00:00 2001 From: Chris Byrohl <9221545+cbyrohl@users.noreply.github.com> Date: Thu, 1 Aug 2024 08:12:07 +0200 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..99b2609 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,32 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +It helps us to diagnose the problem if you can describe the steps to reproduce the behavior. + +**Expected behavior and actual outcome** +A clear and concise description of what you expected to happen, what outcome you got instead and how this differs from the expectation. + +**Environment:** +Add the environment by running +``` +import platform +from importlib.metadata import version +print("python version:", platform.python_version()) +print("scida version:", version("scida")) +print("pint version:", version("pint")) +print("dask version:", version("dask")) +``` +Please also add information about your operation system. + +**Additional context** +Add any other context about the problem here.