Skip to content

Commit f623f12

Browse files
chore(deps): bump versions (#852)
[create-pull-request] automated change Co-authored-by: scientific-python-pr-tokenbot[bot] <181030687+scientific-python-pr-tokenbot[bot]@users.noreply.github.com>
1 parent 146c04a commit f623f12

8 files changed

Lines changed: 23 additions & 23 deletions

File tree

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ repos:
2323
- id: trailing-whitespace
2424

2525
- repo: https://github.com/astral-sh/ruff-pre-commit
26-
rev: "v0.16.2"
26+
rev: "v0.16.4"
2727
hooks:
2828
- id: ruff-check
2929
args: ["--fix"]
@@ -38,7 +38,7 @@ repos:
3838
- id: rst-inline-touching-normal
3939

4040
- repo: https://github.com/pre-commit/mirrors-mypy
41-
rev: "v2.3.0"
41+
rev: "v2.3.1"
4242
hooks:
4343
- id: mypy
4444
files: "(src|tests|noxfile.py)"
@@ -60,7 +60,7 @@ repos:
6060
types_or: [yaml, html, css, scss, javascript, json]
6161

6262
- repo: https://github.com/rvben/rumdl-pre-commit
63-
rev: "v0.2.53"
63+
rev: "v0.2.60"
6464
hooks:
6565
- id: rumdl
6666
args: [--no-exclude] # Disable all exclude patterns

docs/guides/gha_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ tests:
122122
allow-prereleases: true
123123
124124
- name: Download uv
125-
uses: astral-sh/setup-uv@v9.0.0
125+
uses: astral-sh/setup-uv@v10.0.1
126126
127127
- name: Test package
128128
run: uv run pytest

docs/guides/gha_wheels.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ make_sdist:
7373
with:
7474
fetch-depth: 0 # Optional, use if you use setuptools_scm
7575
submodules: true # Optional, use if you have submodules
76-
- uses: astral-sh/setup-uv@v9.0.0
76+
- uses: astral-sh/setup-uv@v10.0.1
7777
7878
- name: Build SDist
7979
run: uv build --sdist
@@ -113,7 +113,7 @@ build_wheels:
113113
fetch-depth: 0
114114
submodules: true
115115
116-
- uses: astral-sh/setup-uv@v9.0.0
116+
- uses: astral-sh/setup-uv@v10.0.1
117117
118118
- uses: pypa/cibuildwheel@v4.2
119119

docs/guides/style.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Here is the snippet to add the formatter to your `.pre-commit-config.yml`
148148

149149
```yaml
150150
- repo: https://github.com/astral-sh/ruff-pre-commit
151-
rev: "v0.16.2"
151+
rev: "v0.16.4"
152152
hooks:
153153
# id: ruff-check would go here if using both
154154
- id: ruff-format
@@ -216,7 +216,7 @@ your code and your docs. Add `markdown` to the `ruff-format` hook's `types_or`:
216216

217217
```yaml
218218
- repo: https://github.com/astral-sh/ruff-pre-commit
219-
rev: "v0.16.2"
219+
rev: "v0.16.4"
220220
hooks:
221221
- id: ruff-format
222222
types_or: [python, pyi, jupyter, markdown, pyproject]
@@ -256,7 +256,7 @@ pre-commit hook.
256256

257257
```yaml
258258
- repo: https://github.com/astral-sh/ruff-pre-commit
259-
rev: "v0.16.2"
259+
rev: "v0.16.4"
260260
hooks:
261261
- id: ruff-check
262262
args: ["--fix", "--show-fixes"]
@@ -640,7 +640,7 @@ The pre-commit addition for type checking:
640640
:sync: mypy
641641
```yaml
642642
- repo: https://github.com/pre-commit/mirrors-mypy
643-
rev: "v2.3.0"
643+
rev: "v2.3.1"
644644
hooks:
645645
- id: mypy
646646
files: src
@@ -672,7 +672,7 @@ with `additional_dependencies`, and pass extra flags via `args`.
672672
:sync: ty
673673
```yaml
674674
- repo: https://github.com/astral-sh/ty-pre-commit
675-
rev: "v0.0.69"
675+
rev: "v0.0.74"
676676
hooks:
677677
- id: ty
678678
```
@@ -1007,7 +1007,7 @@ If you have shell scripts, you can protect against common mistakes using
10071007

10081008
```yaml
10091009
- repo: https://github.com/shellcheck-py/shellcheck-py
1010-
rev: "v0.11.0.1"
1010+
rev: "v0.11.0.1-1"
10111011
hooks:
10121012
- id: shellcheck
10131013
```
@@ -1053,7 +1053,7 @@ validate-pyproject-schema-store plugin. Using it looks like this:
10531053

10541054
```yaml
10551055
- repo: https://github.com/abravalheri/validate-pyproject
1056-
rev: "v0.25"
1056+
rev: "0.26"
10571057
hooks:
10581058
- id: validate-pyproject
10591059
additional_dependencies: ["validate-pyproject-schema-store[all]"]

docs/guides/tasks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ On GitHub Actions or Azure, pipx is available by default, so you should use
6565
action:
6666

6767
```yaml
68-
- uses: wntrblm/nox@2026.07.11
68+
- uses: wntrblm/nox@2026.08.17
6969
```
7070
7171
You can now access all current versions of Python from nox. At least in GitHub
@@ -74,7 +74,7 @@ your logs, or set `env: FORCE_COLOR: 3`[^force_color]. If you'd like to
7474
customize the versions of Python prepared for you, then use input like this:
7575

7676
```yaml
77-
- uses: wntrblm/nox@2026.07.11
77+
- uses: wntrblm/nox@2026.08.17
7878
with:
7979
python-versions: "3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t, pypy-3.11"
8080
```
@@ -309,7 +309,7 @@ You can install `uv` with `pipx`, `brew`, etc. If you want to use uv in GitHub
309309
Actions, one way is to use this:
310310

311311
```yaml
312-
- uses: astral-sh/setup-uv@v9.0.0
312+
- uses: astral-sh/setup-uv@v10.0.1
313313
```
314314

315315
Check your jobs with `uv`; most things do not need to change. The main

{{cookiecutter.project_name}}/.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
python-version: "3.x"
3939

40-
- uses: astral-sh/setup-uv@v9.0.0
40+
- uses: astral-sh/setup-uv@v10.0.1
4141

4242
- uses: j178/prek-action@v2
4343

@@ -75,7 +75,7 @@ jobs:
7575
python-version: {% raw %}${{ matrix.python-version }}{% endraw %}
7676
allow-prereleases: true
7777

78-
- uses: astral-sh/setup-uv@v9.0.0
78+
- uses: astral-sh/setup-uv@v10.0.1
7979

8080
{%- if cookiecutter.backend == "mesonpy" %}
8181

{{cookiecutter.project_name}}/.github/workflows/{% if cookiecutter.__type=='compiled' %}cd.yml{% endif %}

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
persist-credentials: false
6363
fetch-depth: 0
6464

65-
- uses: astral-sh/setup-uv@v9.0.0
65+
- uses: astral-sh/setup-uv@v10.0.1
6666
with:
6767
# Disable caching to avoid poisoning published wheels
6868
enable-cache: false

{{cookiecutter.project_name}}/.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repos:
3737
args: [--prose-wrap=always]
3838

3939
- repo: https://github.com/astral-sh/ruff-pre-commit
40-
rev: "v0.16.2"
40+
rev: "v0.16.4"
4141
hooks:
4242
- id: ruff-check
4343
args: ["--fix"]
@@ -55,7 +55,7 @@ repos:
5555
{%- endif %}
5656

5757
- repo: https://github.com/pre-commit/mirrors-mypy
58-
rev: "v2.3.0"
58+
rev: "v2.3.1"
5959
hooks:
6060
- id: mypy
6161
files: src|tests|noxfile.py
@@ -72,7 +72,7 @@ repos:
7272
- tomli; python_version<'3.11'
7373

7474
- repo: https://github.com/shellcheck-py/shellcheck-py
75-
rev: "v0.11.0.1"
75+
rev: "v0.11.0.1-1"
7676
hooks:
7777
- id: shellcheck
7878

@@ -94,7 +94,7 @@ repos:
9494
{%- endif %}
9595

9696
- repo: https://github.com/abravalheri/validate-pyproject
97-
rev: "v0.25"
97+
rev: "0.26"
9898
hooks:
9999
- id: validate-pyproject
100100
additional_dependencies: ["validate-pyproject-schema-store[all]"]

0 commit comments

Comments
 (0)