Merge lp:~mordred/django-openid-auth/zip-safe into lp:~django-openid-auth/django-openid-auth/trunk

Proposed by Monty Taylor
Status: Needs review
Proposed branch: lp:~mordred/django-openid-auth/zip-safe
Merge into: lp:~django-openid-auth/django-openid-auth/trunk
Diff against target: 9 lines (+1/-0)
1 file modified
setup.py (+1/-0)
To merge this branch: bzr merge lp:~mordred/django-openid-auth/zip-safe
Reviewer Review Type Date Requested Status
django-openid-auth developers Pending
Review via email: mp+175875@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Antoine "hashar" Musso (hashar) wrote :

subscribing to replies.

Unmerged revisions

105. By Monty Taylor

Add zip_safe flag to setup.py

We are providing django templates which django cannot find when the software
is installed inside of an egg zipfile. This means, additionally, that anyone
who install_requires on django_openid_auth and then gets their depends
installed via setup.py install or setup.py develop will get a completely
unfunctional install.

Setting zip_safe=False explicitly fixes this.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'setup.py'
2--- setup.py 2013-03-14 14:03:59 +0000
3+++ setup.py 2013-07-19 15:58:26 +0000
4@@ -77,4 +77,5 @@
5 },
6 provides=['django_openid_auth'],
7 requires=['django (>=1.1.2)', 'openid (>=2.2.0)'],
8+ zip_safe=False,
9 )

Subscribers

People subscribed via source and target branches