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