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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
stages:
- commit-msg
repo: https://github.com/commitizen-tools/commitizen
rev: v4.10.0
rev: v4.12.1
- hooks:
- id: check-useless-excludes
repo: meta
Expand All @@ -18,7 +18,7 @@ repos:
- hooks:
- id: black
repo: https://github.com/python/black
rev: 25.12.0
rev: 26.1.0
- hooks:
- id: check-added-large-files
args: [--maxkb=10000]
Expand Down Expand Up @@ -51,7 +51,7 @@ repos:
rev: v6.0.0
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.14.8
rev: v0.14.14
hooks:
# Run the linter.
- id: ruff
Expand Down
1 change: 0 additions & 1 deletion risuclient/shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import tempfile
import sys


if sys.version_info >= (3, 4):
# Handle imp deprecation towards importlib

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

command = "git tag|sort -V|grep -v ^[a-Z]|grep -v 2017|tail -1"
proc = subprocess.Popen([command], stdout=subprocess.PIPE, shell=True)
(out, err) = proc.communicate()
out, err = proc.communicate()

version = out.strip().decode("utf-8")

Expand Down
Loading