From 9fe970147cff840e55f7c726ac0a52db8620125e Mon Sep 17 00:00:00 2001 From: Charlotte Koch Date: Sat, 6 Mar 2021 22:45:10 +1100 Subject: [PATCH] Pin sqlalchemy to a known good version. The latest version is 1.4.0b1 which changes some internals a bit... internals which unforuntately mediagoblin's DatabaseManager screw around with (namely, _decl_class_registry) Signed-off-by: Ben Sturmfels --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a7c9f2aa..897d1d2a 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ install_requires = [ 'WebTest>=2.0.18', 'ConfigObj', 'Markdown', - 'sqlalchemy', + 'sqlalchemy<1.4.0', 'itsdangerous', 'pytz', 'sphinx',