Skip to content

Commit

Permalink
⬆️ Bump pre-commit repos.
Browse files Browse the repository at this point in the history
  • Loading branch information
rafalkrupinski committed Oct 21, 2024
1 parent 974e312 commit 47b8e7a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default_language_version:
python: '3.12'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-merge-conflict
Expand All @@ -15,13 +15,15 @@ repos:
exclude: ^tests/test_e2e/
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.10
rev: v0.7.0
hooks:
- id: ruff
name: ruff-check
- id: ruff-format
pass_filenames: false
args:
- --check
- --fix
- id: ruff-format
pass_filenames: false
- repo: https://github.com/python-poetry/poetry
rev: 1.8.3
hooks:
Expand All @@ -30,7 +32,7 @@ repos:
args:
- --no-update
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.10.1
rev: v1.12.1
hooks:
- id: mypy
args:
Expand Down
1 change: 1 addition & 0 deletions tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import jinja2
import pytest

import rybak
import rybak.jinja
import rybak.mako
Expand Down
1 change: 1 addition & 0 deletions tests/test_jinja.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import pytest
from jinja2 import Environment, FileSystemLoader

from rybak.jinja import JinjaAdapter


Expand Down
1 change: 1 addition & 0 deletions tests/test_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from typing import Optional, Set, Tuple

import jinja2

import rybak
import rybak.jinja

Expand Down

0 comments on commit 47b8e7a

Please sign in to comment.