From 9323a3311f072ef657a28a57575a73c2aa241263 Mon Sep 17 00:00:00 2001 From: Ralph Urlus Date: Sun, 18 Feb 2024 17:47:50 +0100 Subject: [PATCH] PKG: Add bug report template --- .github/ISSUE_TEMPLATE/Bug_report.yml | 34 +++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/Bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/Bug_report.yml b/.github/ISSUE_TEMPLATE/Bug_report.yml new file mode 100644 index 0000000..952619e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/Bug_report.yml @@ -0,0 +1,34 @@ +name: Bug Report +description: Create a report to help us improve sparse-dot-topn +title: "BUG: " + +body: + - type: markdown + attributes: + value: Thank you for taking the time to file a bug report. + - type: textarea + attributes: + label: Describe your issue. + validations: + required: true + - type: textarea + attributes: + label: Reproducing Code Example + description: 'Paste the Reproducing code example and it will be rendered as a code block.' + render: python + validations: + required: true + - type: textarea + attributes: + label: Error message + description: 'If any, paste the *full* error message as above (starting from line Traceback) and it will be rendered as a code block' + render: shell + validations: + required: true + - type: textarea + attributes: + label: SciPy/NumPy/Python version and system information + description: 'Please run the following and paste the result here - `import sys, scipy, numpy, sparse_dot_topn; print(scipy.__version__, numpy.__version__, sparse_dot_topn.__version__, sys.version_info); scipy.show_config()`' + render: shell + validations: + required: true