From e98fdfa96ba53b0389b850246ca380abe7cd6b0f Mon Sep 17 00:00:00 2001 From: Kili Date: Wed, 4 Mar 2026 18:36:15 +0100 Subject: [PATCH] Fix Python 3.14 support metadata and require imapclient 3.1.0 (#662) --- README.md | 2 +- docs/source/index.md | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9cd7ca4..d762eb3 100644 --- a/README.md +++ b/README.md @@ -61,4 +61,4 @@ for RHEL or Debian. | 3.11 | ✅ | Actively maintained; supported until June 2028 (Debian 12) | | 3.12 | ✅ | Actively maintained; supported until May 2035 (RHEL 10) | | 3.13 | ✅ | Actively maintained; supported until June 2030 (Debian 13) | -| 3.14 | ✅ | Actively maintained | +| 3.14 | ✅ | Supported (requires `imapclient>=3.1.0`) | diff --git a/docs/source/index.md b/docs/source/index.md index c6e2c10..2c18816 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -61,7 +61,7 @@ for RHEL or Debian. | 3.11 | ✅ | Actively maintained; supported until June 2028 (Debian 12) | | 3.12 | ✅ | Actively maintained; supported until May 2035 (RHEL 10) | | 3.13 | ✅ | Actively maintained; supported until June 2030 (Debian 13) | -| 3.14 | ✅ | Actively maintained | +| 3.14 | ✅ | Supported (requires `imapclient>=3.1.0`) | ```{toctree} :caption: 'Contents' diff --git a/pyproject.toml b/pyproject.toml index b223f9a..056a312 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ requires = [ "hatchling>=1.27.0", ] -requires_python = ">=3.10,<3.14" +requires_python = ">=3.10,<3.15" build-backend = "hatchling.build" [project] @@ -45,7 +45,7 @@ dependencies = [ "google-auth-httplib2>=0.1.0", "google-auth-oauthlib>=0.4.6", "google-auth>=2.3.3", - "imapclient>=2.1.0", + "imapclient>=3.1.0", "kafka-python-ng>=2.2.2", "lxml>=4.4.0", "mailsuite>=1.11.2",