Skip to content
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
Expand All @@ -23,15 +23,15 @@ repos:
- id: detect-private-key

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.15.2
hooks:
- id: pyupgrade
args: ["--py38-plus"]
name: Upgrade code
exclude: versioneer.py

- repo: https://github.com/crate-ci/typos
rev: typos-v0.10.21
rev: v1.20.7
hooks:
- id: typos
# empty to do not write fixes
Expand All @@ -57,7 +57,7 @@ repos:
# - id: mypy

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.1
rev: v0.3.5
hooks:
# use black formatting
- id: ruff-format
Expand Down
1 change: 1 addition & 0 deletions tests/test_core_lookup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Testing a few basic cachier interfaces."""

import pytest

from cachier import cachier, get_default_params
Expand Down
1 change: 0 additions & 1 deletion tests/test_general.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Non-core-specific tests for cachier."""


import functools
import os
import queue
Expand Down