Skip to content

Commit 52b3bca

Browse files
chore(deps): bump versions (#689)
1 parent 1f1910b commit 52b3bca

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
additional_dependencies: [black==24.*]
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: "v0.14.4"
32+
rev: "v0.14.5"
3333
hooks:
3434
- id: ruff-check
3535
args: ["--fix", "--show-fixes"]

docs/pages/guides/gha_wheels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ build_wheels:
127127
128128
- uses: astral-sh/setup-uv@v7
129129
130-
- uses: pypa/cibuildwheel@v3.2
130+
- uses: pypa/cibuildwheel@v3.3
131131
132132
- name: Upload wheels
133133
uses: actions/upload-artifact@v5

docs/pages/guides/style.md

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

112112
```yaml
113113
- repo: https://github.com/astral-sh/ruff-pre-commit
114-
rev: "v0.14.4"
114+
rev: "v0.14.5"
115115
hooks:
116116
# id: ruff-check would go here if using both
117117
- id: ruff-format
@@ -201,7 +201,7 @@ pre-commit hook.
201201
202202
```yaml
203203
- repo: https://github.com/astral-sh/ruff-pre-commit
204-
rev: "v0.14.4"
204+
rev: "v0.14.5"
205205
hooks:
206206
- id: ruff-check
207207
args: ["--fix", "--show-fixes"]
@@ -879,7 +879,7 @@ schemas, and you can load them via URL. It work on JSON, YAML, and TOML.
879879

880880
```yaml
881881
- repo: https://github.com/python-jsonschema/check-jsonschema
882-
rev: "0.34.1"
882+
rev: "0.35.0"
883883
hooks:
884884
- id: check-dependabot
885885
- id: check-github-workflows
@@ -950,7 +950,7 @@ You also might like the following hook, which cleans Jupyter outputs:
950950

951951
```yaml
952952
- repo: https://github.com/kynan/nbstripout
953-
rev: "0.8.1"
953+
rev: "0.8.2"
954954
hooks:
955955
- id: nbstripout
956956
```

docs/pages/guides/tasks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ On GitHub Actions or Azure, pipx is available by default, so you should use
7575
action:
7676

7777
```yaml
78-
- uses: wntrblm/nox@2025.10.16
78+
- uses: wntrblm/nox@2025.11.12
7979
```
8080
8181
You can now access all current versions of Python from nox. At least in GitHub
@@ -84,7 +84,7 @@ your logs, or set `env: FORCE_COLOR: 3`[^force_color]. If you'd like to
8484
customize the versions of Python prepared for you, then use input like this:
8585

8686
```yaml
87-
- uses: wntrblm/nox@2025.10.16
87+
- uses: wntrblm/nox@2025.11.12
8888
with:
8989
python-versions: "3.10, 3.11, 3.12, 3.13, 3.13t, 3.14, 3.14t, pypy-3.11"
9090
```

{{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
@@ -56,7 +56,7 @@ jobs:
5656

5757
- uses: astral-sh/setup-uv@v7
5858

59-
- uses: pypa/cibuildwheel@v3.2
59+
- uses: pypa/cibuildwheel@v3.3
6060

6161
- name: Upload wheels
6262
uses: actions/upload-artifact@v5

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ repos:
4242
args: [--prose-wrap=always]
4343

4444
- repo: https://github.com/astral-sh/ruff-pre-commit
45-
rev: "v0.14.4"
45+
rev: "v0.14.5"
4646
hooks:
4747
- id: ruff-check
4848
args: ["--fix", "--show-fixes"]
@@ -104,7 +104,7 @@ repos:
104104
additional_dependencies: ["validate-pyproject-schema-store[all]"]
105105

106106
- repo: https://github.com/python-jsonschema/check-jsonschema
107-
rev: "0.34.1"
107+
rev: "0.35.0"
108108
hooks:
109109
{%- if cookiecutter.__ci == "github" %}
110110
- id: check-dependabot

0 commit comments

Comments
 (0)