From e0bf2b1171dbc4faf39ceb908aade141bdb393d5 Mon Sep 17 00:00:00 2001 From: Roland Walker Date: Wed, 11 Mar 2026 06:55:35 -0400 Subject: [PATCH] support sqlglot 28 and 29 --- changelog.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 4b02e9e9..720c1ff1 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,7 @@ Features Internal --------- * Migrate more repeated values to `constants.py`. +* Support `sqlglot` 28 and 29. 1.62.0 (2026/03/07) diff --git a/pyproject.toml b/pyproject.toml index c152c4b7..bbae5ad1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "prompt_toolkit>=3.0.6,<4.0.0", "PyMySQL ~= 1.1.2", "sqlparse>=0.3.0,<0.6.0", - "sqlglot[rs] == 27.*", + "sqlglot[rs] >= 27.0.0, <30.0.0", "configobj ~= 5.0.9", "cli_helpers[styles] ~= 2.11.0", "wcwidth ~= 0.6.0",