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 6397fe9 commit 63405ffCopy full SHA for 63405ff
doc/make.py
@@ -236,6 +236,12 @@ def all():
236
os.chdir(os.path.dirname(os.path.join(current_dir, __file__)))
237
copy_if_out_of_date('../INSTALL', 'users/installing.rst')
238
239
+# Create the examples symlink, if it doesn't exist
240
+if not os.path.exists('mpl_examples'):
241
+ if hasattr(os, 'symlink'):
242
+ os.symlink('../examples', 'mpl_examples')
243
+ else:
244
+ shutil.copytree('../examples', 'mpl_examples')
245
246
if len(sys.argv)>1:
247
if '--small' in sys.argv[1:]:
0 commit comments