Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

work around poor interaction between whatever changed in zope.interface 4.3.3's usage of namespace packages and py2app #701

Merged
merged 3 commits into from
Dec 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build-app.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ pip install .;
# install dependencies that are needed to build and run the mac application
pip install -r requirements/mac-app.txt;

# work around zope.interface's namespace module shenanigans
# see https://github.com/zopefoundation/zope.interface/issues/67
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@glyph Should we track a todo to remove this with a mimic issue linked to zopefoundation/zope.interface#67?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Opened #702 to track this work.

touch "$(dirname "$(dirname "$(python -c 'import zope.interface; print(zope.interface.__file__)')")")"/__init__.py

# build the application using py2app
python setup.py py2app;

Expand Down
4 changes: 2 additions & 2 deletions requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
attrs==16.3.0
cffi==1.9.1
coverage==4.2
cryptography==1.7
cryptography==1.7.1
ddt==1.1.1
enum34==1.1.6
extras==1.0.0
Expand All @@ -30,4 +30,4 @@ unittest2==1.1.0
Werkzeug==0.11.11
wheel==0.29.0
xmltodict==0.10.2
zope.interface==4.3.2
zope.interface==4.3.3