Skip to content

Commit e24160e

Browse files
authored
chore: add unidecode dep to python CDK (#628)
1 parent 8659a21 commit e24160e

File tree

2 files changed

+57
-1
lines changed

2 files changed

+57
-1
lines changed

poetry.lock

Lines changed: 55 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ xmltodict = ">=0.13,<0.15"
9191
anyascii = "^0.3.2"
9292
whenever = "^0.6.16"
9393
setuptools = "^80.9.0" # Some connectors depend on this as an undeclared transitive dependency (e.g. source-shopify)
94+
unidecode = "^1.3.8" # IMPORTANT: DO NOT USE. Added to support source-google-sheets migration. This dep is deprecated in favour of `anyascii` and is slated for removal.
9495
dateparser = "^1.2.2"
9596

9697
[tool.poetry.group.dev.dependencies]
@@ -230,6 +231,7 @@ DEP002 = [
230231
"cryptography", # Constrained as transitive dependency due to a bug in newer versions
231232
"google-cloud-secret-manager", # Deptry can't detect that `google.cloud.secretmanager_v1` uses this package
232233
"dateparser", # Used by `source-amazon-seller-partner` for parsing string-formatted dates w/ timezone abbreviations. May add to `AirbyteDateTime`.
234+
"unidecode", # IMPORTANT: DO NOT USE. Added to support source-google-sheets migration. This dep is deprecated in favour of `anyascii` and is slated for removal.
233235

234236
# TODO: Remove these dependencies if not needed:
235237
"avro", # Only imported in `unit_tests` code

0 commit comments

Comments
 (0)