File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff 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]
3834test =
Original file line number Diff line number Diff 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 ))
You can’t perform that action at this time.
0 commit comments