Skip to content

Commit 7f7790d

Browse files
committed
Update docstring indicating required pandas-gbq version.
1 parent 9581ddf commit 7f7790d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

doc/source/whatsnew/v0.25.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ I/O
364364
- Improved the explanation for the failure when value labels are repeated in Stata dta files and suggested work-arounds (:issue:`25772`)
365365
- Improved :meth:`pandas.read_stata` and :class:`pandas.io.stata.StataReader` to read incorrectly formatted 118 format files saved by Stata (:issue:`25960`)
366366
- Fixed bug in loading objects from S3 that contain ``#`` characters in the URL (:issue:`25945`)
367-
- Updated :func:`read_gbq` to version 0.10.0 of the ``pandas-gbq`` library. Adds ``use_bqstorage_api`` parameter to speed up downloads of large data frames. (:issue:`26104`)
367+
- Adds ``use_bqstorage_api`` parameter to :func:`read_gbq` to speed up downloads of large data frames. This feature requires version 0.10.0 of the ``pandas-gbq`` library as well as the ``google-cloud-bigquery-storage`` and ``fastavro`` libraries. (:issue:`26104`)
368368

369369
Plotting
370370
^^^^^^^^

pandas/io/gbq.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ def read_gbq(query, project_id=None, index_col=None, col_order=None,
113113
<https://cloud.google.com/bigquery/docs/access-control#roles>`__
114114
permission on the project you are billing queries to.
115115
116-
This feature requires the ``google-cloud-bigquery-storage`` and
116+
This feature requires version 0.10.0 or later of the ``pandas-gbq``
117+
package. It also requires the ``google-cloud-bigquery-storage`` and
117118
``fastavro`` packages.
118119
119120
.. versionadded:: 0.25.0

0 commit comments

Comments
 (0)