Closed hemna closed 4 years ago
Can you please confirm if we can change this:
DBSession = scoped_session(
sessionmaker(autoflush=False,
extension=ZopeTransactionExtension()))
to this:
from zope.sqlalchemy import register
DBSession = scoped_session(sessionmaker(autoflush=False))
register(DBSession)
Yes, this should work!
Would anyone care to copy and paste this suggestion into CHANGES.rst and open a pull request?
yes that worked thank you.
Just upgraded zope.sqlalchemy from pip and it broke the world.