[BUG] Cellpose fails when torch version has more than two points
Opened this issue · 0 comments
timtreis commented
In
Line 623 in 537c65d
2.5.1.post305
.
Essentially fixed by installing sth with only MAJOR.MINOR.PATCH, but sth like:
major_version = torch.__version__.split(".")[0]
minor_version = torch.__version__.split(".")[1]
would be more robust.