From a1a3c38bb6e55c3dfaed39949cda86963b039eb7 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Mon, 1 Jul 2024 13:22:24 +0100 Subject: [PATCH] setup.py: Require polars < 1.0.0 Temporary version bound to leave a bit of time to migrate the code. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a68c383cd..d3aa27d77 100755 --- a/setup.py +++ b/setup.py @@ -137,7 +137,7 @@ if __name__ == "__main__": "panel", "colorcet", # 0.20.28 has this issue: https://github.com/pola-rs/polars/issues/16442 - "polars >= 0.20.16, != 0.20.28", + "polars >= 0.20.16, != 0.20.28, < 1.0.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