From fdbd2755d75e9a877f324a0cb0e46daaa2b4ae6a Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Thu, 12 Sep 2024 12:05:35 +0100 Subject: [PATCH] setup.py: Avoid polars 1.7.0 Force <1.7.0 until some issues are figured out: * problem on readthedocs * categorical issue: https://github.com/pola-rs/polars/issues/18717 --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cb8d03f20..fc25979ca 100755 --- a/setup.py +++ b/setup.py @@ -136,7 +136,10 @@ if __name__ == "__main__": "holoviews >= 1.17", "panel", "colorcet", - "polars >= 1.0.0, < 2.0.0", + # Force <1.7.0 until some issues are figured out: + # * problem on readthedocs + # * categorical issue: https://github.com/pola-rs/polars/issues/18717 + "polars >= 1.0.0, < 2.0.0, < 1.7.0", # Pandas >= 1.0.0 has support for new nullable dtypes # Pandas 1.2.0 has broken barplots: # https://github.com/pandas-dev/pandas/issues/38947 -- GitLab