Open bryanlandia opened 10 years ago
I should probably have written, needs <0.8
since there could conceivably be other 0.7 series releases.
setup.py in transmogrify.sqlalchemy only specifies >= 0.4
Sorry, didn't realize there was a 1.0.2 release that's not on PyPI that looks like it works with more recent SQLAlchemy versions. And actually, the code for 1.0.1 would need <0.7, not <=0.8.
In transmogrify.sqlalchemy.init
from sqlalchemy.exceptions import OperationalError
will raise ImportError with SQLAlchemy >= 0.8 since the that package's init no longer imports.exc
asexceptions
.