From 7d12b9a9f7a2fdc5e6bb12f891c6f4291e20e65e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 31 Dec 2023 12:34:37 +0100 Subject: [PATCH] feat: allow `lxml` requirement in range of `>=4,<6` (#523) Updates the requirements on [lxml](https://github.com/lxml/lxml) to permit the latest version. - [Release notes](https://github.com/lxml/lxml/releases) - [Changelog](https://github.com/lxml/lxml/blob/master/CHANGES.txt) - [Commits](https://github.com/lxml/lxml/compare/lxml-4.0.0...lxml-5.0.0) --- updated-dependencies: - dependency-name: lxml dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 74c653d4..13157571 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ py-serializable = "^0.16" sortedcontainers = "^2.4.0" license-expression = "^30" jsonschema = { version = "^4.18", extras=['format'], optional=true } -lxml = { version="^4", optional=true } +lxml = { version=">=4,<6", optional=true } [tool.poetry.extras] validation = ["jsonschema", "lxml"]