Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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