Skip to content

Commit

Permalink
Fix sphinx gallery issue (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored May 11, 2021
1 parent fcd52c0 commit 8493f96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Add explicit `setuptools` requirement. @hrnciar (#596)
- Fix issue with generated custom classes that use a custom fields name (e.g., PyNWB uses `__nwbfields__` instead
of `__fields__`). @rly (#598)
- Fix issue with Sphinx Gallery. @rly (#601)

## HDMF 2.5.1 (April 23, 2021)

Expand Down
5 changes: 2 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@
'examples_dirs': ['../gallery'],
# path where to save gallery generated examples
'gallery_dirs': ['tutorials'],
'subsection_order': ExplicitOrder(['../gallery/general', '../gallery/domain']),
# 'subsection_order': ExplicitOrder(['../gallery/section1', '../gallery/section2']),
'backreferences_dir': 'gen_modules/backreferences',
'download_section_examples': False,
'min_reported_time': 5,
'remove_config_comments': True
}
Expand All @@ -74,7 +73,7 @@
'numpy': ('https://numpy.org/doc/stable/', None),
'scipy': ('https://docs.scipy.org/doc/scipy/reference', None),
'matplotlib': ('https://matplotlib.org', None),
'h5py': ('http://docs.h5py.org/en/latest/', None),
'h5py': ('https://docs.h5py.org/en/latest/', None),
'pandas': ('https://pandas.pydata.org/pandas-docs/stable/', None),
}

Expand Down

0 comments on commit 8493f96

Please sign in to comment.