diff options
-rw-r--r-- | CHANGES.rst | 5 | ||||
-rwxr-xr-x | setuptools/command/easy_install.py | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index 3694b152..f9f1ea03 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +v38.2.5 +------- + +* Removed warning when PYTHONDONTWRITEBYTECODE is enabled + v38.2.4 ------- diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 12e22310..b691e702 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1248,7 +1248,6 @@ class easy_install(Command): def byte_compile(self, to_compile): if sys.dont_write_bytecode: - self.warn('byte-compiling is disabled, skipping.') return from distutils.util import byte_compile |