From 58d71bac8dc924c39696fb50f21042687a4d04ff Mon Sep 17 00:00:00 2001 From: "Daniel M. Capella" Date: Tue, 9 Feb 2021 17:53:53 -0500 Subject: [PATCH] setuptools is a runtime dep only for Python < 3.8 > In recent versions of setuptools and Python, console-script entry points are using stdlib importlib by default, thus setuptools is no longer a runtime dependency. https://github.com/pypa/setuptools/pull/2197 https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v4730 https://docs.python.org/3/library/importlib.metadata.html --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 97b77f4..c5ef250 100644 --- a/setup.cfg +++ b/setup.cfg @@ -52,7 +52,7 @@ include_package_data = True install_requires = pathspec >= 0.5.3 pyyaml - setuptools + setuptools; python_version < "3.8" test_suite = tests