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 2e8e896 commit bb6ad27Copy full SHA for bb6ad27
1 file changed
setup.py
@@ -6,6 +6,11 @@
6
The matplotlib build options can be modified with a setup.cfg file. See
7
setup.cfg.template for more information.
8
"""
9
+# distutils is breaking our sdists for files in symlinked dirs.
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
14
15
# This dict will be updated as we try to select the best option during
16
# the build process. However, values in setup.cfg will be used, if
0 commit comments