Skip to content

Commit

Permalink
deps: allow pyarrow 6.x (#1031)
Browse files Browse the repository at this point in the history
* deps: allow pyarrow 6.x

* dry pyarrow deps

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
  • Loading branch information
tswast and gcf-owl-bot[bot] committed Oct 27, 2021
1 parent e4c94f4 commit 1c2de74
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Expand Up @@ -28,6 +28,7 @@
# 'Development Status :: 4 - Beta'
# 'Development Status :: 5 - Production/Stable'
release_status = "Development Status :: 5 - Production/Stable"
pyarrow_dep = ["pyarrow >= 3.0.0, < 7.0dev"]
dependencies = [
"grpcio >= 1.38.1, < 2.0dev", # https://github.com/googleapis/python-bigquery/issues/695
# NOTE: Maintainers, please do not require google-api-core>=2.x.x
Expand Down Expand Up @@ -55,11 +56,11 @@
# grpc.Channel.close() method isn't added until 1.32.0.
# https://github.com/grpc/grpc/pull/15254
"grpcio >= 1.38.1, < 2.0dev",
"pyarrow >= 3.0.0, < 6.0dev",
],
]
+ pyarrow_dep,
"geopandas": ["geopandas>=0.9.0, <1.0dev", "Shapely>=1.6.0, <2.0dev"],
"pandas": ["pandas>=0.23.0", "pyarrow >= 3.0.0, < 6.0dev"],
"bignumeric_type": ["pyarrow >= 3.0.0, < 6.0dev"],
"pandas": ["pandas>=0.23.0"] + pyarrow_dep,
"bignumeric_type": pyarrow_dep,
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
"opentelemetry": [
"opentelemetry-api >= 0.11b0",
Expand Down

0 comments on commit 1c2de74

Please sign in to comment.