Skip to content

Commit

Permalink
Merge pull request #109 from kingsgeocomp/master
Browse files Browse the repository at this point in the history
Updating dependency on joblib (sklearn >= 0.21)
  • Loading branch information
sevamoo authored Sep 19, 2019
2 parents 304b49d + 3a1bebc commit fa9e800
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
except ImportError:
from distutils.core import setup


setup(
name="SOMPY",
version="1.0",
version="1.1",
description="Self Organizing Maps Package",
author="Vahid Moosavi and Sebastian Packmann",
packages=find_packages(),
install_requires=['numpy >= 1.7', 'scipy >= 0.9',
'scikit-learn >= 0.16', 'numexpr >= 2.5']
'scikit-learn >= 0.21', 'numexpr >= 2.5']
)
2 changes: 1 addition & 1 deletion sompy/sompy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from multiprocessing import cpu_count
from scipy.sparse import csr_matrix
from sklearn import neighbors
from sklearn.externals.joblib import Parallel, delayed, load, dump
from joblib import Parallel, delayed, load, dump
import sys

from .decorators import timeit
Expand Down

0 comments on commit fa9e800

Please sign in to comment.