From d3880fffa069a49d40e7710d590ff6b455e6a6d3 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 8 Apr 2022 13:27:30 -0400 Subject: [PATCH] pin scribe to specific version --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a58837470..351f1194e 100644 --- a/setup.py +++ b/setup.py @@ -61,12 +61,16 @@ setup( ] + ROCKSDB, extras_require={ 'torrent': ['lbry-libtorrent'], - 'lint': ['pylint==2.10.0'], + 'lint': [ + 'pylint==2.10.0' + ], 'test': [ 'coverage', 'jsonschema==4.4.0', ], - 'scribe': ['scribe @ git+https://github.com/lbryio/scribe.git'], + 'scribe': [ + 'scribe @ git+https://github.com/lbryio/scribe.git#311db529a03de7fce43ed8579f51ac23a1a884ea' + ] }, classifiers=[ 'Framework :: AsyncIO',