Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 22cb2d4

Browse files
authored
Merge pull request #9424 from anntzer/sg-fixes
Minor fixes to gallery build.
2 parents 338db8e + 76153d8 commit 22cb2d4

4 files changed

Lines changed: 4 additions & 9 deletions

File tree

doc/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ def _check_deps():
132132
'scipy': 'https://docs.scipy.org/doc/scipy/reference',
133133
},
134134
'backreferences_dir': 'api/_as_gen',
135-
'subsection_order': ExplicitOrder(explicit_order_folders)
135+
'subsection_order': ExplicitOrder(explicit_order_folders),
136+
'min_reported_time': 1,
136137
}
137138

138139
plot_gallery = 'True'

examples/misc/svg_filter_line.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
"""
1111

1212
from __future__ import print_function
13-
import matplotlib
14-
15-
matplotlib.use("Svg")
1613

1714
import matplotlib.pyplot as plt
1815
import matplotlib.transforms as mtransforms

examples/misc/svg_filter_pie.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
support it.
1111
"""
1212

13-
14-
import matplotlib
15-
matplotlib.use("Svg")
16-
1713
import matplotlib.pyplot as plt
1814
from matplotlib.patches import Shadow
1915

examples/subplots_axes_and_figures/subplots_adjust.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
Subplots Adjust
44
===============
55
6-
Adjusting the spacing of margins and subplots using :func:~matplotlib.pyplot.subplots_adjust.
6+
Adjusting the spacing of margins and subplots using
7+
`~matplotlib.pyplot.subplots_adjust`.
78
"""
89
import matplotlib.pyplot as plt
910
import numpy as np

0 commit comments

Comments
 (0)