Skip to content

Commit

Permalink
fix(rtd): Update sphinx version in rtd.
Browse files Browse the repository at this point in the history
  • Loading branch information
vinci1it2000 committed Nov 4, 2020
1 parent 70691e2 commit b3208c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -105,7 +105,7 @@

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# exclude_patterns = ['_build']
exclude_patterns = ['ciao']

# The reST default role (used for this markup: `text`) to use for all
# documents.
Expand Down
4 changes: 2 additions & 2 deletions schedula/ext/autosummary.py
Expand Up @@ -342,7 +342,7 @@ def process_generate_options(app):
'But your source_suffix does not contain .rst. Skipped.'
))
return

logger.warning((app.builder.config.exclude_patterns, app.builder.config.templates_path , app.builder.get_asset_paths()))
logger.warning(app.env.found_docs)
imported_members = app.config.autosummary_imported_members
with mock(app.config.autosummary_mock_imports):
Expand All @@ -355,7 +355,7 @@ def process_generate_options(app):
logger.warning(app.env.found_docs)

def func(app, *args):
logger.warning(app.builder.config.exclude_patterns + app.builder.config.templates_path + app.builder.get_asset_paths())
logger.warning((app.builder.config.exclude_patterns, app.builder.config.templates_path , app.builder.get_asset_paths()))
logger.warning(app.env.found_docs)
return []
def setup(app):
Expand Down

0 comments on commit b3208c4

Please sign in to comment.