Skip to content

Commit 1e4009a

Browse files
committed
Update docs for minimum google-cloud-bigquery version.
1 parent d8e3b99 commit 1e4009a

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

ci/requirements-3.6-0.20.1.conda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
google-auth
22
google-auth-oauthlib
3-
google-cloud-bigquery==0.32.0
3+
google-cloud-bigquery==1.9.0
44
pytest
55
pytest-cov
66
codecov

docs/source/changelog.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Changelog
22
=========
33

4+
.. _changelog-0.10.0:
5+
6+
0.10.0 / TBD
7+
------------
8+
9+
Dependency updates
10+
~~~~~~~~~~~~~~~~~~
11+
12+
- Update the minimum version of ``google-cloud-bigquery`` to 1.9.0.
13+
(:issue:`247`)
14+
15+
Internal changes
16+
~~~~~~~~~~~~~~~~
17+
18+
- Use ``to_dataframe()`` from ``google-cloud-bigquery`` in the ``read_gbq()``
19+
function. (:issue:`247`)
20+
21+
422
.. _changelog-0.9.0:
523

624
0.9.0 / 2019-01-11

pandas_gbq/gbq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def _check_google_client_version():
3535
raise ImportError("Could not import pkg_resources (setuptools).")
3636

3737
# https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/bigquery/CHANGELOG.md
38-
bigquery_minimum_version = pkg_resources.parse_version("0.32.0")
38+
bigquery_minimum_version = pkg_resources.parse_version("1.9.0")
3939
BIGQUERY_INSTALLED_VERSION = pkg_resources.get_distribution(
4040
"google-cloud-bigquery"
4141
).parsed_version

0 commit comments

Comments
 (0)