Skip to content

Commit

Permalink
setuptools_scm is not needed for install, only setup (#101)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ecederstrand authored and gecrooks committed Nov 6, 2019
1 parent 7136280 commit 9ca894f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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'],
Expand Down

0 comments on commit 9ca894f

Please sign in to comment.