From d9d39dfc412f0033e14211707bfd2c3fb40cec22 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 18 Aug 2026 19:11:12 +0000 Subject: [PATCH] Allow lxml 6.x by raising the upper bound. Poetry caret ^5.3.0 excluded lxml 6.0+, which blocked installs that already require 6.0.2. Keep 5.3.0 as the floor and allow the 6.x series (<7). Co-authored-by: Tony Jin <407243179@qq.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5026ad2..1a35768 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ include = ["*/assets/*"] [tool.poetry.dependencies] python = "^3.8" -lxml = "^5.3.0" +lxml = ">=5.3.0,<7.0.0" [tool.poetry.extras] opencv-python = ["opencv-python-headless"]