Skip to content

Commit f982b21

Browse files
committed
Add issue template
1 parent cd0f50f commit f982b21

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

.github/ISSUE_TEMPLATE/0_bug.yml

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Bug Report
2+
description: Create a bug report.
3+
labels:
4+
- bug
5+
body:
6+
- type: textarea
7+
id: what
8+
attributes:
9+
label: What happened?
10+
description: What should have happened instead? Please provide as many details as possible.
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: info
15+
attributes:
16+
label: How to reproduce the issue?
17+
description: Please add the minimal code that helps replicating the issue.
18+
render: shell
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: version
23+
attributes:
24+
label: Version
25+
description: |
26+
Please tell us the version you are using.
27+
28+
```python
29+
import nlopt
30+
print(nlopt.__version__)
31+
```
32+
validations:
33+
required: true
34+
- type: dropdown
35+
id: oscheck
36+
attributes:
37+
label: Operating System
38+
description: Please provide the operating system running.
39+
options:
40+
- unknown
41+
- Windows
42+
- Linux
43+
- MacOS
44+
- all
45+
- other
46+
validations:
47+
required: true
48+
- type: dropdown
49+
id: sourcecheck
50+
attributes:
51+
label: Installation media
52+
description: Please provide the installation media.
53+
options:
54+
- unknown
55+
- pip
56+
- conda
57+
- from source
58+
- other
59+
validations:
60+
required: true
61+
- type: textarea
62+
id: context
63+
attributes:
64+
label: Additional Context
65+
description: Include any additional information that you think would be valuable.

0 commit comments

Comments
 (0)