Skip to content

Commit

Permalink
chore(deps): pre-commit.ci autoupdate (#27)
Browse files Browse the repository at this point in the history
* chore(deps): pre-commit.ci autoupdate

updates:
- [github.com/tcort/markdown-link-check: v3.11.2 → v3.12.2](tcort/markdown-link-check@v3.11.2...v3.12.2)
- https://github.com/charliermarsh/ruff-pre-commithttps://github.com/astral-sh/ruff-pre-commit
- [github.com/astral-sh/ruff-pre-commit: v0.4.4 → v0.4.7](astral-sh/ruff-pre-commit@v0.4.4...v0.4.7)
- [github.com/PyCQA/pylint: v3.2.0 → v3.2.2](pylint-dev/pylint@v3.2.0...v3.2.2)
- [github.com/python-jsonschema/check-jsonschema: 0.28.3 → 0.28.4](python-jsonschema/check-jsonschema@0.28.3...0.28.4)
- [github.com/crate-ci/typos: v1.21.0 → v1.22.0](crate-ci/typos@v1.21.0...v1.22.0)

* style: pre-commit.ci fixes

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Jun 4, 2024
1 parent 42b921c commit 2be1761
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ repos:
- mdformat-config
- mdformat-toc
- repo: https://github.com/tcort/markdown-link-check
rev: v3.11.2
rev: v3.12.2
hooks:
- id: markdown-link-check
args: ["--quiet", "--config", ".md-link-config.json"]
Expand Down Expand Up @@ -97,8 +97,8 @@ repos:
- id: cmake-lint
additional_dependencies: [cmakelang]
exclude: cmake/.*
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.4.4
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.7
hooks:
- id: ruff
- id: ruff-format
Expand All @@ -116,7 +116,7 @@ repos:
- id: mypy
args: [--python-version, '3.10']
- repo: https://github.com/PyCQA/pylint
rev: v3.2.0
rev: v3.2.2
hooks:
- id: pylint
- repo: https://github.com/asottile/pyupgrade
Expand All @@ -129,10 +129,10 @@ repos:
hooks:
- id: shellcheck
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.3
rev: 0.28.4
hooks:
- id: check-github-workflows
- repo: https://github.com/crate-ci/typos
rev: v1.21.0
rev: v1.22.0
hooks:
- id: typos
2 changes: 1 addition & 1 deletion docs/chapter/materials.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The lecture slides are generated from {url-slides}[markdown files].
| Example | link:example/slide-deck.html[Dark] | link:example/slide-deck.pdf[Dark PDF] | link:example/slide-deck-light.html[Light] | link:example/slide-deck-light.pdf[Light PDF] | link:export/example.zip[ZIP] | link:export/example_solution.zip[ZIP]
|===

== Homeworks
== Homework

[NOTE]
====
Expand Down
4 changes: 1 addition & 3 deletions tools/sel_tools/code_evaluation/jobs/sel.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ class ExampleEvaluationJobFactory(EvaluationJobFactory):
"""Example Evaluation Job Factory."""

@staticmethod
def create(
gitlab_projects: list[GitlabProject], homework_number: int
) -> list[EvaluationJob]:
def create(gitlab_projects: list[GitlabProject], homework_number: int) -> list[EvaluationJob]:
homework_evaluations_jobs_map = {
1: [CleanRepoJob(), CMakeBuildJob(), ExampleJob()],
2: [CleanRepoJob(), MakeTestJob(), CIStatusTestJob(gitlab_projects)],
Expand Down

0 comments on commit 2be1761

Please sign in to comment.