From e4769fcc5a47ec3ef04ef69cdcfa85dba4a60cf2 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 17 Feb 2026 15:25:18 -0600 Subject: [PATCH] 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 --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d2be8c5..955ec5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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