-
Notifications
You must be signed in to change notification settings - Fork 608
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into regress_out
- Loading branch information
Showing
124 changed files
with
1,150 additions
and
750 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
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,60 @@ | ||
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 `import scanpy; scanpy.logging.print_versions()` between the lines of backticks (\`\`\`) | ||
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.
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,31 @@ | ||
name: Pull Request Validation | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- master | ||
types: | ||
# milestone changes | ||
- milestoned | ||
- demilestoned | ||
# label changes for “no milestone” | ||
- labeled | ||
- unlabeled | ||
# initial check | ||
- opened | ||
- edited | ||
- reopened | ||
# code change (e.g. this workflow) | ||
- synchronize | ||
|
||
env: | ||
LABELS: ${{ join( github.event.pull_request.labels.*.name, '|' ) }} | ||
|
||
jobs: | ||
check-milestone: | ||
name: Check Milestone | ||
runs-on: ubuntu-latest | ||
steps: | ||
- if: github.event.pull_request.milestone == null && contains( env.LABELS, 'no milestone' ) == false | ||
run: exit 1 |
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
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
Oops, something went wrong.