Skip to content

Commit cdfd31d

Browse files
[pre-commit.ci] pre-commit autoupdate (#41)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.11.6 → v0.12.12](astral-sh/ruff-pre-commit@v0.11.6...v0.12.12) - [github.com/pre-commit/mirrors-mypy: v1.15.0 → v1.17.1](pre-commit/mirrors-mypy@v1.15.0...v1.17.1) - [github.com/macisamuele/language-formatters-pre-commit-hooks: v2.14.0 → v2.15.0](macisamuele/language-formatters-pre-commit-hooks@v2.14.0...v2.15.0) - [github.com/pre-commit/pre-commit-hooks: v5.0.0 → v6.0.0](pre-commit/pre-commit-hooks@v5.0.0...v6.0.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent ca8e0f3 commit cdfd31d

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
touch docs_build/.nojekyll
2828
- uses: JamesIves/github-pages-deploy-action@v4
2929
with:
30-
folder: docs_build
30+
folder: docs_build

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@ fail_fast: false
22

33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: v0.11.6
5+
rev: v0.12.12
66
hooks:
77
- id: ruff
88
- id: ruff-format
99

1010
- repo: https://github.com/pre-commit/mirrors-mypy
11-
rev: v1.15.0
11+
rev: v1.17.1
1212
hooks:
1313
- id: mypy
1414
additional_dependencies: [types-pyyaml>=6.0.12.20250402]
1515
args: [--ignore-missing-imports]
1616
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
17-
rev: v2.14.0
17+
rev: v2.15.0
1818
hooks:
1919
- id: pretty-format-yaml
2020
args:
@@ -28,7 +28,7 @@ repos:
2828
- --no-sort
2929

3030
- repo: https://github.com/pre-commit/pre-commit-hooks
31-
rev: v5.0.0
31+
rev: v6.0.0
3232
hooks:
3333
- id: check-case-conflict
3434
- id: end-of-file-fixer

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dev = [
2929
"pytest-cov>=6.0.0",
3030
"ruff>=0.8.1",
3131
"types-pyyaml>=6.0.12.20250402",
32-
"pytest-mock>=3.14.0",
32+
"pytest-mock>=3.14.0"
3333
]
3434
docs = ["pdoc>=15.0.0"]
3535

src/gen192/cli.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def iter_pipeline_combis() -> Generator[PipelineCombination, Any, None]:
145145
for pipeline_perturb_id in PIPELINE_NAMES.keys():
146146
for step in PIPELINE_STEPS:
147147
# for connectivity_method in CONNECTIVITY_METHODS:
148-
#for nuisance_method in NUISANCE_METHODS:
148+
# for nuisance_method in NUISANCE_METHODS:
149149
yield PipelineCombination(
150150
pipeline_id=pipeline_id,
151151
pipeline_perturb_id=pipeline_perturb_id,
@@ -315,11 +315,11 @@ def main(force=False) -> None:
315315
if force:
316316
dir_dist = pl.Path("dist")
317317
dir_build = pl.Path("build")
318-
318+
319319
if dir_dist.exists():
320320
print(f"Force option enabled: Removing {dir_dist}")
321321
shutil.rmtree(dir_dist)
322-
322+
323323
if dir_build.exists():
324324
print(f"Force option enabled: Removing {dir_build}")
325325
shutil.rmtree(dir_build)
@@ -555,9 +555,9 @@ def cli():
555555
parser = argparse.ArgumentParser(description="Your script description")
556556
parser.add_argument("-f", "--force", action="store_true", help="Force execution without prompts")
557557
args = parser.parse_args()
558-
558+
559559
main(force=args.force)
560560

561561

562562
if __name__ == "__main__":
563-
cli()
563+
cli()

0 commit comments

Comments
 (0)