Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update numpy requirement from <1.24 to <1.27 #186

Merged
merged 9 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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
Expand Down