diff options
author | shadchin <shadchin@yandex-team.com> | 2023-12-12 21:14:39 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2023-12-12 21:39:21 +0300 |
commit | 2ce9cccb9b0bdd4cd7a3491dc5cbf8687cda51de (patch) | |
tree | a412d03dc02b70689ae5cb6dd6178c79f0c573f5 /contrib/python/setuptools/py3/_distutils_hack/__init__.py | |
parent | 4c3a87e9ad4684ade203e501dd9ce64cd95d5a0e (diff) | |
download | ydb-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__.py | 2 |
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' |