v0.5.1's rotate="size" fix added an unconditional os.remove(dest) at backup_count<=0 in make_rotator to bound the live file, but the rotator is shared with rotate="daily" and had no mode awareness - every midnight roll under daily with backup_count=0 was deleting the just-rolled log instead of leaving it unpruned. make_rotator/attach_rolling now take rotate_mode and gate the delete-on-land branch to "size" only, matching the documented contract that only size always bounds the live file. Bump 0.6.1 -> 0.6.2. Signed-off-by: disqualifier <dev@disqualifier.me>
14 lines
343 B
TOML
14 lines
343 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "log_setup"
|
|
version = "0.6.2"
|
|
description = "stdlib app-entry-point logging setup: live run.log, rotation, gzip, retention, consistent format"
|
|
requires-python = ">=3.10"
|
|
dependencies = []
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/log_setup"]
|