summaryrefslogtreecommitdiff
path: root/_distutils_hack
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-12-19 19:24:54 -0500
committerGitHub <noreply@github.com>2021-12-19 19:24:54 -0500
commitf7a55da560b35c5edff2795a5c9ee5ac3985668f (patch)
treee43339492feb90af13934d004c07e7e6bdb93e95 /_distutils_hack
parented23173bceca05b0c5b05cfab8e201dd1f31c99f (diff)
parent42b51eb3d5945a52256a55417e26807416a86ddd (diff)
downloadpython-setuptools-git-f7a55da560b35c5edff2795a5c9ee5ac3985668f.tar.gz
Merge pull request #2896 from pypa/feature/local-distutils
Restore local distutils as the default.
Diffstat (limited to '_distutils_hack')
-rw-r--r--_distutils_hack/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_distutils_hack/__init__.py b/_distutils_hack/__init__.py
index f7074162..ae97a0b2 100644
--- a/_distutils_hack/__init__.py
+++ b/_distutils_hack/__init__.py
@@ -42,7 +42,7 @@ def enabled():
"""
Allow selection of distutils by environment variable.
"""
- which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib')
+ which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local')
return which == 'local'