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
12 changes: 8 additions & 4 deletions adapters/postgres/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ dependencies = [
# newest. This adapter subclasses the contract's WarehouseAdapter port
# directly, so the pair must stay the tested one.
"continuo-engine-contract==0.7.2",
"psycopg2-binary==2.9.11",
"pyarrow==25.0.0",
"psycopg2-binary==2.9.12",
"pyarrow==25.0.1",
]
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -27,11 +27,11 @@ postgres = "continuo_python_runtime_postgres.adapter:PostgresAdapter"

[dependency-groups]
dev = [
"ruff==0.3.0",
"ruff==0.16.3",
"mypy==2.3.1",
]
test = [
"pytest==9.0.3",
"pytest==9.1.1",
"pytest-cov==7.1.0",
]

Expand All @@ -45,6 +45,10 @@ packages = ["continuo_python_runtime_postgres"]
[tool.ruff]
target-version = "py312"

[tool.ruff.lint]
# Kept in lockstep with the root pyproject's select — see the note there.
select = ["E4", "E7", "E9", "F"]

[tool.mypy]
python_version = "3.14"
strict = false
Expand Down
10 changes: 7 additions & 3 deletions adapters/trino/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
# directly, so the pair must stay the tested one.
"continuo-engine-contract==0.7.2",
"trino==0.338.0",
"pyarrow==25.0.0",
"pyarrow==25.0.1",
]
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -27,11 +27,11 @@ trino = "continuo_python_runtime_trino.adapter:TrinoAdapter"

[dependency-groups]
dev = [
"ruff==0.3.0",
"ruff==0.16.3",
"mypy==2.3.1",
]
test = [
"pytest==9.0.3",
"pytest==9.1.1",
"pytest-cov==7.1.0",
]

Expand All @@ -45,6 +45,10 @@ packages = ["continuo_python_runtime_trino"]
[tool.ruff]
target-version = "py312"

[tool.ruff.lint]
# Kept in lockstep with the root pyproject's select — see the note there.
select = ["E4", "E7", "E9", "F"]

[tool.mypy]
python_version = "3.14"
strict = false
Expand Down
2 changes: 1 addition & 1 deletion contract/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ readme = "README.md"
requires-python = ">= 3.14"
license = "Apache-2.0"
license-files = ["LICENSE", "NOTICE"]
dependencies = ["sqlglot==30.15.0"]
dependencies = ["sqlglot==30.17.0"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.14",
Expand Down
21 changes: 15 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ dependencies = [
# contract version never exists without a new runtime version to match it;
# an exact pin therefore costs nothing and keeps the tested pair together.
"continuo-engine-contract==0.7.2",
"boto3==1.43.59",
"pyarrow==25.0.0",
"boto3==1.43.74",
"pyarrow==25.0.1",
"PyYAML==6.0.3",
# Pinned in lockstep with continuo-engine-contract's OWN sqlglot pin
# (currently ==30.15.0) -- bump this whenever that pin moves.
# (currently ==30.17.0) -- bump this whenever that pin moves.
# continuo_python_runtime/contract/loader.py imports sqlglot.errors
# directly to catch TokenError, which escapes
# continuo_engine_contract.sql.ensure_single_read uncaught despite
Expand All @@ -33,7 +33,7 @@ dependencies = [
# parser's own ParseError handling ever runs). Once that contract bug is
# fixed upstream, this direct import -- and this explicit pin, since
# sqlglot would then again be needed only transitively -- can be dropped.
"sqlglot==30.15.0",
"sqlglot==30.17.0",
]
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -45,8 +45,8 @@ classifiers = [
continuo-runtime = "continuo_python_runtime.cli:main"

[dependency-groups]
dev = ["ruff==0.3.0", "mypy==2.3.1", "types-PyYAML==6.0.12.20250915"]
test = ["pytest==9.0.3", "pytest-cov==7.1.0"]
dev = ["ruff==0.16.3", "mypy==2.3.1", "types-PyYAML==6.0.12.20250915"]
test = ["pytest==9.1.1", "pytest-cov==7.1.0"]

[build-system]
requires = ["hatchling"]
Expand All @@ -58,6 +58,15 @@ packages = ["continuo_python_runtime"]
[tool.ruff]
target-version = "py312"

[tool.ruff.lint]
# Pin the rule set ruff enforced by default through 0.3.0. Ruff's default
# `select` widened enormously in later releases (0.16 enables 400+ rules by
# default), so an unpinned bump silently switches on hundreds of new rules —
# including behavior-changing ones (e.g. TRY004 wants TypeError over
# ValueError). Adopting more rules should be a deliberate change here, not a
# side effect of a dependency bump.
select = ["E4", "E7", "E9", "F"]

[tool.mypy]
python_version = "3.14"
strict = false
Expand Down
Loading
Loading