Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Attempt to fix 2to3 on Travis
  • Loading branch information
mdboom committed Feb 25, 2013
commit f8bbd2e006fd13bbb2961a9dee5b89c49f38adb4
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