Skip to content

Commit

Permalink
Allow Pandas upper bound to be <3
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhatesz committed Oct 23, 2024
1 parent 52a7d6d commit b783f7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ def get_version() -> str:
"ray[data]>=2.5.0",
"duckdb>=0.5.0",
"pyarrow>=7.0.0",
"pandas<2.2",
"pandas<3",
],
"duckdb": SQL_DEPENDENCIES
+ [
"duckdb>=0.5.0",
"numpy",
],
"polars": ["polars"],
"ibis": SQL_DEPENDENCIES + ["ibis-framework[pandas]", "pandas<2.2"],
"ibis": SQL_DEPENDENCIES + ["ibis-framework[pandas]", "pandas<3"],
"notebook": ["notebook", "jupyterlab", "ipython>=7.10.0"],
"all": SQL_DEPENDENCIES
+ [
Expand All @@ -76,7 +76,7 @@ def get_version() -> str:
"ipython>=7.10.0",
"duckdb>=0.5.0",
"pyarrow>=6.0.1",
"pandas>=2.0.2,<2.2", # because of Ray and ibis
"pandas>=2.0.2,<3", # because of Ray and ibis
"ibis-framework[pandas]",
"polars",
],
Expand Down

0 comments on commit b783f7c

Please sign in to comment.