forked from scverse/scanpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert issue report templates to forms (scverse#2503)
Co-authored-by: Lukas Heumos <[email protected]>
- Loading branch information
1 parent
8d9b772
commit 9cab8cf
Showing
5 changed files
with
82 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: Bug report | ||
description: Scanpy doesn’t do what it should? Please help us fix it! | ||
#title: ... | ||
labels: [bug] | ||
#assignees: [] | ||
body: | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Please make sure these conditions are met | ||
# description: ... | ||
options: | ||
- label: I have checked that this issue has not already been reported. | ||
required: true | ||
- label: I have confirmed this bug exists on the latest version of scanpy. | ||
required: true | ||
- label: (optional) I have confirmed this bug exists on the master branch of scanpy. | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) detailing how to provide the necessary information for us to reproduce your bug. | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: What happened? | ||
description: Describe what you tried to do, and what happened instead. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code | ||
attributes: | ||
label: Minimal code sample | ||
description: (that we can copy&paste without having any data) | ||
render: python | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: traceback | ||
attributes: | ||
label: Error output | ||
description: Produced by the code above. Leave empty if the issue is unexpected behavior instead of an error. | ||
render: pytb | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: versions | ||
attributes: | ||
label: Versions | ||
description: Paste the output of scanpy.logging.print_versions() leaving a blank line after the details tag | ||
render: markdown | ||
value: | | ||
<details> | ||
</details> | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Enhancement request | ||
description: Anything you’d like to see in scanpy? | ||
#title: ... | ||
labels: [enhancement] | ||
#assignees: [] | ||
body: | ||
- type: dropdown | ||
id: kind | ||
attributes: | ||
label: What kind of feature would you like to request? | ||
options: | ||
- 'Additional function parameters / changed functionality / changed defaults?' | ||
- 'New analysis tool: A simple analysis tool you have been using and are missing in `sc.tools`?' | ||
- 'New plotting function: A kind of plot you would like to seein `sc.pl`?' | ||
- 'Other?' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Please describe your wishes | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.