Skip to content

Commit 4be071b

Browse files
committed
chore(release): 0.4.0
1 parent 1dadea3 commit 4be071b

File tree

6 files changed

+360
-360
lines changed

6 files changed

+360
-360
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
repos:
33
- repo: https://github.com/astral-sh/ruff-pre-commit
4-
rev: v0.5.1
4+
rev: v0.5.4
55
hooks:
66
- id: ruff
77
args: ['--fix']
88
- repo: https://github.com/astral-sh/ruff-pre-commit
9-
rev: v0.5.1
9+
rev: v0.5.4
1010
hooks:
1111
- id: ruff-format
1212
- repo: https://github.com/python-poetry/poetry
13-
rev: '1.8.2'
13+
rev: '1.8.3'
1414
hooks:
1515
- id: poetry-check
1616
- id: poetry-lock

poetry.lock

+53-53
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "archivefile"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
description = "Unified interface for tar, zip, sevenzip, and rar files"
55
authors = ["Ravencentric <[email protected]>"]
66
readme = "README.md"
@@ -51,7 +51,7 @@ all = ["bigtree", "rich"]
5151

5252
[tool.poetry.group.dev.dependencies]
5353
mypy = "^1.10.1"
54-
ruff = "^0.5.1"
54+
ruff = "^0.5.4"
5555
pytest = "^8.2.2"
5656
coverage = "^7.5.4"
5757
pre-commit = "^3.7.1"

src/archivefile/_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def print_tree(
358358
raise ModuleNotFoundError("The 'print_tree()' method requires the 'bigtree' dependency.")
359359

360360
paths = [f"{self.file.name}/{member}" for member in self.get_names()]
361-
tree = list_to_tree(paths) # type: ignore
361+
tree = list_to_tree(paths) # type: ignore
362362
tree.show(max_depth=max_depth, style=style)
363363

364364
@validate_call

0 commit comments

Comments
 (0)