Skip to content

Commit

Permalink
fix(ingest): add missing dep for gcs (#12505)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Jan 31, 2025
1 parent 4d5f3a5 commit 6d05971
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,8 @@
data_lake_profiling = {
"pydeequ>=1.1.0",
"pyspark~=3.5.0",
# cachetools is used by the profiling config
*cachetools_lib,
}

delta_lake = {
Expand Down Expand Up @@ -485,9 +487,9 @@
| classification_lib
| {"db-dtypes"} # Pandas extension data types
| cachetools_lib,
"s3": {*s3_base, *data_lake_profiling, *cachetools_lib},
"s3": {*s3_base, *data_lake_profiling},
"gcs": {*s3_base, *data_lake_profiling},
"abs": {*abs_base, *data_lake_profiling, *cachetools_lib},
"abs": {*abs_base, *data_lake_profiling},
"sagemaker": aws_common,
"salesforce": {"simple-salesforce", *cachetools_lib},
"snowflake": snowflake_common | usage_common | sqlglot_lib,
Expand Down

0 comments on commit 6d05971

Please sign in to comment.