Skip to content

Commit

Permalink
Bringing up to date.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejohnson643 committed May 3, 2022
2 parents 0e98903 + dbf4467 commit 36f109f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion EMBEDR/tsne.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
###############################################################################
"""
from collections import Iterable
try:
from collections import Iterable
except ImportError as err:
from collections.abc import Iterable

import EMBEDR.affinity as aff
import EMBEDR.callbacks as cb
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ def build_extensions(self):
"numpy>=1.16.6",
"scikit-learn>=0.20",
"scipy",
"pandas",
"cython",
"numba",
"umap-learn"
Expand All @@ -276,4 +277,4 @@ def build_extensions(self):
},
ext_modules=extensions,
cmdclass={"build_ext": MyBuildExt},
)
)

0 comments on commit 36f109f

Please sign in to comment.