Time to use `build` from `setuptools` instead of `distutils`?
abravalheri opened this issue · 2 comments
abravalheri commented
The following feature in setuptools has been deprecated for almost 2 years and is about to be removed:
It might be a good idea to import build
directly from setuptools for the following code:
Line 2 in dd2bf34
(build
is available directly from setuptools, starting on version v62.4.0)
bsteffensmeier commented
Thanks for letting us know. I have updated the code to use the new build
from setuptools in 0be8c74 which will be included in the next Jep release(4.2.1)
abravalheri commented
Thank you!