1
0
mirror of https://github.com/modAL-python/modAL.git synced 2022-05-17 00:31:33 +03:00

numpy dependency fixed

This commit is contained in:
cosmic-cortex
2018-01-08 11:34:01 +01:00
parent fdbbfc2ca8
commit 1b81b143f7
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ after_success:
matrix:
include:
install:
- pip install numpy==1.10 scikit-learn==0.18 scipy==0.18
- pip install numpy==1.13 scikit-learn==0.18 scipy==0.18
- pip install codecov
- pip install coverage
- pip install .

View File

@@ -10,5 +10,5 @@ setup(
url='https://cosmic-cortex.github.io/modAL',
packages=['modAL', 'modAL.utils'],
classifiers=['Development Status :: 4 - Beta'],
install_requires=['numpy>=1.10', 'scikit-learn>=0.18', 'scipy>=0.18'],
install_requires=['numpy>=1.13', 'scikit-learn>=0.18', 'scipy>=0.18'],
)