From 2a731822f63abd6ebeab1009907c9c9fb5af3196 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 21 Dec 2024 05:49:34 -0600 Subject: [PATCH] docs(CHANGES) Note Python 3.8 deprecation, ruff fixes --- CHANGES | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGES b/CHANGES index 767b7d2..cad9153 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,24 @@ You can test the unpublished version of cihai-cli before its released, see +### Breaking changes + +- Drop Python 3.8 (#323) + + The minimum version of Python in this and future releases is Python 3.9. + + Python 3.8 reached end-of-life status on October 7th, 2024 (see PEP 569). + +### Development + +- Aggressive automated lint fixes via `ruff` (#323) + + via ruff v0.8.4, all automated lint fixes, including unsafe and previews were applied for Python 3.9: + + ```sh + ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format . + ``` + ## cihai-cli 0.29.0 (2024-11-26) _Maintenance only, no bug fixes, or new features_