From e10e86ac1e6ff72b8fa4c387a5c0e6bb01f6abfc Mon Sep 17 00:00:00 2001 From: Elliana May Date: Sun, 28 Sep 2025 20:56:05 +0800 Subject: [PATCH] build: add duckdb 1.3.2 to test matrix --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 1acc26623..53db72843 100644 --- a/noxfile.py +++ b/noxfile.py @@ -24,7 +24,7 @@ def group(title: str) -> Generator[None, None, None]: # TODO: "0.5.1", "0.6.1", "0.7.1", "0.8.1" # TODO: 3.11, 3.12, 3.13 @nox.session(py=["3.9", "3.10"]) -@nox.parametrize("duckdb", ["0.9.2", "1.0.0", "1.2.2"]) +@nox.parametrize("duckdb", ["0.9.2", "1.0.0", "1.2.2", "1.3.2"]) @nox.parametrize("sqlalchemy", ["1.3", "1.4", "2.0.35"]) def tests(session: nox.Session, duckdb: str, sqlalchemy: str) -> None: tests_core(session, duckdb, sqlalchemy)