We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84e646e commit 97ee6ecCopy full SHA for 97ee6ec
setup.py
@@ -48,7 +48,7 @@
48
"grpcio >= 1.32.0, < 2.0dev",
49
"pyarrow >= 1.0.0, < 4.0dev",
50
],
51
- "pandas": ["pandas>=0.23.0", "pyarrow >= 1.0.0, < 4.0dev",],
+ "pandas": ["pandas>=0.23.0", "pyarrow >= 1.0.0, < 4.0dev"],
52
"bignumeric_type": ["pyarrow >= 3.0.0, < 4.0dev"],
53
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
54
"opentelemetry": [
@@ -61,6 +61,11 @@
61
all_extras = []
62
63
for extra in extras:
64
+ # Exclude this extra from all to avoid overly strict dependencies on core
65
+ # libraries such as pyarrow.
66
+ # https://github.com/googleapis/python-bigquery/issues/563
67
+ if extra in {"bignumeric_type"}:
68
+ continue
69
all_extras.extend(extras[extra])
70
71
extras["all"] = all_extras
0 commit comments