Skip to content

Commit 4fb48b1

Browse files
committed
fixing install requirement issues
1 parent 79e6d2d commit 4fb48b1

File tree

3 files changed

+25
-12
lines changed

3 files changed

+25
-12
lines changed

pybalu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
"misc",
1212
"performance_eval"]
1313

14-
__version__ = '0.2.3'
14+
__version__ = '0.2.4'

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
cython
2-
numpy
3-
scipy
4-
imageio
5-
scikit-image
6-
scikit-learn
7-
tqdm
1+
cython>=0.29.6
2+
numpy>=1.16.1
3+
scipy>=1.1.0
4+
imageio>=2.5.0
5+
scikit-image>=0.14.2
6+
scikit-learn>=0.20.2
7+
tqdm>=4.29.1

setup.py

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,23 @@ def getext(filename): return os.path.splitext(filename)[1]
352352
# See
353353
# http://setuptools.readthedocs.io/en/latest/setuptools.html
354354
#
355-
install_requires=["numpy", "scipy", "imageio",
356-
"scikit-image", "scikit-learn", "tqdm"],
357-
setup_requires=["cython", "numpy", "scipy", "imageio",
358-
"scikit-image", "scikit-learn", "tqdm"],
355+
install_requires=[
356+
"numpy>=1.16.1",
357+
"scipy>=1.1.0",
358+
"imageio>=2.5.0",
359+
"scikit-image>=0.14.2",
360+
"scikit-learn>=0.20.2",
361+
"tqdm>=4.29.1"
362+
],
363+
setup_requires=[
364+
"cython>=0.29.6",
365+
"numpy>=1.16.1",
366+
"scipy>=1.1.0",
367+
"imageio>=2.5.0",
368+
"scikit-image>=0.14.2",
369+
"scikit-learn>=0.20.2",
370+
"tqdm>=4.29.1"
371+
],
359372
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
360373
provides=["pybalu"],
361374

0 commit comments

Comments
 (0)