From 7c96c3f5fed9899039dfe8dd956ba925228f5235 Mon Sep 17 00:00:00 2001 From: Philipp Heinrich Date: Thu, 27 Feb 2025 13:40:20 +0100 Subject: [PATCH] update dependencies --- requirements-dev.txt | 8 ++++---- requirements.txt | 2 +- setup.py | 5 +++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 640d2a1..d883269 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -2,7 +2,7 @@ pytest==7.4.0 pylint==2.17.5 pytest-cov==4.1.0 -twine==4.0.2 -setuptools==68.0.0 -cython==3.0.0 -wheel +wheel==0.45.1 +twine==6.1.0 +setuptools==75.8.2 +cython==3.0.12 diff --git a/requirements.txt b/requirements.txt index 0ce9e9a..e2ca3cb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ pandas>=2.0,<3.0 -numpy>=1.24.0,<2.0 +numpy>=2.0,3.0 scipy>=1.10.0,<2.0 rbo>=0.1.3,<0.2 diff --git a/setup.py b/setup.py index 0d544e1..388ce3e 100644 --- a/setup.py +++ b/setup.py @@ -11,10 +11,11 @@ EMAIL = 'philipp.heinrich@fau.de' AUTHOR = 'Philipp Heinrich & Markus Opolka' -REQUIRES_PYTHON = '>=3.8' +REQUIRES_PYTHON = '>=3.9' REQUIRED = [ 'wheel', 'pandas>=2.0,<3.0', + 'numpy>=2.0,<3.0', 'scipy>=1.10.0,<2.0', 'rbo>=0.1.3,<0.2' ] @@ -98,11 +99,11 @@ def run(self): 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Cython', ], )