You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
from google.cloud import bigquery
query = bigquery.Client().query('SELECT 1')
data = query.to_dataframe(progress_bar_type='tqdm_notebook')
The snippet above causes a deprecation warning that breaks strict pytest runs (using 'filterwarnings': ['error']):
.../site-packages/google/cloud/bigquery/_tqdm_helpers.py:51: in get_progress_bar
return tqdm.tqdm_notebook(desc=description, total=total, unit=unit)
...
from .notebook import tqdm as _tqdm_notebook
> warn("This function will be removed in tqdm==5.0.0\n"
"Please use `tqdm.notebook.tqdm` instead of `tqdm.tqdm_notebook`",
TqdmDeprecationWarning, stacklevel=2)
E tqdm.std.TqdmDeprecationWarning: This function will be removed in tqdm==5.0.0
E Please use `tqdm.notebook.tqdm` instead of `tqdm.tqdm_notebook`
.../site-packages/tqdm/__init__.py:25: TqdmDeprecationWarning
Environment details
google-cloud-bigqueryversion: 2.34.0Steps to reproduce
The snippet above causes a deprecation warning that breaks strict pytest runs (using
'filterwarnings': ['error']):