You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.rst
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,37 @@
1
1
Change Log
2
2
==========
3
3
4
+
v0.10.1
5
+
-------
6
+
7
+
Support for Python 3.6 dropped in this release. Requirement is Python >=3.7.
8
+
9
+
**Implemented enhancements:**
10
+
11
+
- Feature Request: ``reset_modules`` to be applied after each or all examples `#866 <https://github.com/sphinx-gallery/sphinx-gallery/issues/866>`__
12
+
- Enable ``reset_modules`` to run either before or after examples, or both `#870 <https://github.com/sphinx-gallery/sphinx-gallery/pull/870>`__ (`MatthewFlamm <https://github.com/MatthewFlamm>`__)
13
+
14
+
**Fixed bugs:**
15
+
16
+
- embed_code_links throwing <exception: list indices must be integers or slices, not str> `#879 <https://github.com/sphinx-gallery/sphinx-gallery/issues/879>`__
- Use bools for ‘plot_gallery’ in sphinx_gallery_conf `#863 <https://github.com/sphinx-gallery/sphinx-gallery/pull/863>`__ (`timhoffm <https://github.com/timhoffm>`__)
20
+
21
+
**Closed issues:**
22
+
23
+
- Idea: make galleries out of the “testing” folder to use each unit test as an example. `#875 <https://github.com/sphinx-gallery/sphinx-gallery/issues/875>`__
24
+
- Output text in dark mode is not visible `#869 <https://github.com/sphinx-gallery/sphinx-gallery/issues/869>`__
25
+
- Using a .gif image works in ``.rst`` sphinx build but not inside example generated with sphinx-gallery `#868 <https://github.com/sphinx-gallery/sphinx-gallery/issues/868>`__
26
+
- How to avoid capture of tqdm progress bars `#867 <https://github.com/sphinx-gallery/sphinx-gallery/issues/867>`__
27
+
28
+
**Merged pull requests:**
29
+
30
+
- DOC Add reference to sphinx-codeautolink `#874 <https://github.com/sphinx-gallery/sphinx-gallery/pull/874>`__ (`felix-hilden <https://github.com/felix-hilden>`__)
The name of a folder where the built Jupyter notebooks will be copied. This ensures that all the notebooks are
1022
-
in one place (though they retain their folder hierarchy) in case you'd like users to browse multiple notebook examples in one session.
1034
+
The name of a folder where the built Jupyter notebooks will be copied. This
1035
+
ensures that all the notebooks are in one place (though they retain their
1036
+
folder hierarchy) in case you'd like users to browse multiple notebook
1037
+
examples in one session.
1023
1038
use_jupyter_lab (type: bool, default: ``False``)
1024
1039
Whether the default interface activated by the Binder link will be for
1025
1040
Jupyter Lab or the classic Jupyter Notebook interface.
@@ -1142,9 +1157,9 @@ This is converted to html by the custom directive as::
1142
1157
This leads to a larger website, but clients that support the ``srcset`` tag will only
1143
1158
download the appropriate-sized images.
1144
1159
1145
-
Note that the ``.. image-sg`` directive currently ignores other ``.. image`` directive
1146
-
tags like ``width``, ``height``, and ``align``. It also only works with the *html* and
1147
-
*latex* builders.
1160
+
Note that the ``.. image-sg`` directive currently ignores other ``.. image``
1161
+
directive tags like ``width``, ``height``, and ``align``. It also only works
1162
+
with the *html* and *latex* builders.
1148
1163
1149
1164
.. _image_scrapers:
1150
1165
@@ -1381,8 +1396,8 @@ by including in your ``Makefile``:
1381
1396
@echo
1382
1397
@echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
1383
1398
1384
-
Remember that for ``Makefile`` white space is significant and the indentation are tabs
1385
-
and not spaces.
1399
+
Remember that for ``Makefile`` white space is significant and the indentation
1400
+
are tabs and not spaces.
1386
1401
1387
1402
Alternatively, you can add the ``abort_on_example_error`` option to
1388
1403
the ``sphinx_gallery_conf`` dictionary inside your ``conf.py``
@@ -1425,7 +1440,9 @@ the example script.
1425
1440
Never fail the build on error
1426
1441
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1427
1442
1428
-
Sphinx-Gallery can be configured to only log warnings when examples fail. This means that sphinx will only exit with a non-zero exit code if the ``-W`` flag is passed to ``sphinx-build``. This can be enabled by setting::
1443
+
Sphinx-Gallery can be configured to only log warnings when examples fail.
1444
+
This means that sphinx will only exit with a non-zero exit code if the ``-W``
1445
+
flag is passed to ``sphinx-build``. This can be enabled by setting::
0 commit comments