Skip to content

Commit

Permalink
Set correct predicate that skip av module in case when READTHEDOCS set
Browse files Browse the repository at this point in the history
  • Loading branch information
uriyyo authored and jlaine committed Jul 13, 2019
1 parent 520468c commit 004431c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 004431c

Please sign in to comment.