Skip to content

Commit

Permalink
update order and remove examples
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindougherty-noaa committed Jul 9, 2024
1 parent 6a7ceb7 commit 953dc6b
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
sys.path.insert(0, str(Path(__file__).parent.resolve()))

import matplotlib
# from sphinx_gallery
from sphinx_gallery.sorting import ExplicitOrder

import emcpy

Expand Down Expand Up @@ -58,6 +58,18 @@
gd = gd.replace('gallery', 'examples')
example_dirs += [f'../galleries/{gd}']

# Sphinx gallery configuration
subsection_order = ExplicitOrder([
'../plot_types/basic',
'../plot_types/statistical',
'../plot_types/gridded',
'../plot_types/map',
'../examples/line_plots',
'../examples/scatter_plots',
'../examples/histograms',
'../examples/map_plots'
])

sphinx_gallery_conf = {
'capture_repr': (),
'filename_pattern': '^((?!skip_).)*$',
Expand Down

0 comments on commit 953dc6b

Please sign in to comment.