Skip to content
Open
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,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: "v5.0.0"
rev: "v6.0.0"
hooks:
- id: check-added-large-files
exclude: ^docs/_static/k3d_(tesla|wr75)_example\.html$
Expand All @@ -26,18 +26,18 @@ repos:
- id: trailing-whitespace
types_or: [python, toml]
- repo: https://github.com/asottile/pyupgrade
rev: v3.19.1
rev: v3.21.2
hooks:
- id: pyupgrade
- repo: https://github.com/pycqa/isort # args set in pyproject.toml
rev: 6.0.1
rev: 8.0.1
hooks:
- id: isort
name: isort (python)
- id: isort
name: isort (cython)
types: [cython]
- repo: https://github.com/psf/black # args set in pyproject.toml
rev: 25.1.0
- repo: https://github.com/psf/black-pre-commit-mirror # args set in pyproject.toml
rev: 26.3.0
hooks:
- id: black
1 change: 1 addition & 0 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
python release.py <X.Y.Z>

"""

import re
import subprocess
import sys
Expand Down
1 change: 1 addition & 0 deletions src/simultipac/util/log_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
https://en.wikipedia.org/wiki/ANSI_escape_code#Colors

"""

import logging
import subprocess
import sys
Expand Down