We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4156a9 commit 5d6120aCopy full SHA for 5d6120a
setuptools/command/easy_install.py
@@ -74,7 +74,7 @@
74
DEVELOP_DIST,
75
)
76
import pkg_resources
77
-from .. import py312compat
+from ..compat import py311
78
from .._path import ensure_directory
79
from ..extern.jaraco.text import yield_lines
80
@@ -2329,7 +2329,7 @@ def load_launcher_manifest(name):
2329
2330
2331
def _rmtree(path, ignore_errors=False, onexc=auto_chmod):
2332
- return py312compat.shutil_rmtree(path, ignore_errors, onexc)
+ return py311.shutil_rmtree(path, ignore_errors, onexc)
2333
2334
2335
def current_umask():
setuptools/py312compat.py renamed to setuptools/compat/py311.py
0 commit comments