Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions .github/workflows/python-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ name: Python on pull request

on:
pull_request:
paths:
- gravity_toolkit/**
- scripts/**
- test/**
- .github/workflows/python-request.yml
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 1 * *'

jobs:
build:
Expand Down
1 change: 0 additions & 1 deletion doc/source/_assets/gravity-refs.bib
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,6 @@ @book{Munk:1960uk
year = {1960},
isbn = {9780521104067},
url = {http://www.cambridge.org/9780521104067},
doi = {10.1017/CB9780521104067},
publisher = {Cambridge University Press},
address = {New York}
}
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/Getting-Started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Getting Started
===============

- `Register at NASA Earthdata <./NASA-Earthdata.rst>`_
- `Register at NASA Earthdata <./NASA-Earthdata.html>`_
- Run `podaac_cumulus.py <https://github.com/tsutterley/gravity-toolkit/blob/main/scripts/podaac_cumulus.py>`_ program with your NASA Earthdata credentials to acquire GRACE/GRACE-FO and auxiliary data

.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion scripts/podaac_cumulus.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def arguments():
help='Sync GRACE/GRACE-FO Level-1B dealiasing products')
# CMR endpoint type
parser.add_argument('--endpoint','-e',
type=str, default='s3', choices=['s3','data'],
type=str, default='data', choices=['s3','data'],
help='CMR url endpoint type')
# connection timeout
parser.add_argument('--timeout','-t',
Expand Down
Loading