Skip to content

Commit

Permalink
dev: pin upper bound on pandas to avoid duckdb error
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Sep 18, 2023
1 parent f0fafb7 commit c797c04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
url='https://github.com/machow/siuba',
keywords=['package', ],
install_requires=[
"pandas>=0.24.0",
"pandas>=0.24.0,<2.1.0",
"numpy>=1.12.0",
"SQLAlchemy>=1.2.19",
"PyYAML>=3.0.0"
Expand All @@ -41,7 +41,7 @@
"duckdb_engine",
# duckdb 0.8.0 has a bug which always errors for pandas v2+
# it's been fixed, but we need to pin until duckdb v0.9.0
"duckdb<0.8.1",
"duckdb",
],
"docs": [
"plotnine",
Expand Down

0 comments on commit c797c04

Please sign in to comment.