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.
1 parent 107bddd commit 38b7a4bCopy full SHA for 38b7a4b
1 file changed
setup.py
@@ -10,7 +10,10 @@
10
# distutils will copy if os.link is not available, so this is a hack
11
# to force copying
12
import os
13
-del os.link
+try:
14
+ del os.link
15
+except AttributeError:
16
+ pass
17
18
# This dict will be updated as we try to select the best option during
19
# the build process. However, values in setup.cfg will be used, if
0 commit comments