aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/setuptools/py3/_distutils_hack/__init__.py
diff options
context:
space:
mode:
authorshadchin <shadchin@yandex-team.com>2023-12-12 21:14:39 +0300
committershadchin <shadchin@yandex-team.com>2023-12-12 21:39:21 +0300
commit2ce9cccb9b0bdd4cd7a3491dc5cbf8687cda51de (patch)
treea412d03dc02b70689ae5cb6dd6178c79f0c573f5 /contrib/python/setuptools/py3/_distutils_hack/__init__.py
parent4c3a87e9ad4684ade203e501dd9ce64cd95d5a0e (diff)
downloadydb-2ce9cccb9b0bdd4cd7a3491dc5cbf8687cda51de.tar.gz
Support override `distutils` from `setuptools`
Diffstat (limited to 'contrib/python/setuptools/py3/_distutils_hack/__init__.py')
-rw-r--r--contrib/python/setuptools/py3/_distutils_hack/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/setuptools/py3/_distutils_hack/__init__.py b/contrib/python/setuptools/py3/_distutils_hack/__init__.py
index 51da093e5d6..b951c2defd0 100644
--- a/contrib/python/setuptools/py3/_distutils_hack/__init__.py
+++ b/contrib/python/setuptools/py3/_distutils_hack/__init__.py
@@ -44,7 +44,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'