From 37eb55375a6cfb1cd6fc492de0ec8ff8cd7b7ab9 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 6 Apr 2022 20:28:20 -0400 Subject: [PATCH] only install jsonschema during testing --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 94689d1b2..a58837470 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,6 @@ setup( 'multidict==4.6.1', 'coincurve==15.0.0', 'pbkdf2==1.3', - 'jsonschema==4.4.0', 'attrs==18.2.0', 'pylru==1.1.0', 'elasticsearch==7.10.1', @@ -63,7 +62,10 @@ setup( extras_require={ 'torrent': ['lbry-libtorrent'], 'lint': ['pylint==2.10.0'], - 'test': ['coverage'], + 'test': [ + 'coverage', + 'jsonschema==4.4.0', + ], 'scribe': ['scribe @ git+https://github.com/lbryio/scribe.git'], }, classifiers=[