From 8757ac1c8bb022c1cd830d47ad43e1558df66685 Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Sat, 16 Sep 2023 23:45:03 -0500 Subject: [PATCH] build: Restrict jq to jqlang pre v1.7 * Place an upper limit on jq of '<1.6.0' as jq (the Python library) v1.6.x+ are compatible with jq (the language) v1.7+ and packtivity is currently compatible with jq (the language) v1.6. - This should be viewed as a temporary stopgap measure to avoid large yadage ecosystem breakage and should be reverted as soon as a workaround is found. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3ddd297..797616e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ "glob2", "jsonpointer", "jsonpath-rw", - "jq", + "jq>=1.0.0,<1.6.0", # FIXME c.f. https://github.com/yadage/packtivity/issues/96 "yadage-schemas", "mock", "checksumdir",