MINOR: presidio sample data lib fix (#21295)

This commit is contained in:
harshsoni2024 2025-05-20 17:40:44 +05:30 committed by harshsoni2024
parent 0ac97e35da
commit af88452bb1

View File

@ -66,6 +66,7 @@ VERSIONS = {
"google-cloud-bigtable": "google-cloud-bigtable>=2.0.0", "google-cloud-bigtable": "google-cloud-bigtable>=2.0.0",
"pyathena": "pyathena~=3.0", "pyathena": "pyathena~=3.0",
"sqlalchemy-bigquery": "sqlalchemy-bigquery>=1.2.2", "sqlalchemy-bigquery": "sqlalchemy-bigquery>=1.2.2",
"presidio-analyzer": "presidio-analyzer==2.2.355",
} }
COMMONS = { COMMONS = {
@ -335,6 +336,7 @@ plugins: Dict[str, Set[str]] = {
VERSIONS["avro"], VERSIONS["avro"],
VERSIONS["grpc-tools"], VERSIONS["grpc-tools"],
VERSIONS["sqlalchemy-bigquery"], VERSIONS["sqlalchemy-bigquery"],
VERSIONS["presidio-analyzer"],
}, },
"sap-hana": {"hdbcli", "sqlalchemy-hana"}, "sap-hana": {"hdbcli", "sqlalchemy-hana"},
"sas": {}, "sas": {},
@ -350,8 +352,9 @@ plugins: Dict[str, Set[str]] = {
VERSIONS["spacy"], VERSIONS["spacy"],
VERSIONS["pandas"], VERSIONS["pandas"],
VERSIONS["numpy"], VERSIONS["numpy"],
"presidio-analyzer==2.2.355", VERSIONS["presidio-analyzer"],
}, },
"presidio-analyzer": {VERSIONS["presidio-analyzer"]},
} }
dev = { dev = {
@ -457,6 +460,7 @@ playwright_dependencies = {
*plugins["airflow"], *plugins["airflow"],
*plugins["datalake-s3"], *plugins["datalake-s3"],
*plugins["dbt"], *plugins["dbt"],
*plugins["presidio-analyzer"],
*e2e_test *e2e_test
# Add other plugins as needed for Playwright tests # Add other plugins as needed for Playwright tests
} }