Skip to content

Commit 772f121

Browse files
committed
Exclude fastparquet.
1 parent 690faa0 commit 772f121

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bigquery/setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@
5151
all_extras = []
5252

5353
for extra in extras:
54+
if extra == "fastparquet":
55+
# Skip fastparquet from "all" because it is redundant with pyarrow and
56+
# creates a dependency on pre-release versions of numpy. See:
57+
# https://github.com/googleapis/google-cloud-python/issues/8549
58+
continue
5459
all_extras.extend(extras[extra])
5560

5661
extras["all"] = all_extras

0 commit comments

Comments
 (0)