Skip to content

Commit

Permalink
don't try to install lz4 on windows (#2115)
Browse files Browse the repository at this point in the history
Currently LZ4 fails to build on Windows:
steeve/python-lz4#27
  • Loading branch information
rutsky authored and tardyp committed Apr 12, 2016
1 parent ff41126 commit f877485
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion master/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,12 +433,17 @@ def define_plugin_entries(groups):
'txrequests',
'future',
'pyjade',
'lz4',
'boto',
'moto',
'txgithub',
'mock',
]
if sys.platform != 'win32':
test_deps += [
# LZ4 fails to build on Windows:
# https://github.com/steeve/python-lz4/issues/27
'lz4',
]

setup_args['tests_require'] = test_deps

Expand Down

0 comments on commit f877485

Please sign in to comment.