From d367a4b8df0d3cd4da91204475726893a7aead47 Mon Sep 17 00:00:00 2001 From: Adam Ormondroyd <52655393+AdamOrmondroyd@users.noreply.github.com> Date: Wed, 3 Jul 2024 08:28:26 +0100 Subject: [PATCH] Restrict scipy and numpy versions (#390) * restrict scipy and numpy versions * bump version to 2.8.14 --- README.rst | 2 +- anesthetic/_version.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index f6e4a3a2..5e4e2096 100644 --- a/README.rst +++ b/README.rst @@ -2,7 +2,7 @@ anesthetic: nested sampling post-processing =========================================== :Authors: Will Handley and Lukas Hergt -:Version: 2.8.13 +:Version: 2.8.14 :Homepage: https://github.com/handley-lab/anesthetic :Documentation: http://anesthetic.readthedocs.io/ diff --git a/anesthetic/_version.py b/anesthetic/_version.py index 8651a139..965b8c85 100644 --- a/anesthetic/_version.py +++ b/anesthetic/_version.py @@ -1 +1 @@ -__version__ = '2.8.13' +__version__ = '2.8.14' diff --git a/pyproject.toml b/pyproject.toml index 8b6cd76c..61a00b37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,8 +32,8 @@ readme = "README.rst" license = {file = "LICENSE"} requires-python = ">=3.8" dependencies = [ - "scipy", - "numpy", + "scipy<2.0.0", + "numpy<2.0.0", "pandas~=2.2.0", "matplotlib>=3.6.1,<3.10.0", ]