Skip to content

Commit ed9a60d

Browse files
committed
officially transfer depandancy to obspy 1.0.0
1 parent bcafaa5 commit ed9a60d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ before_install:
1919
- conda create -n condaenv python=$TRAVIS_PYTHON_VERSION
2020
- conda install -n condaenv pip
2121
- source activate condaenv
22-
- conda install -c obspy obspy=0.10.2
22+
- conda install -c obspy obspy
2323
- conda install python=$TRAVIS_PYTHON_VERSION pyyaml
2424
- conda install python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib nose pytest flake8 sphinx lxml sqlalchemy mock future yaml
2525
- pip install --user geographiclib

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ Wenjie: If you are new to python, [anaconda](https://www.continuum.io/downloads)
2323

2424
2. install obspy using anaconda.
2525
```
26-
conda install -c obspy obspy=0.10.2
26+
conda install -c obspy obspy
2727
```
28-
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. I currently keep the old version. Going to update it very soon.
28+
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.
2929

3030
Or install from source code:
3131
```

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ Seismic tomography toolkits, includes signal processing, window selection and ad
66
For installation, please refer to [**INSTALL.md**](https://github.com/wjlei1990/pytomo3d/blob/master/INSTALL.md)
77

88
**Note**
9-
1. Please intall obspy version before 1.0.0. Since 1.0.0 has many keys updates
10-
that change some module paths.
9+
1. Current version of pytomo3d now fully transfer to **obspy1.**.
10+
11+
Please make sure you update your obspy to at least 1.0.0 before running the test.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def run_tests(self):
4747
"seismology", "tomography", "adjoint", "signal", "inversion", "window"
4848
],
4949
install_requires=[
50-
"numpy", "obspy>=0.10.2", "flake8", "pytest", "nose", "future>=0.14.1",
50+
"numpy", "obspy>=1.0.0", "flake8", "pytest", "nose", "future>=0.14.1",
5151
"pyflex", "pyadjoint", "geographiclib"
5252
],
5353
extras_require={

0 commit comments

Comments
 (0)