We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 690faa0 commit 772f121Copy full SHA for 772f121
bigquery/setup.py
@@ -51,6 +51,11 @@
51
all_extras = []
52
53
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
59
all_extras.extend(extras[extra])
60
61
extras["all"] = all_extras
0 commit comments