8000
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.
1 parent 54b105b commit f812f7eCopy full SHA for f812f7e
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