From dbfd9f47a926e9c87f5c093c49da53d6c013352d Mon Sep 17 00:00:00 2001 From: JoschD <26184899+JoschD@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:52:45 +0100 Subject: [PATCH] version updates --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 676528d..a227ccf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,9 +47,10 @@ classifiers = [ ] dependencies = [ - "numpy>=1.19", + "numpy >= 1.24, < 2.0; python_version < '3.10'", # first pytables compatible with numpy 2 is 3.10 but does not support python 3.9 + "numpy >= 1.24; python_version >= '3.10'", # otherwise we can use numpy 2 as on python 3.10 there is a pytables which is ok with it"numpy>=1.19", "pandas>=1.0,!=1.2", # not 1.2 because of https://github.com/pandas-dev/pandas/issues/39872 - "tfs-pandas>=3.0.2", + "tfs-pandas>=3.8", ] [project.optional-dependencies]