Skip to content
This repository was archived by the owner on May 7, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,20 +589,16 @@ def prerelease(session: nox.sessions.Session, tests_path, extra_pytest_options=(
)
already_installed.add("pandas")

# Ibis has introduced breaking changes. Let's exclude ibis head
# from prerelease install list for now. We should enable the head back
# once bigframes supports the version at HEAD.
# session.install(
# "--upgrade",
# "-e", # Use -e so that py.typed file is included.
# "git+https://github.com/ibis-project/ibis.git#egg=ibis-framework",
# )
# Try to avoid a cap on our SQLGlot so that bigframes
# can be integrated with SQLMesh. See:
# https://github.com/googleapis/python-bigquery-dataframes/issues/942
# If SQLGlot introduces something that breaks us, lets file an issue
# upstream and/or make sure we fix bigframes to work with it.
session.install(
"--upgrade",
"--pre",
"ibis-framework>=9.0.0,<=9.2.0",
"git+https://github.com/tobymao/sqlglot.git#egg=sqlglot",
)
already_installed.add("ibis-framework")
already_installed.add("sqlglot")

# Workaround https://github.com/googleapis/python-db-dtypes-pandas/issues/178
session.install("--no-deps", "db-dtypes")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"python-dateutil>=2.8.2,<3",
"pytz>=2022.7",
"toolz>=0.11,<2",
"typing-extensions>=4.3.0,<5",
"typing-extensions>=4.5.0,<5",
"rich>=12.4.4,<14",
]
extras = {
Expand Down
8 changes: 8 additions & 0 deletions testing/constraints-3.9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,11 @@ tabulate==0.9
ipywidgets==7.7.1
humanize==4.6.0
matplotlib==3.7.1
# For vendored ibis-framework.
atpublic==2.3
parsy==2.0
python-dateutil==2.8.2
pytz==2022.7
toolz==0.11
typing-extensions==4.5.0
rich==12.4.4