MINOR: presidio sample data lib fix (#21295)

This commit is contained in:
harshsoni2024 2025-05-20 17:40:44 +05:30 committed by GitHub
parent d09907b7ee
commit 176b731337
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -68,6 +68,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 = {
@ -338,6 +339,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": {},
@ -353,8 +355,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 = {
@ -463,6 +466,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
} }