diff options
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rwxr-xr-x | setuptools/sandbox.py | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index d0b7e9b0..463f45b8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,10 +8,6 @@ CHANGES * Issue #314: Disabled support for ``setup_requires`` metadata to avoid issue where Setuptools was unable to upgrade over earlier versions. -* Issue #315: Updated setuptools to hide its own loaded modules during - installation of another package. This change will enable setuptools to - upgrade (or downgrade) itself even when its own metadata and implementation - change. --- 8.4 diff --git a/setuptools/sandbox.py b/setuptools/sandbox.py index f1b60cc0..e3c18e39 100755 --- a/setuptools/sandbox.py +++ b/setuptools/sandbox.py @@ -126,7 +126,9 @@ def setup_context(setup_dir): temp_dir = os.path.join(setup_dir, 'temp') with save_pkg_resources_state(): with save_modules(): - hide_setuptools() + # Disabled per + # https://bitbucket.org/pypa/setuptools/issue/315/setuptools-should-always-use-its-own#comment-14512075 + # hide_setuptools() with save_path(): with save_argv(): with override_temp(temp_dir): |