RedHatQE / pylero

Python wrapper for the Polarion WSDL API
https://redhatqe.github.io/pylero/
MIT License
37 stars 25 forks source link

Remove distutils in setup.py #72

Closed waynesun09 closed 1 year ago

waynesun09 commented 2 years ago

The distutils module is deprecated in python 3.10 and will be removed in 3.12:

https://www.python.org/dev/peps/pep-0632

within the setup.py, scheme is used to copy data files:

https://github.com/RedHatQE/pylero/blob/main/setup.py#L2

need be updated with another way with setuptools.

While this depends on: https://github.com/pypa/setuptools/issues/2936

with "purelib" could not be found.