From 5d0f78d9a76210675a18b717beb420c8b06bcb85 Mon Sep 17 00:00:00 2001 From: chromatic Date: Wed, 27 Dec 2023 13:22:04 -0800 Subject: [PATCH] Update setup.py Fix a typo in `install_requires` which led to an unsolvable requirement. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fdbca27..c57ed27 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ "numpy>=1.19.5", "pandas>=1.2.1", "scipy >=1.4.1", - "anndata>=0.7.5" + "anndata>=0.7.5", "scikit-learn>=0.24.2", "matplotlib", "seaborn>=0.11.1",