From 8f682481c725047d3eb9409faecf0719caec1b8a Mon Sep 17 00:00:00 2001 From: "Daniel M. Capella" Date: Thu, 11 Feb 2021 07:55:08 +0000 Subject: [PATCH] Remove runtime dep 'setuptools' 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 needed as 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