- Added experimental support to auto-generate Binder links for examples via
binder
config. Note that this API may change in the future. #244 - CSS Download and binder buttons are now on the right side for large screens. This might change downstream CSS layouts. "div.sphx-glr-footer-example" can be used to capture these specific case in project-specific CSS.
- Added
ignore_pattern
configurable to allow not adding some python files into the gallery. See #346 <https://github.com/sphinx-gallery/sphinx-gallery/pull/346>` for more details.
- Fix name string_replace trips on projects with ".py" in path. See #322 sphinx-gallery#322 for more details.
- Fix __future__ imports across cells. See #308 for more details.
- Fix encoding related issues when locale is not UTF-8. See #311 for more details.
- In verbose mode, example output is printed to the console during execution of the example, rather than only at the end. See #301 for a use case where it matters.
- Fix SphinxDocLinkResolver error with sphinx 1.7. See #352 for more details.
- Removed optipng feature that was triggered when the SKLEARN_DOC_OPTIPNG variable was set. See #349 for more details.
- Dropped support for Sphinx <= 1.4.
- Added
min_reported_time
configurable. For examples that run faster than that threshold (in seconds), the execution time is not reported. - Add thumbnail_size option #283
- Use intersphinx for all function reference resolution #296
- Sphinx only directive for downloads #298
- Allow sorting subsection files #281
- We recommend using a string for
plot_gallery
rather than Python booleans, e.g.'True'
instead ofTrue
, as it avoids a warning about unicode when controlling this value via the command line switches ofsphinx-build
- Crasher in doc_resolv, in js_index.loads #287
- Fix gzip/BytesIO error #293
- Deactivate virtualenv provided by Travis #294
- Push the docs from Circle CI into github #268
- Report version to sphinx. #292
- Minor changes to log format. #285 and #291
- Implement a explicit order sortkey to specify the subsection's order within a gallery. Refer to discussion in #37, #233 and #234
- Cleanup console output during build #250
- New configuration Test #225
- Reset
sys.argv
before running each example. See #252 for more details. - Correctly re-raise errors in doc resolver. See #264.
- Allow and use https links where possible #258.
- Escape tooltips for any HTML special characters. #249
- Frequently Asked Questions added to Documentation. Why __file__ is not defined?
- Changed attribute name of Sphinx app object in #242
- Fix image path handling bug introduced in #218
- Sphinx Gallery's example back-references are deactivated by default. Now it is users responsibility to turn them on and set the directory where to store the files. See discussion in #126 and pull request #151.
- Move testing to py.test
- Include link to github repository in documentation
- Drop styling in codelinks tooltip. Replaced for title attribute which is managed by the browser.
- Gallery output is shorter when embedding links
- Circle CI testing
- Sphinx-Gallery build even if examples have Syntax errors. See #177
- Sphinx-Gallery can now build by directly calling sphinx-build from any path, no explicit need to run the Makefile from the sources directory. See #190 for more details.
- Released Sphinx 1.5 has new naming convention for auto generated files and breaks Sphinx-Gallery documentation scanner. Fixed in #178, work for linking to documentation generated with Sphinx<1.5 and for new docs post 1.5
- Code links tooltip are now left aligned with code
- Executable script to convert Python scripts into Jupyter Notebooks #148
- Sphinx-Gallery now raises an exception if the matplotlib bakend can
not be set to
'agg'
. This can happen for example if matplotlib.pyplot is imported in conf.py. See #157 for more details. - Fix
backreferences.identify_names
when module is used without attribute #173. Closes #172 and #149 - Raise FileNotFoundError when README.txt is not present in the main directory of the examples gallery(#164). Also include extra empty lines after reading README.txt to obtain the correct rendering of the html file.(#165)
- Ship a License file in PyPI release
- CSS. Now a tooltip is displayed on the source code blocks to make the doc-resolv functionality more discorverable. Function calls in the source code blocks are hyperlinks to their online documentation.
- Download buttons have a nicer look across all themes offered by Sphinx
Support on the fly theme change for local builds of the Sphinx-Gallery docs. Passing to the make target the variable theme builds the docs with the new theme. All sphinx themes are available plus read the docs online theme under the value rtd as shown in this usage example.:
$ make html theme=rtd
Test Sphinx Gallery support on Ubuntu 14 packages, drop Ubuntu 12 support. Drop support for Python 2.6 in the conda environment
- Enhanced CSS for download buttons
- Download buttons at the end of the gallery to download all python scripts or Jupyter notebooks together in a zip file. New config variable download_all_examples to toggle this effect. Activated by default
- Downloadable zip file with all examples as Python scripts and notebooks for each gallery
- Improved conversion of rst directives to markdown for the Jupyter notebook text blocks
- When seaborn is imported in a example the plot style preferences are transferred to plots executed afterwards. The CI is set up such that users can follow how to get the compatible versions of mayavi-pandas-seaborn and nomkl in a conda environment to have all the features available.
- Fix math conversion from example rst to Jupyter notebook text for inline math and multi-line equations
- Summary of failing examples with traceback at the end of the sphinx build. By default the build exits with a 1 exit code if an example has failed. A list of examples that are expected to fail can be defined in conf.py and exit the build with 0 exit code. Alternatively it is possible to exit the build as soon as one example has failed.
- Print aggregated and sorted list of computation times of all examples in the console during the build.
- For examples that create multiple figures, set the thumbnail image.
- The
plot_gallery
andabort_on_example_error
options can now be specified insphinx_gallery_conf
. The build option (-D
flag passed tosphinx-build
) takes precedence over thesphinx_gallery_conf
option.
- Failing examples are retried on every build
- Examples that use
if __name__ == '__main__'
guards are now run - Added vertical space between code output and code source in non notebook examples
- Restore the html-noplot functionality
- Gallery CSS now implicitly enforces thumbnails width
Example scripts are now available for download as IPython Notebooks #75
- Configurable filename pattern to select which example scripts are executed while building the Gallery
- Examples script update check are now by md5sum check and not date
- Broken Examples now display a Broken thumbnail in the gallery view, inside the rendered example traceback is printed. User can also set build process to abort as soon as an example fails.
- Sorting examples by script size
- Improve examples style
This release incorporates the Notebook styled examples for the gallery with PR #36
Sphinx-Gallery renames its python module name to sphinx_gallery this follows the discussion raised in #47 and resolved with #66
The gallery configuration dictionary also changes its name to sphinx_gallery_conf
From PR #36 it is decided into a new namespace convention for images, thumbnails and references. See comment
This release allows to use the Back references. This features incorporates fine grained examples galleries listing examples using a particular function. #26
- Shell script to place a local copy of Sphinx-Gallery in your project
- Support Mayavi plots in the gallery