Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@
# 'Development Status :: 5 - Production/Stable'``
release_status = "Development Status :: 4 - Beta"
dependencies = [
"db-dtypes>=0.3.0,<2.0.0dev",
"google-cloud-bigquery >= 3.13.0, <4.0.0dev",
"db-dtypes>=0.3.0,<2.0.0",
"google-cloud-bigquery >= 3.13.0, <4.0.0",
"ipywidgets>=7.7.1",
"ipython>=7.23.1",
"ipykernel>=5.5.6",
"packaging >= 20.0.0",
"pandas>=1.1.0",
"pyarrow >= 3.0.0",
"pydata-google-auth >=1.5.0",
"tqdm >= 4.7.4, <5.0.0dev",
"tqdm >= 4.7.4, <5.0.0",
]
extras = {
# bqstorage had a period where it was a required dependency, and has been
# moved back to optional due to bloat. See
# https://github.com/googleapis/python-bigquery/issues/1196 for more background.
"bqstorage": [
"google-cloud-bigquery-storage >= 2.6.0, <3.0.0dev",
"google-cloud-bigquery-storage >= 2.6.0, <3.0.0",
# Due to an issue in pip's dependency resolver, the `grpc` extra is not
# installed, even though `google-cloud-bigquery-storage` specifies it
# as `google-api-core[grpc]`. We thus need to explicitly specify it here.
# See: https://github.com/googleapis/python-bigquery/issues/83 The
# grpc.Channel.close() method isn't added until 1.32.0.
# https://github.com/grpc/grpc/pull/15254
"grpcio >= 1.47.0, < 2.0dev",
"grpcio >= 1.49.1, < 2.0dev; python_version>='3.11'",
"grpcio >= 1.47.0, < 2.0.0",
"grpcio >= 1.49.1, < 2.0.0; python_version>='3.11'",
],
"bigframes": ["bigframes >= 1.17.0"],
"geopandas": ["geopandas >= 1.0.1"],
Expand Down