From 0ec5dcd1eb1c9483947621040d72573d4d35398a Mon Sep 17 00:00:00 2001 From: Steve Canny Date: Tue, 30 Apr 2024 11:08:45 -0700 Subject: [PATCH] fix(pkg): pull lxml pin Looks like this cure is worse than the disease. While it may ease installation on Apple Silicon in some instances, it breaks installation on Python 3.12. Pull this pin and we'll just have to live with troublesome `lxml` install on certain Mac/version combinations. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ad89abd19..8d483f00b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ "Topic :: Software Development :: Libraries", ] dependencies = [ - "lxml>=3.1.0,<=4.9.2", + "lxml>=3.1.0", "typing_extensions>=4.9.0", ] description = "Create, read, and update Microsoft Word .docx files."