From 45084ba5800895999a4e94475ff86c8db134122d Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Fri, 20 Sep 2024 12:09:19 +0100 Subject: [PATCH] setup.py: Avoid broken polars version This issue turned out to not be fixed in 1.7.1, so stay on 1.6.* releases: https://github.com/pola-rs/polars/issues/18719 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8d67b6544..07f03ee9c 100755 --- a/setup.py +++ b/setup.py @@ -138,7 +138,7 @@ if __name__ == "__main__": "colorcet", # Avoid: # polars 1.7.0: https://github.com/pola-rs/polars/issues/18719 - "polars >= 1.0.0, < 2.0.0, != 1.7.0", + "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