Skip to content

Commit 56bc394

Browse files
authored
chore(deps): update dependency pandas-gbq to v0.16.0 (GoogleCloudPlatform#7338)
[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [pandas-gbq](https://togithub.com/googleapis/python-bigquery-pandas) | `==0.14.1` -> `==0.16.0` | [![age](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/compatibility-slim/0.14.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/confidence-slim/0.14.1)](https://docs.renovatebot.com/merge-confidence/) | | [pandas-gbq](https://togithub.com/googleapis/python-bigquery-pandas) | `==0.15.0` -> `==0.16.0` | [![age](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/compatibility-slim/0.15.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/pandas-gbq/0.16.0/confidence-slim/0.15.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>googleapis/python-bigquery-pandas</summary> ### [`v0.16.0`](https://togithub.com/googleapis/python-bigquery-pandas/blob/HEAD/CHANGELOG.md#&#8203;0160-httpswwwgithubcomgoogleapispython-bigquery-pandascomparev0160v0160-2021-11-08) [Compare Source](https://togithub.com/googleapis/python-bigquery-pandas/compare/0.15.0...v0.16.0) ##### Features - `to_gbq` uses Parquet by default, use `api_method="load_csv"` for old behavior ([#&GoogleCloudPlatform#8203;413](https://www.togithub.com/googleapis/python-bigquery-pandas/issues/413)) ([9a65383](https://www.github.com/googleapis/python-bigquery-pandas/commit/9a65383916697ff02358aba58df555c85b16350c)) - allow Python 3.10 ([#&GoogleCloudPlatform#8203;417](https://www.togithub.com/googleapis/python-bigquery-pandas/issues/417)) ([faba940](https://www.github.com/googleapis/python-bigquery-pandas/commit/faba940bc19d5c260b9dce3f973a9b729a179d20)) ##### Miscellaneous Chores - release 0.16.0 ([#&GoogleCloudPlatform#8203;415](https://www.togithub.com/googleapis/python-bigquery-pandas/issues/415)) ([ea0f4e9](https://www.github.com/googleapis/python-bigquery-pandas/commit/ea0f4e97f3518895e824b1b7328d578081588d84)) ##### Documentation - clarify `table_schema` ([#&GoogleCloudPlatform#8203;383](https://www.togithub.com/googleapis/python-bigquery-pandas/issues/383)) ([326e674](https://www.github.com/googleapis/python-bigquery-pandas/commit/326e674a24fc7e057e213596df92f0c4a8225f9e)) ### [`v0.15.0`](https://togithub.com/googleapis/python-bigquery-pandas/blob/HEAD/CHANGELOG.md#&#8203;0150--2021-03-30) [Compare Source](https://togithub.com/googleapis/python-bigquery-pandas/compare/0.14.1...0.15.0) ##### Features - Load DataFrame with `to_gbq` to a table in a project different from the API client project. Specify the target table ID as `project.dataset.table` to use this feature. ([#&GoogleCloudPlatform#8203;321](https://togithub.com/googleapis/python-bigquery-pandas/issues/321), [#&GoogleCloudPlatform#8203;347](https://togithub.com/googleapis/python-bigquery-pandas/issues/347)) - Allow billing project to be separate from destination table project in `to_gbq`. ([#&GoogleCloudPlatform#8203;321](https://togithub.com/googleapis/python-bigquery-pandas/issues/321)) ##### Bug fixes - Avoid 403 error from `to_gbq` when table has `policyTags`. ([#&GoogleCloudPlatform#8203;354](https://togithub.com/googleapis/python-bigquery-pandas/issues/354)) - Avoid `client.dataset` deprecation warnings. ([#&GoogleCloudPlatform#8203;312](https://togithub.com/googleapis/python-bigquery-pandas/issues/312)) ##### Dependencies - Drop support for Python 3.5 and 3.6. ([#&GoogleCloudPlatform#8203;337](https://togithub.com/googleapis/python-bigquery-pandas/issues/337)) - Drop support for <span class="title-ref">google-cloud-bigquery==2.4.\*</span> due to query hanging bug. ([#&GoogleCloudPlatform#8203;343](https://togithub.com/googleapis/python-bigquery-pandas/issues/343)) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/GoogleCloudPlatform/python-docs-samples).
1 parent 9498486 commit 56bc394

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bigquery/pandas-gbq-migration/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ google-cloud-bigquery==2.31.0
22
google-cloud-bigquery-storage==2.10.1
33
pandas==1.1.5; python_version < '3.7'
44
pandas==1.3.5; python_version > '3.6'
5-
pandas-gbq==0.15.0; python_version > '3.6'
5+
pandas-gbq==0.16.0; python_version > '3.6'
6+
# pandas-gbq==0.14.1 is the latest compatible version for Python 3.6
67
pandas-gbq==0.14.1; python_version < '3.7'
78
pyarrow==6.0.1
89
grpcio==1.43.0

0 commit comments

Comments
 (0)