Defense-Circuits-Lab / findmycells

An end-to-end bioimage analysis pipeline with state-of-the-art tools for non-coding experts
https://defense-circuits-lab.github.io/findmycells/
GNU General Public License v3.0
2 stars 1 forks source link

Path object cant be moved by shutil #10

Closed KonKob closed 1 year ago

KonKob commented 1 year ago

In segmentations/strategies.py, line 153: shutil.move attributes have to be string not Path

KonKob commented 1 year ago

This is an issue in shutil, that was fixed with python 3.9

KonKob commented 1 year ago

won't be fixed as cellpose requires python >= 3.8 anyways, we recommend to use python 3.9 for findmycells

KonKob commented 1 year ago

in setup.py: line 25: py_versions = '3.6 3.7 3.8 3.9 3.10'.split() -> '3.9 3.10'.split()