Skip to content

Commit 4c63d0a

Browse files
github-actions[bot]henryiiipre-commit-ci[bot]
authored
chore(deps): bump versions (#384)
* [create-pull-request] automated change * style: pre-commit fixes * chore: update style for ruff 0.3 Signed-off-by: Henry Schreiner <[email protected]> * chore: remove another missing docstring check Signed-off-by: Henry Schreiner <[email protected]> --------- Signed-off-by: Henry Schreiner <[email protected]> Co-authored-by: henryiii <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <[email protected]>
1 parent ca16c02 commit 4c63d0a

File tree

13 files changed

+11
-15
lines changed

13 files changed

+11
-15
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.2.2"
32+
rev: "v0.3.0"
3333
hooks:
3434
- id: ruff
3535
args: ["--fix", "--show-fixes"]

docs/pages/guides/coverage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ enough for a simple testing suite, can be written as follows:
9191

9292
```yaml
9393
- name: Upload coverage report
94-
uses: codecov/codecov-action@v4.0.1
94+
uses: codecov/codecov-action@v4.1.0
9595
with:
9696
token: ${{ secrets.CODECOV_TOKEN }}
9797
```

docs/pages/guides/gha_basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ jobs:
504504
- name: Changed test-related files
505505
if: github.event_name == 'pull_request'
506506
id: changed-tests-files
507-
uses: Ana06/get-changed-files@v2.2.0
507+
uses: Ana06/get-changed-files@v2.3.0
508508
with:
509509
format: "json"
510510
filter: |

docs/pages/guides/style.md

Lines changed: 2 additions & 2 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.2.2"
114+
rev: "v0.3.0"
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.2.2"
204+
rev: "v0.3.0"
205205
hooks:
206206
- id: ruff
207207
args: ["--fix", "--show-fixes"]

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@2023.04.22
78+
- uses: wntrblm/nox@2024.03.02
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`. If you'd like to customise the versions
8484
of Python prepared for you, then use input like this:
8585

8686
```yaml
87-
- uses: wntrblm/nox@2023.04.22
87+
- uses: wntrblm/nox@2024.03.02
8888
with:
8989
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, pypy-3.9, pypy-3.10"
9090
```

noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
sp-repo-review checks start with "rr-".
55
"""
66

7-
87
from __future__ import annotations
98

109
import difflib

src/sp_repo_review/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
sp-repo-review: Review repos with a set of checks defined by plugins.
55
"""
66

7-
87
from __future__ import annotations
98

109
from ._version import version as __version__

src/sp_repo_review/checks/general.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class General:
1414

1515

1616
class PY001(General):
17-
1817
"Has a pyproject.toml"
1918

2019
url = mk_url("packaging-simple")

src/sp_repo_review/checks/ruff.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,7 @@ class RF103(RF1xx):
157157

158158
class RF2xxMixin(Protocol):
159159
@staticmethod
160-
def iter_check(ruff: dict[str, Any]) -> Generator[str, None, None]:
161-
...
160+
def iter_check(ruff: dict[str, Any]) -> Generator[str, None, None]: ...
162161

163162

164163
class RF2xx(Ruff):

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,6 @@ jobs:
7474
--durations=20
7575
7676
- name: Upload coverage report
77-
uses: codecov/codecov-action@v4.0.1
77+
uses: codecov/codecov-action@v4.1.0
7878
with:
7979
token: {% raw %}${{ secrets.CODECOV_TOKEN }}{% endraw %}

0 commit comments

Comments
 (0)