diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2020-09-02 17:41:38 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2020-09-02 17:41:38 -0400 |
commit | c0085e87c69629ec3cf24dfce887c0fb93fa80dd (patch) | |
tree | 8e76c8663eb39a0210f3664b57d355f7cfd8e5c5 /setup.py | |
parent | 8eb9efac24a5bd7f964f6f09d142576f1b4a9e07 (diff) | |
download | python-setuptools-git-c0085e87c69629ec3cf24dfce887c0fb93fa80dd.tar.gz |
Make stdlib distutils the default again. Stop the burning. Ref #2350 and others.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ class install_with_pth(install): _pth_contents = textwrap.dedent(""" import os var = 'SETUPTOOLS_USE_DISTUTILS' - enabled = os.environ.get(var, 'local') == 'local' + enabled = os.environ.get(var, 'stdlib') == 'local' enabled and __import__('_distutils_hack').add_shim() """).lstrip().replace('\n', '; ') |