From a1f2ede08f6b069832fa7cc16587d70020232a51 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Fri, 27 Jan 2023 10:12:04 +0100 Subject: [PATCH] pinned SQLAlchemy version to be lower than 2 SQLALchemy version 2 has some api changes and a migration has to take place. Until the migration happened, the old v1 is used. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 70cfc57..b275455 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ dependencies = [ "pyramid_tm", "pyramid_retry", "requests >= 2.23", - "sqlalchemy", + "sqlalchemy < 2", "transaction >= 3.0.0", "waitress", "zope.sqlalchemy",