This is an automated email from the ASF dual-hosted git repository.
jli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 73adff55ee8 chore(deps): Relax sqlalchemy-utils lower bound for
pydoris compatibility (#37949)
73adff55ee8 is described below
commit 73adff55ee88154bbccee2b2c44c2d7b433aa34a
Author: Joe Li <[email protected]>
AuthorDate: Fri Feb 13 14:55:54 2026 -0800
chore(deps): Relax sqlalchemy-utils lower bound for pydoris compatibility
(#37949)
---
pyproject.toml | 2 +-
superset-core/pyproject.toml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 3e48cc585b7..cae40928e8c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -99,7 +99,7 @@ dependencies = [
"simplejson>=3.15.0",
"slack_sdk>=3.19.0, <4",
"sqlalchemy>=1.4, <2",
- "sqlalchemy-utils>=0.42.0, <0.43",
+ "sqlalchemy-utils>=0.38.0, <0.43", # expanding lowerbound to work with
pydoris
"sqlglot>=28.10.0, <29",
# newer pandas needs 0.9+
"tabulate>=0.9.0, <1.0",
diff --git a/superset-core/pyproject.toml b/superset-core/pyproject.toml
index ee91144c675..44b2b3df06e 100644
--- a/superset-core/pyproject.toml
+++ b/superset-core/pyproject.toml
@@ -45,7 +45,7 @@ dependencies = [
"flask-appbuilder>=5.0.2,<6",
"pydantic>=2.8.0",
"sqlalchemy>=1.4.0,<2.0",
- "sqlalchemy-utils>=0.42.0",
+ "sqlalchemy-utils>=0.38.0, <0.43", # expanding lowerbound to work with
pydoris
"sqlglot>=28.10.0, <29",
"typing-extensions>=4.0.0",
]