From eed180c10ffc4f9b40a72a70c3a0355a29d4a751 Mon Sep 17 00:00:00 2001 From: Martijn Visser Date: Tue, 12 Sep 2023 14:42:42 +0200 Subject: [PATCH] pandas exclude version 2.1.0 A regression breaks writing timestamps to GeoPackage for us: https://github.com/pandas-dev/pandas/issues/54877 --- environment.yml | 2 +- python/ribasim/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/environment.yml b/environment.yml index 2e3664515..d6283cc17 100644 --- a/environment.yml +++ b/environment.yml @@ -12,7 +12,7 @@ dependencies: - jupyterlab - matplotlib - mypy - - pandas + - pandas!=2.1.0 - pandas-stubs - pandera - pip diff --git a/python/ribasim/pyproject.toml b/python/ribasim/pyproject.toml index 3e64ed91d..9e7817201 100644 --- a/python/ribasim/pyproject.toml +++ b/python/ribasim/pyproject.toml @@ -21,7 +21,7 @@ requires-python = ">=3.9" dependencies = [ "geopandas", "matplotlib", - "pandas", + "pandas != 2.1.0", "pandera != 0.16.0", "pyarrow", "pydantic ~= 1.0",