Skip to content

Commit 9323a33

Browse files
committed
PKG: Add bug report template
1 parent 9075ff5 commit 9323a33

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

.github/ISSUE_TEMPLATE/Bug_report.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Bug Report
2+
description: Create a report to help us improve sparse-dot-topn
3+
title: "BUG: <Please write a comprehensive title after the 'BUG: ' prefix>"
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: Thank you for taking the time to file a bug report.
9+
- type: textarea
10+
attributes:
11+
label: Describe your issue.
12+
validations:
13+
required: true
14+
- type: textarea
15+
attributes:
16+
label: Reproducing Code Example
17+
description: 'Paste the Reproducing code example and it will be rendered as a code block.'
18+
render: python
19+
validations:
20+
required: true
21+
- type: textarea
22+
attributes:
23+
label: Error message
24+
description: 'If any, paste the *full* error message as above (starting from line Traceback) and it will be rendered as a code block'
25+
render: shell
26+
validations:
27+
required: true
28+
- type: textarea
29+
attributes:
30+
label: SciPy/NumPy/Python version and system information
31+
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()`'
32+
render: shell
33+
validations:
34+
required: true

0 commit comments

Comments
 (0)