Skip to content

Commit 6de69d3

Browse files
Merge branch 'main' into inline-example/grdvolume
2 parents 0e58a82 + 4186400 commit 6de69d3

File tree

121 files changed

+1474
-1357
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1474
-1357
lines changed

.github/workflows/cache_data.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
# Checkout current git repository
2121
- name: Checkout
22-
uses: actions/checkout@v2.4.0
22+
uses: actions/checkout@v3.0.0
2323
with:
2424
# fecth all history so that setuptools-scm works
2525
fetch-depth: 0
@@ -51,8 +51,6 @@ jobs:
5151
- name: Download remote data
5252
run: |
5353
python -c "from pygmt.helpers.testing import download_test_data; download_test_data()"
54-
env:
55-
GMT_DATA_SERVER: https://oceania.generic-mapping-tools.org/
5654
5755
# Upload the downloaded files as artifacts to GitHub
5856
- name: Upload artifacts to GitHub

.github/workflows/check-links.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515

1616
steps:
1717
- name: Checkout the repository
18-
uses: actions/checkout@v2.4.0
18+
uses: actions/checkout@v3.0.0
1919
with:
2020
path: repository
2121

2222
- name: Checkout the documentation
23-
uses: actions/checkout@v2.4.0
23+
uses: actions/checkout@v3.0.0
2424
with:
2525
ref: gh-pages
2626
path: documentation
2727

2828
- name: Link Checker
29-
uses: lycheeverse/lychee-action@v1.2.0
29+
uses: lycheeverse/lychee-action@v1.3.2
3030
with:
3131
# 429: Too many requests
3232
args: >

.github/workflows/ci_docs.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
- '*.json'
1414
- 'LICENSE.txt'
1515
- '.gitignore'
16-
- '.pylintrc'
1716
release:
1817
types:
1918
- published
@@ -50,7 +49,7 @@ jobs:
5049

5150
# Checkout current git repository
5251
- name: Checkout
53-
uses: actions/checkout@v2.4.0
52+
uses: actions/checkout@v3.0.0
5453
with:
5554
# fecth all history so that setuptools-scm works
5655
fetch-depth: 0
@@ -81,7 +80,7 @@ jobs:
8180

8281
# Download cached remote files (artifacts) from GitHub
8382
- name: Download remote data from GitHub
84-
uses: dawidd6/action-download-artifact@v2.16.0
83+
uses: dawidd6/action-download-artifact@v2.17.0
8584
with:
8685
workflow: cache_data.yaml
8786
workflow_conclusion: success
@@ -108,7 +107,7 @@ jobs:
108107
run: make -C doc clean all
109108

110109
- name: Checkout the gh-pages branch
111-
uses: actions/checkout@v2.4.0
110+
uses: actions/checkout@v3.0.0
112111
with:
113112
ref: gh-pages
114113
# Checkout to this folder instead of the current one

.github/workflows/ci_tests.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ on:
1515
- 'README.rst'
1616
- 'LICENSE.txt'
1717
- '.gitignore'
18-
- '.pylintrc'
1918
release:
2019
types:
2120
- published
@@ -73,7 +72,7 @@ jobs:
7372

7473
# Checkout current git repository
7574
- name: Checkout
76-
uses: actions/checkout@v2.4.0
75+
uses: actions/checkout@v3.0.0
7776
with:
7877
# fecth all history so that setuptools-scm works
7978
fetch-depth: 0
@@ -98,15 +97,15 @@ jobs:
9897
pandas xarray netCDF4 packaging \
9998
${{ matrix.optional-packages }} \
10099
dvc make pytest>=6.0 \
101-
pytest-cov pytest-mpl sphinx-gallery tomli
100+
pytest-cov pytest-doctestplus pytest-mpl sphinx-gallery tomli
102101
103102
# Show installed pkg information for postmortem diagnostic
104103
- name: List installed packages
105104
run: mamba list
106105

