From 9ca894f2b0e02a1bd436d173e5cd381d42725545 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Wed, 6 Nov 2019 20:28:13 +0100 Subject: [PATCH] setuptools_scm is not needed for install, only setup (#101) setuptools_scm is an especially nasty package to have installed because it non-transparently hooks into the standard setuptools package and changes its behavior. Depending on the setuptools_scm version this may lead to really hard-to-debug situations when installing other packages. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a04a8a72..ac021b49 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ name="weblogo", python_requires='>=3.6', - install_requires=['numpy', 'scipy', 'setuptools', 'setuptools_scm'], + install_requires=['numpy', 'scipy', 'setuptools'], use_scm_version=True, setup_requires=['setuptools_scm'],