From 26586595e1b16a8ba77e0ed1bb7b83c766bddcc1 Mon Sep 17 00:00:00 2001 From: Victor Lin <13424970+victorlin@users.noreply.github.com> Date: Mon, 31 Jul 2023 11:22:30 -0700 Subject: [PATCH] Move typing_extensions to runtime dependencies In 2ead5b3e3306dc1100b49eb774287496018122d9, this module was added to dev dependencies in error. It is imported during runtime so it should be a runtime dependency. This was not caught in CI because CI installs dev dependencies. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cf180e6ae..1d4790cf9 100644 --- a/setup.py +++ b/setup.py @@ -63,6 +63,7 @@ "phylo-treetime >=0.10.0, ==0.10.*", "pyfastx >=0.8.4, ==0.8.*", "scipy ==1.*", + "typing_extensions; python_version <'3.8'", "xopen[zstd] >=1.7.0, ==1.*" ], extras_require = { @@ -87,7 +88,6 @@ "sphinx-autodoc-typehints >=1.21.4", "types-jsonschema >=3.0.0, ==3.*", "types-setuptools", - "typing_extensions; python_version <'3.8'", "wheel >=0.32.3", "ipdb >=0.10.1" ]