distutils will get removed in python 3.12. It is usage is now replaced by sysconfig. For py2 version code stays in specfile. https://docs.python.org/3/whatsnew/3.10.html#distutils-deprecated Related: https://pagure.io/koji/issue/3514
8 lines
230 B
Python
8 lines
230 B
Python
# prints site-packages path for use in Makefiles
|
|
|
|
try:
|
|
from distutils.sysconfig import get_python_lib
|
|
print(get_python_lib())
|
|
except ImportError:
|
|
import sysconfig
|
|
print(sysconfig.get_path('purelib', 'rpm_prefix'))
|