summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-02-11 22:55:49 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-02-11 22:55:49 -0500
commit9f1f9b144a408770a833cfbee786055dc34dd383 (patch)
tree1988b2923a8fc5d0464a6e203ffcc5238525a04a /CHANGES.txt
parent4104aa38286858dd73eca1da6da25f2c8a170f1a (diff)
parent911fe5e498a58f1a05b2a7b3a34dfcaa7b9dd89d (diff)
downloadpython-setuptools-git-9f1f9b144a408770a833cfbee786055dc34dd383.tar.gz
Merge backout of namespace package __init__ module generation; ref #148.3.0b1
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 602d8269..52058d22 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -14,6 +14,10 @@ CHANGES
handled properly at runtime. In 2.x it was possible to get away without
including the declaration, but only at the cost of forcing namespace
packages to be imported early, which 3.0 no longer does.
+* Issue #148: When building (bdist_egg), setuptools no longer adds
+ ``__init__.py`` files to namespace packages. Any packages that rely on this
+ behavior will need to create ``__init__.py`` files and include the
+ ``declare_namespace()``.
* Issue #7: Setuptools itself is now distributed as a zip archive in addition to
tar archive. ez_setup.py now uses zip archive. This approach avoids the potential
security vulnerabilities presented by use of tar archives in ez_setup.py.