3
0
Fork 0

fix: restrict version for SQLAlchemy, pending a SQLAlchemy-Utils bug

not sure why this is just now affecting me?  only saw the problem when
running `tox -e nox` actually, which is even more weird?  but this
seems like a necessary step just in case, for now
This commit is contained in:
Lance Edgar 2026-02-17 15:25:18 -06:00
parent 028f8e767d
commit e4769fcc5a

View file

@ -48,6 +48,11 @@ dependencies = [
"WuttJamaican[db]>=0.28.7",
"zope.sqlalchemy>=1.5",
# nb. this must be pinned for now, until SQLAlchemy-Utils
# can address a new bug that showed up in SA 2.1.0b1
# cf. https://github.com/kvesteri/sqlalchemy-utils/issues/800
"SQLAlchemy<2.1",
# nb. this must be pinned for now, until pyramid can remove
# its dependency on pkg_resources.
# cf. https://github.com/Pylons/pyramid/issues/3731