From dd9ef90773d4bdd00da63bc987fb3d45a07e08dd Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Sat, 17 Jan 2026 14:09:18 -0500 Subject: [PATCH] 9.0.10 - Support Python 3.14+ --- CHANGELOG.md | 4 ++++ parsedmarc/constants.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 948e64a..b7b2bf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 9.0.10 + +- Support Python 3.14+ + ## 9.0.9 ### Fixes diff --git a/parsedmarc/constants.py b/parsedmarc/constants.py index 4ce60b5..3afe5c2 100644 --- a/parsedmarc/constants.py +++ b/parsedmarc/constants.py @@ -1,3 +1,3 @@ -__version__ = "9.0.9" +__version__ = "9.0.10" USER_AGENT = f"parsedmarc/{__version__}" diff --git a/pyproject.toml b/pyproject.toml index c64b783..fd1f797 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python :: 3" ] -requires-python = ">=3.9, <3.14" +requires-python = ">=3.9" dependencies = [ "azure-identity>=1.8.0", "azure-monitor-ingestion>=1.0.0", @@ -48,7 +48,7 @@ dependencies = [ "imapclient>=2.1.0", "kafka-python-ng>=2.2.2", "lxml>=4.4.0", - "mailsuite>=1.11.1", + "mailsuite>=1.11.2", "msgraph-core==0.2.2", "opensearch-py>=2.4.2,<=3.0.0", "publicsuffixlist>=0.10.0",