Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions deploy/seed/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,13 @@ dependencies = [

[project.optional-dependencies]
dev = [
"mypy==2.1.0",
"ruff==0.15.16",
# dbt-core 1.12 raised its own cap to pathspec<1.1 (dbt-labs/dbt-core#12385),
# so a current mypy resolves again. Below 2.0 it would pull pathspec<1.0 and
# drag dbt-core back to the 1.11 line.
"mypy>=2,<3",
# Same pin as the ruff-pre-commit hook in .pre-commit-config.yaml, so a local
# run and the commit hook cannot reach different verdicts.
"ruff==0.15.21",
"types-PyMySQL==1.1.0.20260518",
]

Expand Down
6 changes: 6 additions & 0 deletions src/ingestion/tests/connectors/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ exclude-newer = "7 days"
override-dependencies = [
"nltk>=3.9.3",
"langchain-core>=0.3.81",
# airbyte-cdk 6.60.x resolves cryptography 44.0.3, which carries a Bleichenbacher
# timing oracle in PKCS#1 v1.5 decryption (CVE-2026-26007) and GHSA-537c-gmf6-5ccf.
# The harness never handles a key or a TLS handshake of its own -- requests-mock
# intercepts every call before the transport -- but the CDK's connector-builder
# secret handling imports it, so the version still ships.
"cryptography>=48.0.1",
]

[tool.pytest.ini_options]
Expand Down