Skip to content

Commit

Permalink
BLD/REL: Pin pandas to ">= 1, < 2"
Browse files Browse the repository at this point in the history
Ideally we'd support pandas 2+, but that's gonna require updating
altair (biocore#216) which is a whole other can of worms
  • Loading branch information
fedarko committed Jun 22, 2023
1 parent 46dc574 commit 3a6a80c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@
"click",
"numpy >= 1.12.0",
# SparseDataFrame is dead, long live DataFrame
"pandas >= 1",
# ALSO: Our pinned version of Altair doesn't seem to support pandas 2,
# so we'll limit pandas to this range for the time being.
"pandas >= 1, < 2",
"scikit-bio > 0.5.3",
# Due to scikit-bio problems -- pinning to < 1.9.0. Should be hopefully
# fixed when a new scikit-bio release comes out.
Expand Down

0 comments on commit 3a6a80c

Please sign in to comment.