Re: [XEN PATCH v2 2/5] tools: convert setup.py to use setuptools

2023-09-18 Thread Javi Merino
On Tue, Sep 12, 2023 at 11:22:56AM +0100, Andrew Cooper wrote: > On 11/09/2023 5:51 pm, Javi Merino wrote: > > From: Marek Marczykowski-Górecki > > > > Python distutils is deprecated and is going to be removed in Python > > 3.12. Migrate to setuptools. > > Setuptools in Python 3.11 complains: > >

Re: [XEN PATCH v2 2/5] tools: convert setup.py to use setuptools

2023-09-12 Thread Andrew Cooper
On 11/09/2023 5:51 pm, Javi Merino wrote: > From: Marek Marczykowski-Górecki > > Python distutils is deprecated and is going to be removed in Python > 3.12. Migrate to setuptools. > Setuptools in Python 3.11 complains: > SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and

[XEN PATCH v2 2/5] tools: convert setup.py to use setuptools

2023-09-11 Thread Javi Merino
From: Marek Marczykowski-Górecki Python distutils is deprecated and is going to be removed in Python 3.12. Migrate to setuptools. Setuptools in Python 3.11 complains: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools. Keep using setup