107106
# Download cached remote files (artifacts) from GitHub
108107
- name: Download remote data from GitHub
109-
uses: dawidd6/action-download-artifact@v2.16.0
108+
uses: dawidd6/action-download-artifact@v2.17.0
110109
with:
111110
workflow: cache_data.yaml
112111
workflow_conclusion: success

.github/workflows/ci_tests_dev.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ on:
1515
- 'README.rst'
1616
- 'LICENSE.txt'
1717
- '.gitignore'
18-
- '.pylintrc'
1918
repository_dispatch:
2019
types: [test-gmt-dev-command]
2120
# Schedule daily tests
@@ -46,7 +45,7 @@ jobs:
4645

4746
# Checkout current git repository
4847
- name: Checkout
49-
uses: actions/checkout@v2.4.0
48+
uses: actions/checkout@v3.0.0
5049
if: github.event_name != 'repository_dispatch'
5150
with:
5251
# fecth all history so that setuptools-scm works
@@ -63,7 +62,7 @@ jobs:
6362

6463
# Checkout the pull request branch
6564
- name: Checkout
66-
uses: actions/checkout@v2.4.0
65+
uses: actions/checkout@v3.0.0
6766
if: github.event_name == 'repository_dispatch'
6867
with:
6968
token: ${{ steps.generate-token.outputs.token }}
@@ -94,7 +93,7 @@ jobs:
9493
pip install --pre --prefer-binary \
9594
numpy pandas xarray netCDF4 packaging \
9695
dvc ipython 'pytest>=6.0' pytest-cov \
97-
pytest-mpl sphinx-gallery tomli
96+
pytest-doctestplus pytest-mpl sphinx-gallery tomli
9897
9998
# Pull baseline image data from dvc remote (DAGsHub)
10099
- name: Pull baseline image data from dvc remote
@@ -116,7 +115,7 @@ jobs:
116115

117116
# Download cached remote files (artifacts) from GitHub
118117
- name: Download remote data from GitHub
119-
uses: dawidd6/action-download-artifact@v2.16.0
118+
uses: dawidd6/action-download-artifact@v2.17.0
120119
with:
121120
workflow: cache_data.yaml
122121
workflow_conclusion: success

.github/workflows/dvc-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2.4.0
16+
uses: actions/checkout@v3.0.0
1717
with:
1818
# fetch all history so that dvc diff works
1919
fetch-depth: 0

.github/workflows/format-command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
private_key: ${{ secrets.APP_PRIVATE_KEY }}
1515

1616
# Checkout the pull request branch
17-
- uses: actions/checkout@v2.4.0
17+
- uses: actions/checkout@v3.0.0
1818
with:
1919
token: ${{ steps.generate-token.outputs.token }}
2020
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
2121
ref: ${{ github.event.pull_request.head.sha }}
2222

2323
# Setup Python environment
24-
- uses: actions/setup-python@v2.3.1
24+
- uses: actions/setup-python@v3.0.0
2525

2626
# Install formatting tools
2727
- name: Install formatting tools

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323

2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v2.4.0
26+
uses: actions/checkout@v3.0.0
2727
with:
2828
# fetch all history so that setuptools-scm works
2929
fetch-depth: 0
3030

3131
- name: Set up Python
32-
uses: actions/setup-python@v2.3.1
32+
uses: actions/setup-python@v3.0.0
3333
with:
3434
python-version: '3.10'
3535

.github/workflows/release-baseline-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2.4.0
19+
uses: actions/checkout@v3.0.0
2020

2121
- name: Setup data version control (DVC)
2222
uses: iterative/setup-dvc@v1.0.3

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
# Drafts your next Release notes as Pull Requests are merged into "main"
14-
- uses: release-drafter/release-drafter@v5.17.6
14+
- uses: release-drafter/release-drafter@v5.19.0
1515
with:
1616
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
1717
config-name: release-drafter.yml

0 commit comments

Comments
 (0)