Skip to content

Commit b47b543

Browse files
committed
Merge branch 'main' of https://github.com/MouseLand/suite2p into refactor
2 parents 1049e04 + 2579413 commit b47b543

File tree

6 files changed

+133
-2
lines changed

6 files changed

+133
-2
lines changed
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: Bug report
2+
description: Report a bug.
3+
title: "BUG: <Please write a comprehensive title after the 'BUG: ' prefix>"
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: >
9+
Thank you for taking the time to file a bug report. Before creating a new
10+
issue, please make sure to take a few minutes to check if this issue has been
11+
brought up before.
12+
13+
- type: textarea
14+
attributes:
15+
label: "Describe the issue:"
16+
validations:
17+
required: true
18+
19+
- type: textarea
20+
attributes:
21+
label: "Reproduce the code example:"
22+
description: >
23+
A short code example that reproduces the problem/missing feature. It
24+
should be self-contained, i.e., can be copy-pasted into the Python
25+
interpreter or run as-is via `python myproblem.py`. Please include as much
26+
detail you can about the ops.npy that was used.
27+
placeholder: |
28+
import suite2p
29+
<< your code here >>
30+
render: python
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
attributes:
36+
label: "Error message:"
37+
description: >
38+
Please include full error message, if any.
39+
placeholder: |
40+
<< Full traceback starting from `Traceback: ...` >>
41+
render: shell
42+
43+
- type: textarea
44+
attributes:
45+
label: "Version information:"
46+
description: >
47+
Output from running `suite2p --version` in your command line.
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
attributes:
53+
label: "Context for the issue:"
54+
description: |
55+
Please explain how this issue affects your work or why it should be prioritized.
56+
placeholder: |
57+
<< your explanation here >>
58+
validations:
59+
required: false
60+
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Documentation
2+
description: Report an issue related to suite2p documentation.
3+
title: "DOC: <Please write a comprehensive title after the 'DOC: ' prefix>"
4+
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: "Issue with current documentation:"
9+
description: >
10+
Please make sure to leave a reference to the document/code you're
11+
referring to. Please report where in https://suite2p.readthedocs.io/ you see this issue.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
attributes:
17+
label: "Idea or request for content:"
18+
description: >
19+
Please describe as clearly as possible what topics you think are missing
20+
from the current documentation. Make sure to check
21+
https://colab.research.google.com/github/MouseLand/suite2p/blob/main/jupyter/run_suite2p_colab_2021.ipynb
22+
and see if this documentation should be added there.
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature request
2+
description: Suggest an additional feature you'd like to see in suite2p.
3+
title: "FEATURE: <Please write a comprehensive title after the 'FEATURE: ' prefix>"
4+
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: "Feature you'd like to see:"
9+
description: >
10+
Provide a clear and concise description of what problem you'd like this feature to address.
11+
Then, provide a clear description of the solution you'd like to see.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
attributes:
17+
label: "Attempted alternative approaches:"
18+
description: >
19+
Provide a description of alternative approaches you've tried.
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
attributes:
25+
label: "Additional Context"
26+
description: >
27+
Add any other context or screenshots about the feature request here.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Installation issue
2+
description: Report an issue with installation for suite2p.
3+
title: "<Please write a comprehensive title.>"
4+
5+
body:
6+
7+
- type: textarea
8+
attributes:
9+
label: "Describe the issue:"
10+
description: >
11+
Let us know what issues you are having with installation.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
attributes:
17+
label: "Provide environment info:"
18+
description: >
19+
Please run `conda info` in your suite2p environment in your terminal/anaconda prompt to let us know the versions of your packages.
20+
validations:
21+
required: true
22+

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ formats:
1818

1919
# specify dependencies
2020
python:
21-
version: 3.7
21+
version: 3.8
2222
install:
2323
- method: pip
2424
path: .

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
'rastermap>0.1.0',
66
'tifffile',
77
'scanimage-tiff-reader>=1.4.1',
8-
'torch==1.11.0',
8+
'torch==1.13.1',
99
'paramiko',
1010
'numpy>=1.16',
1111
'numba>=0.43.1',

0 commit comments

Comments
 (0)