summaryrefslogtreecommitdiff
path: root/_distutils_hack
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-09-02 17:41:38 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-09-02 17:41:38 -0400
commitc0085e87c69629ec3cf24dfce887c0fb93fa80dd (patch)
tree8e76c8663eb39a0210f3664b57d355f7cfd8e5c5 /_distutils_hack
parent8eb9efac24a5bd7f964f6f09d142576f1b4a9e07 (diff)
downloadpython-setuptools-git-c0085e87c69629ec3cf24dfce887c0fb93fa80dd.tar.gz
Make stdlib distutils the default again. Stop the burning. Ref #2350 and others.
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 2bc6df7a..3325817b 100644
--- a/_distutils_hack/__init__.py
+++ b/_distutils_hack/__init__.py
@@ -37,7 +37,7 @@ def enabled():
"""
Allow selection of distutils by environment variable.
"""
- which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'local')
+ which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib')
return which == 'local'