pypi pandas-gbq 0.14.0
Version 0.14.0

latest releases: 0.23.1, 0.23.0, 0.22.0...
3 years ago

0.14.0 / 2020-10-05

  • Add dtypes argument to read_gbq. Use this argument to override
    the default dtype for a particular column in the query results.
    For example, this can be used to select nullable integer columns as
    the Int64 nullable integer pandas extension type. (#242, #332)
df = pandas_gbq.read_gbq(
    "SELECT CAST(NULL AS INT64) AS null_integer",
    dtypes={"null_integer": "Int64"},
)

Dependency updates

  • Support google-cloud-bigquery-storage 2.0 and higher. (#329)
  • Update the minimum version of pandas to 0.20.1. (#331)

Internal changes

  • Update tests to run against Python 3.8. (#331)

Don't miss a new pandas-gbq release

NewReleases is sending notifications on new releases.