Skip to content

Commit d66713e

Browse files
hsheth2esteban
authored andcommitted
fix(ingest): restrict duckdb dep on old python versions (#13605)
1 parent 7f8780c commit d66713e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

metadata-ingestion/setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,9 @@
383383
"datahub-rest": rest_common,
384384
"sync-file-emitter": {"filelock"},
385385
"datahub-lite": {
386-
"duckdb",
386+
"duckdb>=1.0.0",
387+
# duckdb dropped support for python 3.8 in 1.3.0
388+
"duckdb<1.3.0; python_version < '3.9'",
387389
"fastapi",
388390
"uvicorn",
389391
},

0 commit comments

Comments
 (0)