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

[pre-commit.ci] pre-commit autoupdate #160

Merged
merged 2 commits into from
Jun 3, 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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos:
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.11.0
rev: 24.4.2
hooks:
- id: black

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
Expand All @@ -19,13 +19,13 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.1.6"
rev: "v0.4.7"
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.1
rev: v1.10.0
hooks:
- id: mypy
files: src
Expand All @@ -37,7 +37,7 @@ repos:
- textual>=0.32

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
args: [-L, "hist,iterm"]
Expand Down
1 change: 1 addition & 0 deletions src/uproot_browser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This is uproot-browser. There is no user accessible API; only a terminal
interface is provided currently.
"""

from __future__ import annotations

from ._version import version as __version__
Expand Down
1 change: 1 addition & 0 deletions src/uproot_browser/dirs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
This holds common functions for accessing a file, ROOT directories, and trees
split by colons.
"""

from __future__ import annotations

from typing import Any, Iterable
Expand Down
1 change: 0 additions & 1 deletion src/uproot_browser/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Custom exceptions for uproot-browser"""


from __future__ import annotations


Expand Down
Loading