From d0bb715a99f338a68a1b0ff81d7020ec8a7fc0b9 Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Aug 28 2021 08:55:26 +0000 Subject: Don't pull in unused docutils on runtime This project has a pyproject.toml file with a build backend specified, https://github.com/pypa/setuptools/issues/457 is no longer relevant. --- diff --git a/ChangeLog b/ChangeLog index 1ab2c51..b8c71f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -14,7 +14,9 @@ Version NEXT :Released: FUTURE :Maintainer: UNKNOWN -No changes. +Bugs Fixed: + +* Make the dependency on ‘docutils’ packaging-only, as it is not used on runtime. Version 2.2.4 diff --git a/setup.py b/setup.py index ddad4bc..8e7e8d7 100644 --- a/setup.py +++ b/setup.py @@ -101,11 +101,6 @@ setup_kwargs = dict( ], ) -# Docutils is only required for building, but Setuptools can't distinguish -# dependencies properly. -# See . -setup_kwargs['install_requires'].append("docutils") - if __name__ == '__main__': setup(**setup_kwargs)