diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-11 21:52:18 +0100 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2022-08-11 21:52:18 +0100 |
commit | e2fb005beed79dba58ec0ecfa9bcdadf03d6666a (patch) | |
tree | aa1cfe6ffd03fbda8f4666cacc4c9e2d08527c5d /setuptools/command/build_py.py | |
parent | 3126b0abb1ef285c6bb6efb028f555c651eabf05 (diff) | |
download | python-setuptools-git-e2fb005beed79dba58ec0ecfa9bcdadf03d6666a.tar.gz |
Avoid mentioning project names in CHANGELOG
... since they may change implementantion
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index 796d7bdd..8b1a3320 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -52,7 +52,6 @@ class build_py(orig.build_py): def run(self): """Build modules, packages, and copy data files to build directory""" - # if self.editable_mode or not (self.py_modules and self.packages): if not (self.py_modules or self.packages) or self.editable_mode: return |