From f77aaf62d711a339f5628d57cb8fbc198ca0a652 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 08:31:52 +0100 Subject: [PATCH] Update numpy requirement from <1.24 to <1.27 (#186) * Update numpy requirement from <1.24 to <1.27 Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v0.2.0...v1.26.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Update .readthedocs.yaml * Update Dockerfile * Update requirements.txt * Update setup.py update moabb * Update requirements.txt update moabb * Update requirements.txt * Update setup.py --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: gcattan --- doc/requirements.txt | 6 +++--- requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/requirements.txt b/doc/requirements.txt index e4532188..c20764d2 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -1,10 +1,10 @@ -numpy<1.24 +numpy<1.27 sphinx-gallery sphinx-bootstrap_theme numpydoc cython mne[data]>=0.24 -seaborn +seaborn>=0.12.1 scikit-learn joblib pandas @@ -14,7 +14,7 @@ qiskit-ibm-provider==0.7.0 qiskit-optimization==0.5.0 qiskit-aer==0.12.2 scipy==1.11.3 -moabb>=0.4.6 +moabb>=1.0.0 pyriemann==0.5 docplex>=2.21.207 firebase_admin==6.2.0 diff --git a/requirements.txt b/requirements.txt index a73a9572..a33dae03 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -numpy<1.24 +numpy<1.27 cython git+https://github.com/pyRiemann/pyRiemann#egg=pyriemann qiskit_machine_learning==0.6.1 diff --git a/setup.py b/setup.py index df60e186..20db0416 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ platforms='any', python_requires=">=3.9", install_requires=[ - 'numpy<1.24', + 'numpy<1.27', 'cython', 'pyriemann==0.5', 'qiskit_machine_learning==0.6.1', @@ -47,7 +47,7 @@ 'firebase_admin==6.2.0', 'tqdm' ], - extras_require={'docs': ['sphinx-gallery', 'sphinx-bootstrap_theme', 'numpydoc', 'mne', 'seaborn', 'moabb>=0.4.6'], + extras_require={'docs': ['sphinx-gallery', 'sphinx-bootstrap_theme', 'numpydoc', 'mne', 'seaborn>=0.12.1', 'moabb>=1.0.0'], 'tests': ['pytest', 'seaborn', 'flake8', 'mne', 'pooch'], # GPU optimization not available on all platform. # See https://github.com/Qiskit/qiskit-aer/issues/929#issuecomment-691716936