Skip to content

Commit

Permalink
Attempt to fix 2to3 on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Feb 25, 2013
1 parent d960f03 commit f8bbd2e
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 @@ -297,7 +297,7 @@ def run_2to3(self, files):
# We need to skip certain files that have already been
# converted to Python 3.x
filtered = [x for x in files if should_2to3(x, self.build_lib)]
if sys.platform.startswith('win'):
if sys.platform.startswith('win') or True:
# doing this in parallel on windows may crash your computer
[refactor(f) for f in filtered]
else:
Expand Down

0 comments on commit f8bbd2e

Please sign in to comment.