summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-11 21:52:18 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-08-11 21:52:18 +0100
commite2fb005beed79dba58ec0ecfa9bcdadf03d6666a (patch)
treeaa1cfe6ffd03fbda8f4666cacc4c9e2d08527c5d
parent3126b0abb1ef285c6bb6efb028f555c651eabf05 (diff)
downloadpython-setuptools-git-e2fb005beed79dba58ec0ecfa9bcdadf03d6666a.tar.gz
Avoid mentioning project names in CHANGELOG
... since they may change implementantion
-rw-r--r--changelog.d/3503.misc.rst8
-rw-r--r--setuptools/command/build_py.py1
2 files changed, 4 insertions, 5 deletions
diff --git a/changelog.d/3503.misc.rst b/changelog.d/3503.misc.rst
index 27924004..7cfb9883 100644
--- a/changelog.d/3503.misc.rst
+++ b/changelog.d/3503.misc.rst
@@ -1,6 +1,6 @@
Added filter to ignore external ``.egg-info`` files in manifest.
-Some plugins (e.g. ``pbr``) might rely on the fact that the ``.egg-info``
-directory is produced inside the project dir, which may not be the case
-in editable installs (the ``.egg-info`` directory is produced inside the
-metadata directory given by the build frontend via PEP 660 hooks).
+Some plugins might rely on the fact that the ``.egg-info`` directory is
+produced inside the project dir, which may not be the case in editable installs
+(the ``.egg-info`` directory is produced inside the metadata directory given by
+the build frontend via PEP 660 hooks).
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