summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2021-11-06 10:59:22 -0400
committerDave Wallace <dwallacelf@gmail.com>2021-11-06 17:33:14 +0000
commit51a037daf2dca92e53d5991b5df850265c5a0784 (patch)
treef92d878712897d3ac8c88fefa4a75488ad0b5f24 /test
parent4c276f073f0205f67352b5198d412b541a077c5e (diff)
tests docs: fix jsonschema dependency
- docs requires jsonschema which is only supported on python 3.7 or newer. This causes 'make test' to fail on Ubuntu 18.04 Type: fix Fixes: 9ad39c026 Change-Id: I0935c569ac102ea1dba6112f458e6ee10330e474 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/requirements-3.txt2
-rw-r--r--test/requirements.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/requirements-3.txt b/test/requirements-3.txt
index 654f98f1c4a..78578234596 100644
--- a/test/requirements-3.txt
+++ b/test/requirements-3.txt
@@ -135,7 +135,7 @@ jinja2==3.0.2 \
--hash=sha256:827a0e32839ab1600d4eb1c4c33ec5a8edfbc5cb42dafa13b81f182f97784b45 \
--hash=sha256:8569982d3f0889eed11dd620c706d39b60c36d6d25843961f33f77fb6bc6b20c
# via sphinx
-jsonschema==4.1.2 \
+jsonschema==4.1.2 ; python_version >= "3.7" \
--hash=sha256:166870c8ab27bd712a8627e0598de4685bd8d199c4d7bd7cacc3d941ba0c6ca0 \
--hash=sha256:5c1a282ee6b74235057421fd0f766ac5f2972f77440927f6471c9e8493632fac
# via -r requirements.txt
diff --git a/test/requirements.txt b/test/requirements.txt
index 661fca26c05..a9c93f45450 100644
--- a/test/requirements.txt
+++ b/test/requirements.txt
@@ -19,4 +19,4 @@ sphinx-rtd-theme # MIT
noiseprotocol # MIT
recommonmark # MIT
pyyaml # MIT
-jsonschema # MIT
+jsonschema; python_version >= '3.7' # MIT