From d84a2af3d40e6453abda403560fd95f23e43661f Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Mon, 6 Jul 2026 04:38:07 -0700 Subject: [PATCH] docs: correct Python support to 3.11-3.13 (#59572) requires-python is >=3.11,<3.14, so '3.11+' was misleading (implied 3.14+ works). Fixed in CONTRIBUTING.md and the docs-site mirror. --- CONTRIBUTING.md | 2 +- website/docs/developer-guide/contributing.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bad33481c74..46581d82003 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -109,7 +109,7 @@ A well-built third-party-product plugin can clear automated review and still be | Requirement | Notes | |-------------|-------| | **Git** | With the `git-lfs` extension installed | -| **Python 3.11+** | uv will install it if missing | +| **Python 3.11–3.13** | uv will install it if missing | | **uv** | Fast Python package manager ([install](https://docs.astral.sh/uv/)) | | **Node.js 20+** | Optional — needed for browser tools and WhatsApp bridge (matches root `package.json` engines) | diff --git a/website/docs/developer-guide/contributing.md b/website/docs/developer-guide/contributing.md index e61100a609d..e9cc9629cda 100644 --- a/website/docs/developer-guide/contributing.md +++ b/website/docs/developer-guide/contributing.md @@ -34,7 +34,7 @@ We value contributions in this order: | Requirement | Notes | |-------------|-------| | **Git** | With the `git-lfs` extension installed | -| **Python 3.11+** | uv will install it if missing | +| **Python 3.11–3.13** | uv will install it if missing | | **uv** | Fast Python package manager ([install](https://docs.astral.sh/uv/)) | | **Node.js 20+** | Optional — needed for browser tools and WhatsApp bridge (matches root `package.json` engines) |