Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 97ee6ec

Browse filesBrowse files
authored
fix: avoid overly strict dependency on pyarrow 3.x (#564)
Exclude "bignumeric_type" from the "all" extra
1 parent 84e646e commit 97ee6ec
Copy full SHA for 97ee6ec

File tree

Expand file treeCollapse file tree

1 file changed

+6
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+6
-1
lines changed

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+6-1Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"grpcio >= 1.32.0, < 2.0dev",
4949
"pyarrow >= 1.0.0, < 4.0dev",
5050
],
51-
"pandas": ["pandas>=0.23.0", "pyarrow >= 1.0.0, < 4.0dev",],
51+
"pandas": ["pandas>=0.23.0", "pyarrow >= 1.0.0, < 4.0dev"],
5252
"bignumeric_type": ["pyarrow >= 3.0.0, < 4.0dev"],
5353
"tqdm": ["tqdm >= 4.7.4, <5.0.0dev"],
5454
"opentelemetry": [
@@ -61,6 +61,11 @@
6161
all_extras = []
6262

6363
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
6469
all_extras.extend(extras[extra])
6570

6671
extras["all"] = all_extras

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.