aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-07-03 18:07:21 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-07-03 18:07:21 -0400
commit812fc057934b119c9680d8e79c9860bbc36c8b5b (patch)
tree5872cea2b145da603bd08cc44fa0957dc84f7c06 /setuptools
parente7e5817e442b01cb199bfc75c7098fb198fdc3ba (diff)
downloadexternal_python_setuptools-812fc057934b119c9680d8e79c9860bbc36c8b5b.tar.gz
external_python_setuptools-812fc057934b119c9680d8e79c9860bbc36c8b5b.tar.bz2
external_python_setuptools-812fc057934b119c9680d8e79c9860bbc36c8b5b.zip
Disable adopted distutils while troubleshooting #2228 and #2230.
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 7a1f9f4f..a6cbe132 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -3,7 +3,8 @@
import os
import functools
-import setuptools.distutils_patch # noqa: F401
+# Disabled for now due to: #2228, #2230
+# import setuptools.distutils_patch # noqa: F401
import distutils.core
import distutils.filelist