muellert / transmogrify.sqlalchemy

A transmogrifier package that works with sqlalchemy to read from a relational database
1 stars 2 forks source link

transmogrify.sqlalchemy 1.0.1 needs SQLAlchemy >0.4 <=0.7.10 #1

Open bryanlandia opened 10 years ago

bryanlandia commented 10 years ago

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 as exceptions.

bryanlandia commented 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

bryanlandia commented 10 years ago

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.