fix
This commit is contained in:
12
.CondaPkg/env/Lib/site-packages/setuptools/py312compat.py
vendored
Normal file
12
.CondaPkg/env/Lib/site-packages/setuptools/py312compat.py
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import sys
|
||||
import shutil
|
||||
|
||||
|
||||
def shutil_rmtree(path, ignore_errors=False, onexc=None):
|
||||
if sys.version_info >= (3, 12):
|
||||
return shutil.rmtree(path, ignore_errors, onexc=onexc)
|
||||
|
||||
def _handler(fn, path, excinfo):
|
||||
return onexc(fn, path, excinfo[1])
|
||||
|
||||
return shutil.rmtree(path, ignore_errors, onerror=_handler)
|
||||
Reference in New Issue
Block a user