From ca79b9016ab99b4a76df882fdbb5d49da13106af Mon Sep 17 00:00:00 2001 From: Bru Date: Fri, 27 Sep 2024 16:17:38 +0200 Subject: [PATCH] FIX: unpinning major version pandas and numpy (#652) * FIX: unpinning major version * DOC: updating whats_new.rst --- docs/source/whats_new.rst | 2 ++ pyproject.toml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/whats_new.rst b/docs/source/whats_new.rst index 2ae601cc8..660b5bf24 100644 --- a/docs/source/whats_new.rst +++ b/docs/source/whats_new.rst @@ -22,6 +22,7 @@ Bugs ~~~~ - Fix Stieger2021 dataset bugs (:gh:`651` by `Martin Wimpff`_) +- Unpinning major version Scikit-learn and numpy (:gh:`652` by `Bruno Aristimunha`_) API changes ~~~~~~~~~~~ @@ -463,6 +464,7 @@ Bugs API changes ~~~~~~~~~~~ - None +.. _Martin Wimpff: https://github.com/martinwimpff .. _Reinmar Kobler: https://github.com/rkobler .. _Gabriel Schwartz: https://github.com/Kaos9001 .. _Sara Sedlar: https://github.com/Sara04 diff --git a/pyproject.toml b/pyproject.toml index 46affcada..88f69868b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,10 +13,10 @@ license = "BSD-3-Clause" [tool.poetry.dependencies] python = ">=3.9,<3.13" -numpy = "^1.22" +numpy = ">=1.22" scipy = "^1.9.3" mne = "^1.7.0" -pandas = "^1.5.2" +pandas = ">=1.5.2" h5py = "^3.10.0" scikit-learn = ">=1.4.2" matplotlib = "^3.6.2"