From 43f4c1fc4d39f44701e5dac8c8d7c09be3df9a4c Mon Sep 17 00:00:00 2001 From: z3z1ma Date: Thu, 9 Jan 2025 10:00:49 -0700 Subject: [PATCH] chore: relax sqlglot upper bound --- setup.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index f08f53eaf7..e3fda9d36f 100644 --- a/setup.py +++ b/setup.py @@ -57,14 +57,11 @@ "requests >=2.27.1", "scikit-learn >=1.2.2", "sqlalchemy >=1.4,<3.0dev", - # Keep sqlglot versions in sync with ibis-framework. This avoids problems - # where the incorrect version of sqlglot is installed, such as - # https://github.com/googleapis/python-bigquery-dataframes/issues/315 - "sqlglot >=23.6.3,<25.2", - "tabulate >= 0.9", + "sqlglot >=23.6.3", + "tabulate >=0.9", "ipywidgets >=7.7.1", - "humanize >= 4.6.0", - "matplotlib >= 3.7.1", + "humanize >=4.6.0", + "matplotlib >=3.7.1", # For vendored ibis-framework. "atpublic>=2.3,<6", "parsy>=2,<3",