From 20d3a6eaf29c0b8bc55a297f55ea2b9c559aa8a7 Mon Sep 17 00:00:00 2001 From: ejohnson643 Date: Tue, 28 Dec 2021 12:15:42 -0600 Subject: [PATCH] Added umap-learn to dependencies until it can be put as a conditional import. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 410983f..97a53e3 100644 --- a/setup.py +++ b/setup.py @@ -260,7 +260,8 @@ def build_extensions(self): "scikit-learn>=0.20", "scipy", "cython", - "numba" + "numba", + "umap-learn" ], extras_require={ "pynndescent": "pynndescent~=0.5.0",