diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a10cc03a..03a18b7f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,25 @@ Change Log All notable changes to this code base will be documented in this file, in every released version. +Version 2.9.x (WIP) +=================== + +:Released: 2020-xx-yy +:Maintainer: + +Features +-------- + +Bug Fixes +--------- + +* :gh:`224` (:pr:`226`): Replaced in class ``clean``, ``super(CleanCommand, self).run()`` with + ``CleanCommand.run(self)`` + + +Removals +-------- + Version 2.9.1 ============= diff --git a/setup.py b/setup.py index d73690ee..15829461 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def run_tests(self): class Clean(CleanCommand): def run(self): - super(CleanCommand, self).run() + CleanCommand.run(self) delete_in_root = ["build", ".cache", "dist", ".eggs", "*.egg-info", ".tox"] delete_everywhere = ["__pycache__", "*.pyc"] for candidate in delete_in_root: