kaldi-asr / kaldi

kaldi-asr/kaldi is the official location of the Kaldi project.
http://kaldi-asr.org
Other
14.18k stars 5.32k forks source link

[tools] Replace uses of Python distutils for 3.12 compatibility #4883

Closed eginhard closed 10 months ago

eginhard commented 11 months ago

The distutils packages has been removed in Python 3.12: https://docs.python.org/3.11/distutils/index.html

The sysconfig package is available since Python 3.2 and provides the necessary replacement functionality: https://docs.python.org/3/library/sysconfig.html

Note, there is one remaining distutils usage in https://github.com/kaldi-asr/kaldi/blob/a670447e047331150753fb42cc926a6d4faa2606/egs/aspire/s5/local/multi_condition/check_version.sh#L22 but afaict there is no suitable replacement for this in the standard library.