flipperzero_protobuf_py icon indicating copy to clipboard operation
flipperzero_protobuf_py copied to clipboard

Remove deprecated `distutils` dependency (PEP 632)

Open NonlinearFruit opened this issue 1 year ago • 0 comments

distutils is deprecated in Python 3.10+ (source).

It seems on the only place that references it is in setup.py (source)

from distutils.command.install_scripts import install_scripts

The migration advice (source) recommends setuptools as the best alternative for distutils.command but it also looks like the references to install_scripts have been commented out (source) so the import might not be necessary

NonlinearFruit avatar Dec 18 '23 19:12 NonlinearFruit