From 6b27ef53e27b8100ecea3c925d3dba89ed914e2c Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sat, 7 Sep 2024 17:32:57 -0700 Subject: [PATCH] Caveat Python 3.13 support (#4448) Note the actual release workflow will probably fail as it currently stands, I anticipate we'd need to add CIBW_SKIP --- CHANGES.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 2ca5461f19f..b9909b80149 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,7 +6,10 @@ -- Black now officially supports Python 3.13 (#4436) +- Black is now officially tested with Python 3.13. Note that Black does not yet provide + mypyc-compiled wheels for Python 3.13, so performance may be slower than on other + versions of Python. We will provide 3.13 mypyc-compiled wheels in a future release. + (#4436) - Black will issue an error when used with Python 3.12.5, due to an upstream memory safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please use Python 3.12.6 or Python 3.12.4 instead. (#4447)