Commit 9eebb2df authored by Jason R. Coombs's avatar Jason R. Coombs

Distributions are once again installed as zipped eggs by default.

--HG--
branch : Setuptools-Distribute merge
extra : source : f3b1c801d877734669007ad4f5d8cee091a6c767
parent 4a327c5c
...@@ -23,3 +23,8 @@ Major Changes ...@@ -23,3 +23,8 @@ Major Changes
------------- -------------
* The _distribute property of the setuptools module has been removed. * 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
<http://bugs.python.org/setuptools/issue33>`_ indicates that the feature
should remain and no substantial justification was given in the `Distribute
report <https://bitbucket.org/tarek/distribute/issue/19/>`_.
...@@ -704,7 +704,7 @@ Please make the appropriate changes for your system and try again. ...@@ -704,7 +704,7 @@ Please make the appropriate changes for your system and try again.
return True return True
if not dist.has_metadata('zip-safe'): if not dist.has_metadata('zip-safe'):
return True return True
return True return False
def maybe_move(self, spec, dist_filename, setup_base): def maybe_move(self, spec, dist_filename, setup_base):
dst = os.path.join(self.build_directory, spec.key) dst = os.path.join(self.build_directory, spec.key)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment