Skip to content
Merged

V020 #15

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
dec425f
initializing v0.2.0
paudetseis May 15, 2025
fd3a310
switching from setup to pyproject and meson
paudetseis May 15, 2025
50261f7
moving scripts inside package
paudetseis May 15, 2025
cede064
moved argument parser inside scripts
paudetseis May 15, 2025
0df545a
package cleanup
paudetseis May 15, 2025
7917184
fixed script installation
paudetseis May 15, 2025
27365e4
np.int to int
paudetseis May 15, 2025
694602a
no nan in ndval
paudetseis May 15, 2025
f14af07
update tutorial docs
paudetseis May 15, 2025
3c49825
update split_calc_auto args
paudetseis May 15, 2025
8354f90
updated script docs
paudetseis May 15, 2025
e7f01c8
update script args
paudetseis May 15, 2025
619f1e0
update install instructions in docs
paudetseis May 15, 2025
efb2435
update docs for documentation
paudetseis May 15, 2025
21c59f9
update make docs config
paudetseis May 15, 2025
d528b69
update base code
paudetseis May 15, 2025
e4da491
update docstring
paudetseis May 15, 2025
10c389e
fixed tests
paudetseis May 15, 2025
3813fc8
added zcomp in args and ascii art
paudetseis May 15, 2025
0d8eeb1
added ascii art
paudetseis May 15, 2025
65ef43e
added ascii art to scripts docs
paudetseis May 15, 2025
0802a89
added ascii art to tutorial docs
paudetseis May 15, 2025
149139c
import copy
paudetseis May 15, 2025
3b7cf9c
removed legacy localdata args in download_data
paudetseis May 15, 2025
064d962
add SDS archive functionality
paudetseis May 15, 2025
b0dd7c8
update scripts docs for local data
paudetseis May 15, 2025
1707e1b
cleaner verbosity
paudetseis May 15, 2025
ff04391
updated --local-data arg description
paudetseis May 15, 2025
6ace205
updated script docs for --local-data
paudetseis May 15, 2025
8d1ef70
updated ref to Esteve et al. (2020)
paudetseis May 16, 2025
963a421
updated tutorials docs for split_average
paudetseis May 16, 2025
ac0f30c
ghost commit
paudetseis May 16, 2025
1e7af83
remove obsolete files
paudetseis May 16, 2025
c9b88c2
add deploy workflow
paudetseis May 16, 2025
bcff84f
remove tests from GH actions: problem with qtagg
paudetseis May 16, 2025
30901c7
specify zcomp when initializing Split object
paudetseis May 16, 2025
4a2241f
more verbose scripts and fixed stkeys
paudetseis May 16, 2025
84f201b
added verbosity in split_average tutorial
paudetseis May 16, 2025
560cb13
added doc on tests
paudetseis May 16, 2025
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
72 changes: 72 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# This is a basic workflow to help you get started with Actions

name: Build

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.12"]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
auto-activate-base: false
python-version: ${{ matrix.python-version }}

- name: Install
shell: bash -l {0}
run: |
conda info
conda config --add channels conda-forge
conda install obspy
pip install git+https://github.com/schaefferaj/stdb
pip install .

# - name: Tests
# shell: bash -l {0}
# run: |
# mkdir empty
# cd empty
# conda install pytest
# pytest -v --pyargs splitpy

# - name: Make docs
# if: matrix.python-version == '3.12'
# shell: bash -l {0}
# run: |
# cd docs
# conda install sphinx
# pip install sphinx_rtd_theme
# make html
# touch _build/html/.nojekyll
# cd ..

# - name: Deploy 🚀
# if: matrix.python-version == '3.12'
# uses: JamesIves/github-pages-deploy-action@3.7.1
# with:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# BRANCH: gh-pages # The branch the action should deploy to.
# FOLDER: docs/_build/html # The folder the action should deploy.
# CLEAN: true # Automatically remove deleted files from the deploy branch
49 changes: 0 additions & 49 deletions .travis.yml

This file was deleted.

Binary file removed .travis/github_deploy_key.enc
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ Examples of straightforward contributions include notebooks that describe publis

#### Use Cases

- Esteve, C., Audet, P., Schaeffer, A.J., Schutt, D.L., Aster, R.A., and Cubley, J. (2020). Seismic evidence for craton chiseling and displacement of lithospheric mantle by the Tintina Fault in the Northern Canadian Cordilleras, Geology, in press.
- Esteve, C., Audet, P., Schaeffer, A.J., Schutt, D.L., Aster, R.A., and Cubley, J. (2020). Seismic evidence for craton chiseling and displacement of lithospheric mantle by the Tintina Fault in the Northern Canadian Cordilleras, Geology, 48, 1120–1125, https://doi.org/10.1130/G47688.1
Loading
Loading