summaryrefslogtreecommitdiff
path: root/CHANGES.rst
diff options
context:
space:
mode:
authorTim Heap <tim@timheap.me>2016-09-26 14:00:00 +1000
committerTim Heap <tim@timheap.me>2016-09-26 14:12:17 +1000
commit992adf2f5684e6660335d616149e050b3eaaed17 (patch)
tree0459f65840d55eb36ed54af9b4529c6085a7b86d /CHANGES.rst
parent75a78dc2feedb9287155f146d0b855ea46924961 (diff)
downloadpython-setuptools-git-992adf2f5684e6660335d616149e050b3eaaed17.tar.gz
Note find_packages backwards incompatible change
Also add a test for the new behaviour.
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index d115533a..cf8bcaf9 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -6,6 +6,10 @@ In development
--------------
* #733: Do not search excluded directories for packages.
+ This introduced a backwards incompatible change in ``find_packages()``
+ so that ``find_packages(exclude=['foo']) == []``, excluding subpackages of ``foo``.
+ Previously, ``find_packages(exclude=['foo']) == ['foo.bar']``,
+ even though the parent ``foo`` package was excluded.
v27.3.0
-------