Skip to content

Commit

Permalink
Fix platform check
Browse files Browse the repository at this point in the history
  • Loading branch information
titusz committed Jul 21, 2015
1 parent ebba1af commit ed85e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):


dependencies = ['click', 'lxml', 'defusedxml']
if platform.python_implementation() == 'PyPy':
if platform.python_implementation() != 'PyPy':
dependencies.append('scandir')


Expand Down

0 comments on commit ed85e93

Please sign in to comment.