Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9b4e77d

Browse filesBrowse files
committed
Merge pull request #1784 from mdboom/travis/permission_error
Attempt to fix Travis "permission denied" error for Python 3
2 parents d960f03 + f2410a5 commit 9b4e77d
Copy full SHA for 9b4e77d

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def run_2to3(self, files):
297297
# We need to skip certain files that have already been
298298
# converted to Python 3.x
299299
filtered = [x for x in files if should_2to3(x, self.build_lib)]
300-
if sys.platform.startswith('win'):
300+
if sys.platform.startswith('win') or 'TRAVIS' in os.environ:
301301
# doing this in parallel on windows may crash your computer
302302
[refactor(f) for f in filtered]
303303
else:

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.