Skip to content

Commit

Permalink
fix: Fix duckdb test error
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyinc committed Mar 25, 2024
1 parent f00f0c7 commit 8fa129d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,16 +390,15 @@ def core_requires():
"jinja2",
"uvicorn",
"shortuuid",
# change from fixed version 2.0.22 to variable version, because other
# dependencies are >=1.4, such as pydoris is <2
"SQLAlchemy>=1.4,<3",
# 2.0.29 not support duckdb now
"SQLAlchemy>=2.0.25,<2.0.29",
# for cache
"msgpack",
# for cache
# TODO: pympler has not been updated for a long time and needs to
# find a new toolkit.
"pympler",
"duckdb==0.8.1",
"duckdb",
"duckdb-engine",
# lightweight python library for scheduling jobs
"schedule",
Expand Down Expand Up @@ -570,6 +569,7 @@ def all_datasource_requires():
setup_spec.extras["datasource_all"] = setup_spec.extras["datasource"] + [
"pyspark",
"pymssql",
# pydoris is too old, we should find a new package to replace it.
"pydoris>=1.0.2,<2.0.0",
"clickhouse-connect",
"pyhive",
Expand Down

0 comments on commit 8fa129d

Please sign in to comment.