Remove hardcoded libpython binaries and add debug step
All checks were successful
build / build-linux (push) Successful in 16s
All checks were successful
build / build-linux (push) Successful in 16s
This commit is contained in:
18
venv/lib/python3.12/site-packages/setuptools/modified.py
Normal file
18
venv/lib/python3.12/site-packages/setuptools/modified.py
Normal file
@@ -0,0 +1,18 @@
|
||||
try:
|
||||
# Ensure a DistutilsError raised by these methods is the same as distutils.errors.DistutilsError
|
||||
from distutils._modified import (
|
||||
newer,
|
||||
newer_group,
|
||||
newer_pairwise,
|
||||
newer_pairwise_group,
|
||||
)
|
||||
except ImportError:
|
||||
# fallback for SETUPTOOLS_USE_DISTUTILS=stdlib, because _modified never existed in stdlib
|
||||
from ._distutils._modified import (
|
||||
newer,
|
||||
newer_group,
|
||||
newer_pairwise,
|
||||
newer_pairwise_group,
|
||||
)
|
||||
|
||||
__all__ = ['newer', 'newer_pairwise', 'newer_group', 'newer_pairwise_group']
|
||||
Reference in New Issue
Block a user