aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGES.txt3
-rwxr-xr-xsetuptools/command/easy_install.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index dd2bfe36..20361859 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -13,6 +13,9 @@ setuptools
This closes http://bitbucket.org/tarek/distribute/issue/16 and
http://bitbucket.org/tarek/distribute/issue/18.
+* zip_ok is now True by default. This closes
+ http://bugs.python.org/setuptools/issue33.
+
bootstraping
============
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 3f8a6877..0fa07845 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -547,7 +547,7 @@ Please make the appropriate changes for your system and try again.
return True
if not dist.has_metadata('zip-safe'):
return True
- return False
+ return True
def maybe_move(self, spec, dist_filename, setup_base):
dst = os.path.join(self.build_directory, spec.key)