From b6fcbbd00cb6d5607c9272dec452a50457bdb292 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Thu, 18 Nov 2021 21:18:26 -0500 Subject: Restore local distutils as the default. --- _distutils_hack/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '_distutils_hack') diff --git a/_distutils_hack/__init__.py b/_distutils_hack/__init__.py index 5f40996a..0299a779 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' -- cgit v1.2.1