##// END OF EJS Templates
setup: use setuptools on Windows (issue5400)...
Gregory Szorc -
r31289:718a57e9 default
parent child Browse files
Show More
@@ -63,7 +63,10 b' import re'
63 63 import shutil
64 64 import tempfile
65 65 from distutils import log
66 if 'FORCE_SETUPTOOLS' in os.environ:
66 # We have issues with setuptools on some platforms and builders. Until
67 # those are resolved, setuptools is opt-in except for platforms where
68 # we don't have issues.
69 if os.name == 'nt' or 'FORCE_SETUPTOOLS' in os.environ:
67 70 from setuptools import setup
68 71 else:
69 72 from distutils.core import setup
General Comments 0
You need to be logged in to leave comments. Login now