Skip to content

Commit

Permalink
Add issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller committed Nov 12, 2024
1 parent cd0f50f commit f982b21
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions .github/ISSUE_TEMPLATE/0_bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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.

0 comments on commit f982b21

Please sign in to comment.