You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyproject.toml
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ click = "^8.1.8"
39
39
dpath = "^2.1.6"
40
40
dunamai = "^1.22.0"
41
41
genson = "1.3.0"
42
+
google-cloud-secret-manager = { version = "^2.17.0", optional = true } # 'dev' extra
42
43
isodate = "~0.6.1"
43
44
Jinja2 = "~3.1.2"
44
45
jsonref = "~0.2"
@@ -90,8 +91,6 @@ whenever = "^0.6.16"
90
91
setuptools = "^80.9.0"# Some connectors depend on this as an undeclared transitive dependency (e.g. source-shopify)
91
92
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.
92
93
dateparser = "^1.2.2"
93
-
# Optional dependencies for WASM compatibility
94
-
google-cloud-secret-manager = { version = "^2.17.0", optional = true }
95
94
96
95
[tool.poetry.group.dev.dependencies]
97
96
freezegun = "*"
@@ -228,7 +227,7 @@ DEP001 = [
228
227
DEP002 = [
229
228
"setuptools", # Incorrectly used without declaring in some connectors (e.g. source-shopify)
230
229
"cryptography", # Constrained as transitive dependency due to a bug in newer versions
231
-
"google-cloud-secret-manager", # Deptry can't detect that `google.cloud.secretmanager_v1` uses this package - now optional dependency
230
+
"google-cloud-secret-manager", # Deptry can't detect that `google.cloud.secretmanager_v1` uses this package - optional 'dev' dependency
232
231
"dateparser", # Used by `source-amazon-seller-partner` for parsing string-formatted dates w/ timezone abbreviations. May add to `AirbyteDateTime`.
233
232
"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.
0 commit comments