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.
This commit is contained in:
Lance Edgar 2025-07-06 13:04:14 -05:00
parent 5c69449055
commit 454758560d

View file

@ -32,6 +32,7 @@ classifiers = [
license = {text = "GNU General Public License v3+"} license = {text = "GNU General Public License v3+"}
requires-python = ">= 3.8" requires-python = ">= 3.8"
dependencies = [ dependencies = [
"SQLAlchemy<2", # TODO: should allow 2.x
"WuttaWeb>=0.22.0", "WuttaWeb>=0.22.0",
] ]