Skip to content

Commit 3e936d3

Browse files
committed
Fix for py3.11
1 parent aec4384 commit 3e936d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

suite2p/detection/stats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class ROI:
5959
lam: np.ndarray
6060
med: np.ndarray
6161
do_crop: bool
62-
if sys.version_info >= (3, 12):
62+
if sys.version_info >= (3, 11):
6363
rsort: np.ndarray = field(default_factory=default_rsort, repr=False)
6464
else:
6565
rsort: np.ndarray = field(default=np.sort(distance_kernel(radius=30).flatten()), repr=False)

0 commit comments

Comments
 (0)