Skip to content

Commit

Permalink
ignore cloudknot examples
Browse files Browse the repository at this point in the history
  • Loading branch information
36000 committed Oct 9, 2020
1 parent f1e786f commit c5cac51
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.

import sys, os
from _progressbars import reset_progressbars
from plotly.io._sg_scraper import plotly_sg_scraper
import sys
import os

sys.path.insert(0, os.path.abspath('.'))
sys.path.append(os.path.abspath('sphinxext'))
Expand Down Expand Up @@ -77,7 +80,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path .
exclude_patterns = []
exclude_patterns = ["examples/cloudknot_*"]

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Expand Down Expand Up @@ -179,10 +182,8 @@
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}

from plotly.io._sg_scraper import plotly_sg_scraper
image_scrapers = ('matplotlib', plotly_sg_scraper,)

from _progressbars import reset_progressbars

sphinx_gallery_conf = {
# path to your examples scripts
Expand All @@ -197,5 +198,3 @@
autoapi_type = 'python'
autoapi_dirs = ['../../AFQ']
autoapi_ignore = ['*test*', '*_fixes*', '*version*', 'pyAFQ', 'License']


0 comments on commit c5cac51

Please sign in to comment.