Skip to content

Commit

Permalink
Fix scikit-image version (#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
creafz committed Dec 8, 2021
1 parent 28c6049 commit b0707c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import io
import os
import re
from setuptools import setup, find_packages
from pkg_resources import DistributionNotFound, get_distribution

from pkg_resources import DistributionNotFound, get_distribution
from setuptools import find_packages, setup

INSTALL_REQUIRES = ["numpy>=1.11.1", "scipy", "scikit-image>=0.16.1", "PyYAML", "qudida>=0.0.4"]
INSTALL_REQUIRES = ["numpy>=1.11.1", "scipy", "scikit-image>=0.16.1,<0.19", "PyYAML", "qudida>=0.0.4"]

# If none of packages in first installed, install second package
CHOOSE_INSTALL_REQUIRES = [
Expand Down

0 comments on commit b0707c5

Please sign in to comment.