Skip to content

Commit 412e030

Browse files
Bump dqlite-dbapi dependency floor to 0.1.3
Parity with the companion bumps across the stack. Also update the test that pins the module's ``__all__`` to include the ``__version__`` re-export landed this cycle. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 8bf1f5e commit 412e030

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
"Topic :: Database :: Front-Ends",
2424
"Typing :: Typed",
2525
]
26-
dependencies = ["dqlite-dbapi>=0.1.0", "sqlalchemy>=2.0,<3.0"]
26+
dependencies = ["dqlite-dbapi>=0.1.3", "sqlalchemy>=2.0,<3.0"]
2727

2828
[tool.uv.sources]
2929
dqlite-dbapi = { path = "../python-dqlite-dbapi", editable = true }

tests/test_public_api.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313

1414

1515
def test_package_all_is_minimal() -> None:
16-
assert set(sqlalchemydqlite.__all__) == {"DqliteDialect"}
16+
# ``__version__`` is a PEP 396 public attribute, re-exported via
17+
# ``__all__`` for parity with the other dqlite packages.
18+
assert set(sqlalchemydqlite.__all__) == {"DqliteDialect", "__version__"}
1719

1820

1921
def test_base_all_is_minimal() -> None:

0 commit comments

Comments
 (0)