Skip to content

Commit f9d0a11

Browse files
committed
fix docs
1 parent 3c6cbf1 commit f9d0a11

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

doc/source/io.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4657,6 +4657,8 @@ Google BigQuery
46574657
Starting in 0.20.0, pandas has split off Google BigQuery support into the
46584658
separate package ``pandas-gbq``. You can ``pip install pandas-gbq`` to get it.
46594659

4660+
Documentation is now hosted `here <https://pandas-gbq.readthedocs.io/>`__
4661+
46604662
.. versionadded:: 0.13.0
46614663

46624664
The :mod:`pandas.io.gbq` module provides a wrapper for Google's BigQuery

doc/source/whatsnew/v0.20.0.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,15 @@ New Behavior:
360360
In [5]: df['a']['2011-12-31 23:59:59']
361361
Out[5]: 1
362362

363+
.. _whatsnew_0200.api_breaking.gbq:
364+
365+
Pandas Google BigQuery support has moved
366+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
367+
368+
pandas has split off Google BigQuery support into a separate package ``pandas-gbq``. You can ``pip install pandas-gbq`` to get it.
369+
The functionaility of ``pd.read_gbq()`` and ``.to_gbq()`` remains the same with the currently released version of ``pandas-gbq=0.1.2``. (:issue:`15347`)
370+
Documentation is now hosted `here <https://pandas-gbq.readthedocs.io/>`__
371+
363372
.. _whatsnew_0200.api_breaking.memory_usage:
364373

365374
Memory Usage for Index is more Accurate

pandas/io/gbq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def _try_import():
1212
# give a nice error message
1313
raise ImportError("the pandas-gbq library is not installed\n"
1414
"you can install\n"
15-
"pip install pandas-gbqt\n")
15+
"pip install pandas-gbq\n")
1616

1717
return pandas_gbq
1818

0 commit comments

Comments
 (0)