Skip to content

Commit 95edc35

Browse files
authored
Merge pull request #501 from Mause/Mause-patch-2
build: bump duckdb we type check against
2 parents 17d4de1 + 5feb9c0 commit 95edc35

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repos:
3939
hooks:
4040
- id: mypy
4141
additional_dependencies:
42-
- "duckdb==0.5.0"
42+
- "duckdb==0.6.1"
4343
- "pytest==6.2.4"
4444
- "hypothesis==6.14.1"
4545
- "sqlalchemy[mypy]"

duckdb_engine/tests/test_basic.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,8 @@ def test_config(tmp_path: Path) -> None:
326326
)
327327

328328
with raises(
329-
DBAPIError, match='Cannot execute statement of type "CREATE" (on database "test" which is attached )?in read-only mode!'
329+
DBAPIError,
330+
match='Cannot execute statement of type "CREATE" (on database "test" which is attached )?in read-only mode!',
330331
):
331332
eng.execute("create table hello2 (i int)")
332333

0 commit comments

Comments
 (0)