We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 54b105b + f812f7e commit ca275dcCopy full SHA for ca275dc
setup.py
@@ -38,7 +38,10 @@
38
# The setuptools version of sdist adds a setup.cfg file to the tree.
39
# We don't want that, so we simply remove it, and it will fall back to
40
# vanilla distutils.
41
-del setuptools.command.sdist.sdist.make_release_tree
+try:
42
+ del setuptools.command.sdist.sdist.make_release_tree
43
+except AttributeError:
44
+ pass
45
46
from distutils.errors import CompileError
47
from distutils.dist import Distribution
0 commit comments