-
Notifications
You must be signed in to change notification settings - Fork 18
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
remove namespace_packages=['ZPsycopgDA'], from setup.py #2
Comments
Is removing that line enough to solve the problem? |
I am pretty sure, since the package isn't actually a namespace package, as it is doing stuff in it's |
I will verify that removing the line is the correct solution (Zope 2.13 and Python 2.7). I just had to remove that line myself to get installation via easy_install and pip to work, where before installation was failing with the error
This patch isn't available in the version released on PyPI (2.4.6 from 2013-03-16, which is currently 16 commits behind master). |
As #3 is merged this issue can be closed. |
The package isn't a namespace package, and this greatly hinders installation as both
pip install ZPsycopgDA
as well aseasy install ZPsycopgDA
both fail.The offending line: https://github.com/psycopg/ZPsycopgDA/blob/master/setup.py#L48
The text was updated successfully, but these errors were encountered: