Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ingest): add missing dep for gcs
Browse files Browse the repository at this point in the history
Fixes a regression from #12416
hsheth2 committed Jan 30, 2025

Verified

This commit was signed with the committer’s verified signature.
trobanga Daniel Hahne
1 parent a155470 commit 8986502
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
@@ -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 = {
@@ -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,

0 comments on commit 8986502

Please sign in to comment.