Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): pre-commit.ci autoupdate #27

Merged
merged 2 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading