Skip to content

Commit 6a06ae7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 94fed0f commit 6a06ae7

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

setup.cfg

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ classifiers =
1616
Programming Language :: Python
1717
Programming Language :: Python :: 3
1818
Programming Language :: Python :: 3 :: Only
19-
Programming Language :: Python :: 3.6
20-
Programming Language :: Python :: 3.7
21-
Programming Language :: Python :: 3.8
22-
Programming Language :: Python :: 3.9
2319
Programming Language :: Python :: Implementation :: CPython
2420

2521
[options]
@@ -29,10 +25,10 @@ install_requires =
2925
fast-overlap
3026
numpy
3127
pandas
32-
read_roi
28+
read-roi
3329
tifffile
3430
torch
35-
python_requires = >=3.6
31+
python_requires = >=3.7
3632

3733
[options.extras_require]
3834
test =

yeast_mrcnn/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def mrcnn():
3333
)
3434

3535
# Make anchor generator with 3 sizes per feature map and 5 aspect ratios
36-
sizes = tuple(2.0 ** x for x in range(5, 12))
36+
sizes = tuple(2.0**x for x in range(5, 12))
3737
aspects = tuple(0.5 * x for x in range(1, 5))
3838
n_feature_maps = 5 # true for resnet50 with FPN
3939
ag_sizes = tuple(tuple(sizes[i : i + 3]) for i in range(n_feature_maps))

0 commit comments

Comments
 (0)