From f53f14948560f3cae3a1cbe9a291ac16b1c779de Mon Sep 17 00:00:00 2001 From: orioncohen Date: Mon, 12 Feb 2024 12:33:49 -0800 Subject: [PATCH] pinned pandas to 2.2 because pandas=2.1 causes a mysterious error in the residence time calculations. --- pyproject.toml | 2 +- requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d7a9f03..3b3bdd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ keywords = [ dependencies = [ 'numpy>=1.20.0', - 'pandas', + 'pandas>=2.2', 'mdanalysis>=2.0.0', 'pytest', 'matplotlib', diff --git a/requirements.txt b/requirements.txt index 7ba5ec2..cc22965 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ setuptools numpy>=1.20.0 -pandas +pandas>=2.2 mdanalysis>=2.0.0 pytest pathlib