Skip to content

Commit

Permalink
Merge 94c84b4 into 756d8a6
Browse files Browse the repository at this point in the history
  • Loading branch information
wiredfool committed Feb 1, 2016
2 parents 756d8a6 + 94c84b4 commit aeadcd5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mp_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,14 @@ def install():

fl_pypy3 = hasattr(sys, 'pypy_version_info') and sys.version_info > (3, 0)
fl_win = sys.platform.startswith('win')
fl_cygwin = sys.platform.startswith('cygwin')

if fl_pypy3:
# see https://github.com/travis-ci/travis-ci/issues/3587
print("Single threaded build for pypy3")
return

if fl_win:
if fl_win or fl_cygwin:
#windows barfs on multiprocessing installs
print("Single threaded build for windows")
return
Expand Down

0 comments on commit aeadcd5

Please sign in to comment.