Commit 5fe609f6 authored by Jason Madden's avatar Jason Madden Committed by GitHub

Merge pull request #99 from zopefoundation/issue98

Stop installing terryfy.
parents 75fd5af5 db1c8b9c
...@@ -6,6 +6,10 @@ ...@@ -6,6 +6,10 @@
- Fix tests against persistent 4.4. - Fix tests against persistent 4.4.
- Stop accidentally installing the 'terryfy' package in macOS wheels.
See `issue 98
<https://github.com/zopefoundation/BTrees/issues/98>`_.
4.5.1 (2018-08-09) 4.5.1 (2018-08-09)
------------------ ------------------
......
prune terryfy
include pyproject.toml include pyproject.toml
include *.txt include *.txt
......
...@@ -173,7 +173,9 @@ setup(name='BTrees', ...@@ -173,7 +173,9 @@ setup(name='BTrees',
url="https://github.com/zopefoundation/BTrees", url="https://github.com/zopefoundation/BTrees",
license="ZPL 2.1", license="ZPL 2.1",
platforms=["any"], platforms=["any"],
packages=find_packages(), # Make sure we don't get 'terryfy' included in wheels
# created on macOS CI
packages=find_packages(include=("BTrees",)),
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
ext_modules=ext_modules, ext_modules=ext_modules,
......
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