Skip to content

Commit

Permalink
Updating dependency on joblib. Change now means that Python 3.4 and 2…
Browse files Browse the repository at this point in the history
….7 no longer supported.
  • Loading branch information
jreades committed Aug 8, 2019
1 parent 304b49d commit 3a1bebc
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 3a1bebc

Please sign in to comment.