1
+ name : Bug report
2
+ description : Report a bug. For security vulnerabilities see Report a security vulnerability in the templates.
3
+ title : " BUG: <Please write a comprehensive title after the 'BUG: ' prefix>"
4
+ labels : [00 - Bug]
5
+
6
+ body :
7
+ - type : markdown
8
+ attributes :
9
+ value : >
10
+ Thank you for taking the time to file a bug report. Before creating a new
11
+ issue, please make sure to take a few minutes to check the issue tracker
12
+ for existing issues about the bug.
13
+
14
+ - type : textarea
15
+ attributes :
16
+ label : " Describe the issue:"
17
+ validations :
18
+ required : true
19
+
20
+ - type : textarea
21
+ attributes :
22
+ label : " Reproduce the code example:"
23
+ description : >
24
+ A short code example that reproduces the problem/missing feature. It
25
+ should be self-contained, i.e., can be copy-pasted into the Python
26
+ interpreter or run as-is via `python myproblem.py`.
27
+ placeholder : |
28
+ import numpy_financial as npf
29
+ << your code here >>
30
+ render : python
31
+ validations :
32
+ required : true
33
+
34
+ - type : textarea
35
+ attributes :
36
+ label : " Error message:"
37
+ description : >
38
+ Please include full error message, if any.
39
+ If you are reporting a segfault please include a GDB traceback,
40
+ which you can generate by following
41
+ [these instructions](https://github.com/numpy/numpy/blob/main/doc/source/dev/development_environment.rst#debugging).
42
+ placeholder : |
43
+ << Full traceback starting from `Traceback: ...` >>
44
+ render : shell
45
+
46
+ - type : textarea
47
+ attributes :
48
+ label : " Runtime information:"
49
+ description : >
50
+ Output from `import sys, numpy; print(numpy.__version__); print(sys.version)`
51
+ If you are running NumPy 1.24+, also show `print(numpy.show_runtime())`
52
+ validations :
53
+ required : true
54
+
55
+ - type : textarea
56
+ attributes :
57
+ label : " Context for the issue:"
58
+ description : |
59
+ Please explain how this issue affects your work or why it should be prioritized.
60
+ placeholder : |
61
+ << your explanation here >>
62
+ validations :
63
+ required : false
0 commit comments