From b4aeaa2abd641f4e9ad764fe91d4b90611c944a0 Mon Sep 17 00:00:00 2001 From: ClaraBuettner Date: Mon, 26 Feb 2024 09:26:19 +0100 Subject: [PATCH] Limit pandas version to < 2.2 In version 2.2.0 the driver used in the read_sql function was changed. Our code is so far not compatible to these changes, which is why I downgrade to an older pandas version. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 62f71aac..f108aad3 100755 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ def read(*names, **kwargs): "loguru", "matplotlib >= 3.0.3", "oedialect", + "pandas < 2.2", "pypsa == 0.26.2", "rtree", "saio",