Skip to content

Commit 41a6670

Browse files
Bump actions/setup-python from 5 to 6 (#4)
1 parent 5a28843 commit 41a6670

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v5
1717
# run pre-commit
1818
- name: Python setup
19-
uses: actions/setup-python@v5
19+
uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.11"
2222
- name: Install the latest version of uv

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ repos:
3939
- id: yamllint
4040
exclude: pre-commit-config.yaml
4141
- repo: https://github.com/astral-sh/ruff-pre-commit
42-
rev: "v0.12.9"
42+
rev: "v0.13.2"
4343
hooks:
4444
- id: ruff-format
4545
- id: ruff-check

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,8 @@ lint.select = [
6767
"SIM",
6868
"W",
6969
]
70-
lint.per-file-ignores."src/serpula_rasa/example.ipynb" = [ "PLR2004" ]
71-
72-
# Ignore `F401` (unused imports) for `__init__.py` file
73-
lint.per-file-ignores."src/serpula_rasa/example.py" = [ "PLR2004" ]
70+
lint.per-file-ignores."src/serpula_rasa/example.ipynb" = [ "PLR2004", "RUF059" ]
71+
lint.per-file-ignores."src/serpula_rasa/example.py" = [ "PLR2004", "RUF059" ]
7472

7573
[tool.pytest.ini_options]
7674
pythonpath = [ "." ]

0 commit comments

Comments
 (0)