From 9eebb2dfe17fa129f2201add401c8fb6eb0ebcc1 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 3 May 2013 10:39:35 -0400 Subject: Distributions are once again installed as zipped eggs by default. --HG-- branch : Setuptools-Distribute merge extra : source : f3b1c801d877734669007ad4f5d8cee091a6c767 --- MERGE.txt | 5 +++++ setuptools/command/easy_install.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/MERGE.txt b/MERGE.txt index e4cd20a0..bcff09da 100644 --- a/MERGE.txt +++ b/MERGE.txt @@ -23,3 +23,8 @@ Major Changes ------------- * The _distribute property of the setuptools module has been removed. +* Distributions are once again installed as zipped eggs by default, per the + rationale given in `the seminal bug report + `_ indicates that the feature + should remain and no substantial justification was given in the `Distribute + report `_. diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 8d44817f..4ca0526d 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -704,7 +704,7 @@ Please make the appropriate changes for your system and try again. return True if not dist.has_metadata('zip-safe'): return True - return True + return False def maybe_move(self, spec, dist_filename, setup_base): dst = os.path.join(self.build_directory, spec.key) -- cgit v1.2.3