From 004431cef43553308023a6560149b5e2f15b98be Mon Sep 17 00:00:00 2001 From: KarabasYurii <1998uriyyo@gmail.com> Date: Sat, 13 Jul 2019 16:02:31 +0300 Subject: [PATCH] Set correct predicate that skip av module in case when READTHEDOCS set --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 10a5c381..72b3d832 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ if os.environ.get('READTHEDOCS') == 'True': cffi_modules = [] - install_requires = list(filter(lambda x: x != 'av', install_requires)) + install_requires = list(filter(lambda x: not x.startswith('av'), install_requires)) setuptools.setup( name='aiortc',