From 39f301c61805fd53377e914a780d23f45edac5f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Bel=C3=A1k?= Date: Thu, 12 Oct 2023 10:34:24 +0200 Subject: [PATCH] fix: move isort from dev dependencies to main dependencies isort is a dependency of edvart with #144 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cb35c05..461d6ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,7 @@ umap-learn = { version = "^0.5.4", optional = true} # with newer version of LLVM binaries. numba = { version = "^0.57", optional = true } pyarrow = { version = "^13.0.0", optional = true } +isort = "^5.10.1" [tool.poetry.extras] umap = ["umap-learn", "numba"] @@ -44,7 +45,6 @@ toml = "^0.10.0" jupyter = "*" black = "^22.3.0" pylint = "^2.14.3" -isort = "^5.10.1" sphinx-copybutton = "^0.5.2" [build-system]