I ran into an issue recently when trying out the Pyramid web
framework. It has a dependency on zope.sqlalchemy and a couple of
other zope.* libs. These dependencies are installed into the
site-packages/ directory:
zope
/deprecation
/interface
/sqlalchemy
zope.deprecation-3.5.0-py
I apologize for replying to my own message, but I discovered another workaround:
In the Pydev Python interpreter preferences, if I add a new "Forced
Builtin" named "zope" then the following line works (where it didn't
previously):
from zope import sqlalchemy
This workaround may be preferable to