Skip to content

Commit

Permalink
make requirement.txt and setup.py the same with master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
zhong-yy committed Dec 6, 2024
1 parent c261905 commit c041f39
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Note that this file is not explicitly used by setup.py for EQcorrscan.
numpy>=1.12
numpy>=1.22.2
matplotlib>=1.3.0
scipy>=0.18,<1.9.0 # Pinned due to scipy/obspy hanning renaming
scipy>=1.10.0
bottleneck
obspy>=1.3.0 # ObsPy <1.3.0 is incompatible with numpy >= 1.22: https://github.com/obspy/obspy/issues/2912
h5py
Expand All @@ -14,3 +14,7 @@ pytest-mpl
codecov
pillow>=10.0.1 # not directly required, pinned by Snyk to avoid a vulnerability
setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
requests>=2.32.2 # not directly required, pinned by Snyk to avoid a vulnerability
fonttools>=4.43.0 # not directly required, pinned by Snyk to avoid a vulnerability
certifi>=2023.7.22 # not directly required, pinned by Snyk to avoid a vulnerability
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def setup_package():
build_requires = ['numpy>=1.6, <2.0']

if not READ_THE_DOCS:
install_requires = ['matplotlib>=1.3.0', 'scipy>=0.18,<1.9.0',
install_requires = ['matplotlib>=1.3.0', 'scipy>=1.10',
'bottleneck', 'obspy>=1.0.3', 'numpy>=1.12',
'h5py']
else:
Expand Down

0 comments on commit c041f39

Please sign in to comment.