Skip to content
Snippets Groups Projects
Commit 6abd7299 authored by Lan Dam's avatar Lan Dam
Browse files

Add constraint less than 2.0 for numpy's version while waiting for new obspy's release

parent 16751350
No related branches found
No related tags found
1 merge request!333Add constraint less than 2.0 for numpy's version while waiting for new obspy's release
...@@ -15,7 +15,7 @@ requirements: ...@@ -15,7 +15,7 @@ requirements:
- pip - pip
run: run:
- python >=3.9 - python >=3.9
- numpy>=1.23.0 - numpy >=1.23.0,<2.0
- obspy >=1.3.0 - obspy >=1.3.0
- PySide6>=6.5.2 - PySide6>=6.5.2
- matplotlib>=3.5.0 - matplotlib>=3.5.0
......
...@@ -32,7 +32,7 @@ setup( ...@@ -32,7 +32,7 @@ setup(
], ],
}, },
install_requires=[ install_requires=[
'numpy>=1.23.0', 'numpy >=1.23.0,<2.0',
'obspy>=1.3.0', 'obspy>=1.3.0',
'PySide6>=6.5.2', 'PySide6>=6.5.2',
'matplotlib>=3.5.0', 'matplotlib>=3.5.0',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment