File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
include CHANGELOG KNOWN_BUGS INSTALL
2
2
include INTERACTIVE TODO
3
3
include Makefile MANIFEST.in MANIFEST
4
- include matplotlibrc.template matplotlibrc setup.cfg.template
4
+ include matplotlibrc.template setup.cfg.template
5
5
include __init__.py setupext.py setup.py setupegg.py
6
6
include examples/data/*
7
7
include lib/mpl_toolkits
Original file line number Diff line number Diff line change 6
6
The matplotlib build options can be modified with a setup.cfg file. See
7
7
setup.cfg.template for more information.
8
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
9
14
10
15
# This dict will be updated as we try to select the best option during
11
16
# the build process. However, values in setup.cfg will be used, if
You can’t perform that action at this time.
0 commit comments