Closed yetanotherion closed 5 years ago
Thanks for the change, but I’d first want to ask: does distutils
generate some undesired behavior? I understand there are some differences such as where they put non-Python files or such, but for a package like this that does not have anything special, is there any difference? Doesn’t a pip
install end up anyway using setuptools
?
Also, given that setuptools
is not part of standard Python and that it can throw errors in situations in which distutils works fine, could you make a fallback mechanism? e.g.
try:
from setuptools …
except:
from distutils …
does
distutils
generate some undesired behavior?
I was not able to generate a wheel with distutils
.
could you make a fallback mechanism?
That's a good idea. Still are you ok to support both setuptools
and distutils
?
Fair enough, didn’t envision building wheels for the package. Please proceed then with switching it to setuptools
with a fallback to distutils
.
Thanks!
Switch to setuptools