Skip to content

Commit 7052f89

Browse files
chore(deps): bump versions (#548)
1 parent d968a77 commit 7052f89

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/reusable-cookie.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
run: uv tool install nox
4747

4848
- name: Test pybind11
49-
if: matrix.python-version != 'pypy-3.9'
5049
run: nox -s 'tests(pybind11, novcs)' -s 'tests(pybind11, vcs)'
5150

5251
- name: Test scikit-build
@@ -71,10 +70,12 @@ jobs:
7170
run: nox -s 'tests(setuptools, novcs)' -s 'tests(setuptools, vcs)'
7271

7372
- name: Native poetry tooling
74-
run: nox -s 'native(poetry, novcs)' -s 'native(poetry, vcs)'
73+
if: matrix.python-version != 'pypy-3.10'
74+
run: |
75+
nox -s 'native(poetry, novcs)'
76+
nox -s 'native(poetry, vcs)'
7577
7678
- name: Native pdm tooling
77-
7879
run: nox -s 'native(pdm, novcs)' -s 'native(pdm, vcs)'
7980

8081
- name: Activate MSVC for Meson

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
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.9.4"
32+
rev: "v0.9.5"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]
@@ -43,7 +43,7 @@ repos:
4343
- id: rst-inline-touching-normal
4444

4545
- repo: https://github.com/pre-commit/mirrors-mypy
46-
rev: "v1.14.1"
46+
rev: "v1.15.0"
4747
hooks:
4848
- id: mypy
4949
files: "(src|tests)"

docs/pages/guides/style.md

Lines changed: 3 additions & 3 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.9.4"
114+
rev: "v0.9.5"
115115
hooks:
116116
# id: ruff 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.9.4"
204+
rev: "v0.9.5"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]
@@ -533,7 +533,7 @@ The MyPy addition for pre-commit:
533533

534534
```yaml
535535
- repo: https://github.com/pre-commit/mirrors-mypy
536-
rev: "v1.14.1"
536+
rev: "v1.15.0"
537537
hooks:
538538
- id: mypy
539539
files: src

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@2024.10.09
78+
- uses: wntrblm/nox@2025.02.09
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@2024.10.09
87+
- uses: wntrblm/nox@2025.02.09
8888
with:
8989
python-versions: "3.9, 3.10, 3.11, 3.12, 3.13, pypy-3.10"
9090
```

src/sp_repo_review/checks/ruff.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ def check(ruff: dict[str, Any], package: Traversable) -> bool | None:
9898

9999
match ruff:
100100
case {"src": ["src"]}:
101-
# See https://github.com/python/mypy/issues/16272
102-
return False # type: ignore[unreachable]
101+
return False
103102
case _:
104103
return True
105104

{{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.9.4"
45+
rev: "v0.9.5"
4646
hooks:
4747
- id: ruff
4848
args: ["--fix", "--show-fixes"]
@@ -59,7 +59,7 @@ repos:
5959
{%- endif %}
6060

6161
- repo: https://github.com/pre-commit/mirrors-mypy
62-
rev: "v1.14.1"
62+
rev: "v1.15.0"
6363
hooks:
6464
- id: mypy
6565
files: src|tests

0 commit comments

Comments
 (0)