From 02cbcef4fd399fc77acb7889240e5ba5d6886868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Tue, 16 Apr 2024 11:44:08 +0200 Subject: [PATCH] Allow to use version 1 of python-jsonpath in CI scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JSONPath is now a RFC instead of a draft so the major release was bumped Signed-off-by: Kévin Commaille --- scripts/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/requirements.txt b/scripts/requirements.txt index 0b39666a..fa84733e 100644 --- a/scripts/requirements.txt +++ b/scripts/requirements.txt @@ -4,7 +4,7 @@ # we need at least version 4.18.0 for support of referencing library. jsonschema >= 4.18.0 -python-jsonpath == 0.9.0 +python-jsonpath >= 1.0.0 attrs >= 23.1.0 PyYAML >= 3.12 requests >= 2.18.4