From 17544645c7ae78b9ca261e1500d53b8b8c1a7a55 Mon Sep 17 00:00:00 2001 From: Adam Ormondroyd <52655393+AdamOrmondroyd@users.noreply.github.com> Date: Tue, 12 Sep 2023 15:06:31 +0200 Subject: [PATCH] restrict to `pandas2.0` (#337) * restrict pandas to 2.0 * version bump --- README.rst | 2 +- anesthetic/_version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 04cfefd9..bc0a7b83 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ anesthetic: nested sampling post-processing =========================================== :Authors: Will Handley and Lukas Hergt -:Version: 2.3.0 +:Version: 2.3.1 :Homepage: https://github.com/handley-lab/anesthetic :Documentation: http://anesthetic.readthedocs.io/ diff --git a/anesthetic/_version.py b/anesthetic/_version.py index 82190396..1c4ddd35 100644 --- a/anesthetic/_version.py +++ b/anesthetic/_version.py @@ -1 +1 @@ -__version__ = '2.3.0' +__version__ = '2.3.1' diff --git a/pyproject.toml b/pyproject.toml index d8810c5c..bae21d34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ requires-python = ">=3.8" dependencies = [ "scipy", "numpy", - "pandas>=2.0.0", + "pandas~=2.0.0", "matplotlib>=3.6.1", ] classifiers = [