From b4d63bd95148f77a1ff924d570e2a0ca1cf7102b Mon Sep 17 00:00:00 2001 From: Ayush Shah Date: Tue, 25 Jan 2022 11:58:10 +0530 Subject: [PATCH] Fix: Typo in setting up pyarrow dependency (#2398) --- ingestion/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestion/setup.py b/ingestion/setup.py index 625904a3087..28f1a0389ba 100644 --- a/ingestion/setup.py +++ b/ingestion/setup.py @@ -62,7 +62,7 @@ base_plugins = { plugins: Dict[str, Set[str]] = { "amundsen": {"neo4j~=4.4.0"}, "athena": {"PyAthena[SQLAlchemy]"}, - "bigquery": {"sqlalchemy-bigquery==1.2.2", "pyarrow-6.0.1"}, + "bigquery": {"sqlalchemy-bigquery==1.2.2", "pyarrow~=6.0.1"}, "bigquery-usage": {"google-cloud-logging", "cachetools"}, # "docker": {"docker==5.0.3"}, "docker": {"python_on_whales==0.34.0"},