From 454758560d80fbc358a412e862315db262642684 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 6 Jul 2025 13:04:14 -0500 Subject: [PATCH] fix: cap sqlalchemy version to 1.x for now, since wuttjamaican allows 2.x but something is not working right for sideshow. requires further investigation i don't have time for at the moment. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index ad78d53..2576c3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ classifiers = [ license = {text = "GNU General Public License v3+"} requires-python = ">= 3.8" dependencies = [ + "SQLAlchemy<2", # TODO: should allow 2.x "WuttaWeb>=0.22.0", ]