diff options
author | Zoran Simic <zsimic@netflix.com> | 2017-12-09 16:12:28 -0800 |
---|---|---|
committer | Zoran Simic <zsimic@netflix.com> | 2017-12-09 16:12:28 -0800 |
commit | 8fe36a5710beb556a06d05f284e5ea49b4656624 (patch) | |
tree | d7fd21281a25863c25d3c80d468036b1e954ae25 | |
parent | e001996ab483c7c725e8894f560fb84c43150bcc (diff) | |
download | python-setuptools-git-8fe36a5710beb556a06d05f284e5ea49b4656624.tar.gz |
Removed warning when PYTHONDONTWRITEBYTECODE is enabled
-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 |