Skip to content

Commit b93168f

Browse files
authored
Merge branch 'main' into renovate/numpy-2.x
2 parents b95a8bd + 706f0df commit b93168f

File tree

11 files changed

+40
-49
lines changed

11 files changed

+40
-49
lines changed

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
id-token: write
1818
steps:
1919
# yamllint disable-line rule:line-length
20-
- uses: paddyroddy/.github/actions/python/deployment@cae02393710f18f5fbacd9545d1a38f0d661758e # v0
20+
- uses: paddyroddy/.github/actions/python/deployment@6630dca9555ad0bcebc93e0d9177aa416991fc97 # v0
2121
with:
2222
pyproject-toml: ./pyproject.toml
2323
python-version: "3.12"

.github/workflows/documentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# yamllint disable-line rule:line-length
16-
- uses: paddyroddy/.github/actions/python/pdoc@cae02393710f18f5fbacd9545d1a38f0d661758e # v0
16+
- uses: paddyroddy/.github/actions/python/pdoc@6630dca9555ad0bcebc93e0d9177aa416991fc97 # v0
1717
with:
1818
docs-dependency-section: .[docs]
1919
gh-pages-publish-directory: ./html/sleplet

.github/workflows/examples.yaml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,43 +19,42 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout source
22-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2323

2424
- name: Set up python
25-
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
25+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
2626
with:
2727
python-version: "3.12"
2828
cache: pip
2929
cache-dependency-path: pyproject.toml
3030

3131
- name: Cache pooch
32-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
32+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
3333
with:
3434
path: ~/.cache/sleplet
3535
key: readme-${{ hashFiles('pyproject.toml') }}
3636

3737
- name: Install dependencies
38-
run: python -m pip install -e ".[readme]"
38+
run: python -m pip install -e '.[readme]'
3939

4040
- name: Run examples in the README
41-
run: >-
42-
python -m pytest --codeblocks .github README.md documentation -n auto
41+
run: python -m pytest --codeblocks .github README.md documentation
4342

4443
examples:
4544
runs-on: ubuntu-latest
4645
steps:
4746
- name: Checkout source
48-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
47+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4948

5049
- name: Set up python
51-
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5
50+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
5251
with:
5352
python-version: "3.12"
5453
cache: pip
5554
cache-dependency-path: pyproject.toml
5655

5756
- name: Cache pooch
58-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
57+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
5958
with:
6059
path: ~/.cache/sleplet
6160
key: examples-${{ hashFiles('pyproject.toml') }}

.github/workflows/licence.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
# yamllint disable-line rule:line-length
13-
- uses: paddyroddy/.github/actions/licence@cae02393710f18f5fbacd9545d1a38f0d661758e # v0
13+
- uses: paddyroddy/.github/actions/licence@6630dca9555ad0bcebc93e0d9177aa416991fc97 # v0
1414
with:
1515
github-token: ${{ secrets.GITHUB_TOKEN }}
1616
licence-file: ./LICENCE.txt

.github/workflows/links.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
timeout-minutes: 2
1515
steps:
1616
# yamllint disable-line rule:line-length
17-
- uses: paddyroddy/.github/actions/links@cae02393710f18f5fbacd9545d1a38f0d661758e # v0
17+
- uses: paddyroddy/.github/actions/links@6630dca9555ad0bcebc93e0d9177aa416991fc97 # v0
1818
with:
1919
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/linting.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
# yamllint disable-line rule:line-length
16-
- uses: paddyroddy/.github/actions/linting@cae02393710f18f5fbacd9545d1a38f0d661758e # v0
16+
- uses: paddyroddy/.github/actions/linting@6630dca9555ad0bcebc93e0d9177aa416991fc97 # v0
1717
with:
1818
pre-commit-config: ./.pre-commit-config.yaml

.github/workflows/paper.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717

1818
- name: Build draft PDF
1919
uses: openjournals/openjournals-draft-action@master
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Upload
2525
# yamllint disable-line rule:line-length
26-
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4
26+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4
2727
with:
2828
name: paper
2929
path: paper/paper.pdf

.github/workflows/test.yaml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,21 @@ jobs:
1919
- macos-latest
2020
- ubuntu-latest
2121
python-version:
22-
- "3.10"
2322
- "3.11"
2423
- "3.12"
2524
steps:
2625
# yamllint disable-line rule:line-length
27-
- uses: paddyroddy/.github/actions/python/tox@cae02393710f18f5fbacd9545d1a38f0d661758e # v0
26+
- uses: paddyroddy/.github/actions/python/tox@6630dca9555ad0bcebc93e0d9177aa416991fc97 # v0
2827
with:
2928
cache-path: |-
3029
.tox
3130
~/.cache/sleplet
32-
operating-system: ${{ matrix.os }}
3331
pyproject-toml: ./pyproject.toml
3432
python-version: ${{ matrix.python-version }}
3533

3634
- name: Coveralls Parallel
3735
# yamllint disable-line rule:line-length
38-
uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 # v2
36+
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2
3937
with:
4038
flag-name: run-${{ matrix.os }}-${{ matrix.python-version }}
4139
parallel: true
@@ -47,13 +45,11 @@ jobs:
4745
steps:
4846
- name: Coveralls Finished
4947
# yamllint disable-line rule:line-length
50-
uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949 # v2
48+
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8 # v2
5149
with:
5250
parallel-finished: true
5351
# yamllint disable-line rule:quoted-strings
5452
carryforward: "\
55-
run-macos-latest-3.10,\
56-
run-ubuntu-latest-3.10,\
5753
run-macos-latest-3.11,\
5854
run-ubuntu-latest-3.11,\
5955
run-macos-latest-3.12,\

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/paddyroddy/.github
4-
rev: v0.229.0
4+
rev: v0.241.0
55
hooks:
66
- id: general-hooks
77
- id: python-hooks

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ doi: 10.5281/zenodo.7268074
77
message: >-
88
If you use this software, please cite our article in the Journal of Open
99
Source Software.
10+
title: "SLEPLET: Slepian Scale-Discretised Wavelets in Python"
1011
preferred-citation:
1112
authors:
1213
- family-names: Roddy
@@ -24,4 +25,3 @@ preferred-citation:
2425
type: article
2526
url: https://joss.theoj.org/papers/10.21105/joss.05221
2627
volume: 8
27-
title: "SLEPLET: Slepian Scale-Discretised Wavelets in Python"

0 commit comments

Comments
 (0)