Skip to content

Commit 11a2046

Browse files
committed
pytomo3d requires an old version of obspy
1 parent 43913cf commit 11a2046

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

INSTALL.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Wenjie: If you are new to python, [anaconda](https://www.continuum.io/downloads)
2424

2525
2. install obspy using anaconda.
2626
```
27-
conda install -c obspy obspy
27+
conda install -c obspy obspy=1.0.3
2828
```
2929
Recently, obspy group has a big upgrade for obspy, which boost the version number from 0.10.x to 1.0.0. A lot of kernel functions has changed its module path. The recent version of pytomo3d also now no longer supports older version of obspy. Please upgrade your obspy version to at least 1.0.0.
3030

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def run_tests(self):
4848
"seismology", "tomography", "adjoint", "signal", "inversion", "window"
4949
],
5050
install_requires=[
51-
"numpy", "obspy>=1.0.0", "flake8>=3.0", "pytest", "nose",
51+
"numpy", "obspy==1.0.3", "flake8>=3.0", "pytest", "nose",
5252
"future>=0.14.1", "pyflex", "pyadjoint", "geographiclib"
5353
],
5454
extras_require={

0 commit comments

Comments
 (0)