From 209b4102b4d072560be1dab738554a419a7da975 Mon Sep 17 00:00:00 2001 From: TrevorBergeron Date: Mon, 17 Nov 2025 16:29:10 -0800 Subject: [PATCH] chore: Bound sqlglot version below 28 (#2275) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery-dataframes/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes # 🦕 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fa663f66d5..28ae99a50d 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ "requests >=2.27.1", "shapely >=1.8.5", # 25.20.0 introduces this fix https://github.com/TobikoData/sqlmesh/issues/3095 for rtrim/ltrim. - "sqlglot >=25.20.0", + "sqlglot >=25.20.0, <28.0.0", "tabulate >=0.9", "ipywidgets >=7.7.1", "humanize >=4.6.0",