From 06d0809bb29f561051dfcc142c03a9d96f439f89 Mon Sep 17 00:00:00 2001 From: Guillaume FORTAINE Date: Tue, 20 Jan 2026 12:25:30 +0100 Subject: [PATCH] fix: relax pywin32 version constraint to >=307 The pinned pywin32==307 causes dependency conflicts with other packages like mcp (Model Context Protocol) which requires pywin32>=310. Changing to >=307 allows compatibility with newer pywin32 versions while maintaining the minimum version requirement. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1c09ca5..b7e4605 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ keywords = ["Docx"] dependencies = [ "lxml>=5.0.0", "typing-extensions>=4.12.2,<5", - "pywin32==307 ; sys_platform == 'windows'", + "pywin32>=307 ; sys_platform == 'windows'", ] classifiers = [ "Development Status :: 5 - Production/Stable",