Skip to content

Commit

Permalink
Merge pull request #12 from enthought/fix/search-for-sphinx-3
Browse files Browse the repository at this point in the history
Add missing variable definition needed for search on Sphinx 3
  • Loading branch information
mdickinson authored Apr 29, 2020
2 parents 2409abd + a8cfcd0 commit ffef741
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Enthought Sphinx Theme changelog
================================

Release 0.6.2
-------------

Release date: 2020-04-29

Fixes

* More search functionality fixes. (#12)

Release 0.6.1
-------------

Expand Down
4 changes: 3 additions & 1 deletion enthought_sphinx_theme/enthought/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@
VERSION: '{{ release|e }}',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
LINK_SUFFIX: '{{ link_suffix }}',
SOURCELINK_SUFFIX: '{{ sourcelink_suffix }}',
HAS_SOURCE: {{ has_source|lower }}
};
</script>
Expand Down Expand Up @@ -212,7 +214,7 @@
{% endif %}
{%- block document %}
<div class="bodywrapper">
<div class="body" id="spc-section-body">
<div class="body" id="spc-section-body" role="main">
{% block body %} {% endblock %}
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name='enthought_sphinx_theme',
version='0.6.1',
version='0.6.2',
author='Enthought, Inc.',
author_email='info@enthought.com',
description='Sphinx theme for Enthought products',
Expand Down

0 comments on commit ffef741

Please sign in to comment.