diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2018-01-05 08:15:41 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-01-05 08:15:41 -0500 |
| commit | c1fc899d5fd16adb70ca606a4373bf0d3e114541 (patch) | |
| tree | 810d77d3855f9fe9a4a4d854615576af624fd200 | |
| parent | 4ae5bc9e6fd52517fe31048b6570224fb9cbb70d (diff) | |
| parent | 647ef56421e07e8322f27a77f49ac8c7ddbc1043 (diff) | |
| download | external_python_setuptools-c1fc899d5fd16adb70ca606a4373bf0d3e114541.tar.gz external_python_setuptools-c1fc899d5fd16adb70ca606a4373bf0d3e114541.tar.bz2 external_python_setuptools-c1fc899d5fd16adb70ca606a4373bf0d3e114541.zip | |
Merge pull request #1231 from zsimic/master
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 5ae8ff9a..df50fc82 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,8 @@ +v38.3.1 +------- + +* #1231: Removed warning when PYTHONDONTWRITEBYTECODE is enabled. + v38.3.0 ------- 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 |
