Skip to content

Commit 4074760

Browse files
committed
Merge branch 'main' into refactor/data_kind
2 parents 7ad7f80 + 2d1a8cc commit 4074760

File tree

96 files changed

+917
-452
lines changed

Some content is hidden

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

96 files changed

+917
-452
lines changed

.github/ISSUE_TEMPLATE/1-bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ body:
2323
For more details, check out:
2424
2525
- [Minimal Complete Verifiable Examples](https://stackoverflow.com/help/mcve)
26-
- [Craft Minimal Bug Reports](http://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports)
26+
- [Craft Minimal Bug Reports](https://matthewrocklin.com/minimal-bug-reports)
2727
2828
placeholder: "PASTE CODE HERE"
2929
render: python

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# Checkout current git repository
3636
- name: Checkout
37-
uses: actions/checkout@v4.1.7
37+
uses: actions/checkout@v4.2.0
3838
with:
3939
# fetch all history so that setuptools-scm works
4040
fetch-depth: 0

.github/workflows/cache_data.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
# Checkout current git repository
3838
- name: Checkout
39-
uses: actions/checkout@v4.1.7
39+
uses: actions/checkout@v4.2.0
4040
with:
4141
# fetch all history so that setuptools-scm works
4242
fetch-depth: 0

.github/workflows/check-links.yml

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

2424
steps:
2525
- name: Checkout the repository
26-
uses: actions/checkout@v4.1.7
26+
uses: actions/checkout@v4.2.0
2727
with:
2828
path: repository
2929

3030
- name: Checkout the documentation
31-
uses: actions/checkout@v4.1.7
31+
uses: actions/checkout@v4.2.0
3232
with:
3333
ref: gh-pages
3434
path: documentation

.github/workflows/ci_docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
steps:
7070
# Checkout current git repository
7171
- name: Checkout
72-
uses: actions/checkout@v4.1.7
72+
uses: actions/checkout@v4.2.0
7373
with:
7474
# fetch all history so that setuptools-scm works
7575
fetch-depth: 0
@@ -138,7 +138,7 @@ jobs:
138138
run: make -C doc clean all
139139

140140
- name: Checkout the gh-pages branch
141-
uses: actions/checkout@v4.1.7
141+
uses: actions/checkout@v4.2.0
142142
with:
143143
ref: gh-pages
144144
# Checkout to this folder instead of the current one

.github/workflows/ci_doctests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
# Checkout current git repository
3737
- name: Checkout
38-
uses: actions/checkout@v4.1.7
38+
uses: actions/checkout@v4.2.0
3939
with:
4040
# fetch all history so that setuptools-scm works
4141
fetch-depth: 0

.github/workflows/ci_tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ jobs:
7171
include:
7272
- python-version: '3.10'
7373
numpy-version: '1.24'
74-
pandas-version: '=1.5'
75-
xarray-version: '=2022.09'
74+
pandas-version: '=2.0'
75+
xarray-version: '=2023.04'
7676
optional-packages: ''
7777
- python-version: '3.12'
7878
numpy-version: '2.1'
@@ -103,7 +103,7 @@ jobs:
103103
steps:
104104
# Checkout current git repository
105105
- name: Checkout
106-
uses: actions/checkout@v4.1.7
106+
uses: actions/checkout@v4.2.0
107107
with:
108108
# fetch all history so that setuptools-scm works
109109
fetch-depth: 0
@@ -178,7 +178,7 @@ jobs:
178178

179179
# Upload coverage to Codecov
180180
- name: Upload coverage to Codecov
181-
uses: codecov/codecov-action@v4.5.0
181+
uses: codecov/codecov-action@v4.6.0
182182
if: success() || failure()
183183
with:
184184
use_oidc: true

.github/workflows/ci_tests_dev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
# Checkout current git repository
4848
- name: Checkout
49-
uses: actions/checkout@v4.1.7
49+
uses: actions/checkout@v4.2.0
5050
with:
5151
# fetch all history so that setuptools-scm works
5252
fetch-depth: 0
@@ -88,7 +88,7 @@ jobs:
8888
8989
# Checkout current GMT repository
9090
- name: Checkout the GMT source from ${{ matrix.gmt_git_ref }} branch
91-
uses: actions/checkout@v4.1.7
91+
uses: actions/checkout@v4.2.0
9292
with:
9393
repository: 'GenericMappingTools/gmt'
9494
ref: ${{ matrix.gmt_git_ref }}

.github/workflows/ci_tests_legacy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fail-fast: false
3636
matrix:
3737
os: [ubuntu-20.04, macos-12, windows-2019]
38-
gmt_version: ['6.3', '6.4']
38+
gmt_version: ['6.4']
3939
timeout-minutes: 30
4040
defaults:
4141
run:
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
# Checkout current git repository
4646
- name: Checkout
47-
uses: actions/checkout@v4.1.7
47+
uses: actions/checkout@v4.2.0
4848
with:
4949
# fetch all history so that setuptools-scm works
5050
fetch-depth: 0

.github/workflows/dvc-diff.yml

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

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4.1.7
24+
uses: actions/checkout@v4.2.0
2525
with:
2626
# fetch all history so that dvc diff works
2727
fetch-depth: 0

0 commit comments

Comments
 (0)