mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-27 19:48:43 +08:00
52b0e16a78
I had to make a slightly modification in one of sphinx-gallery's files to make it work with scikit-image. I opened a pull request on sphinx-gallery github, hopefully we can delete the local copy after their next release.
14 lines
238 B
Python
14 lines
238 B
Python
"""
|
|
==============
|
|
Sphinx Gallery
|
|
==============
|
|
|
|
"""
|
|
import os
|
|
__version__ = '0.1.2'
|
|
|
|
|
|
def glr_path_static():
|
|
"""Returns path to packaged static files"""
|
|
return os.path.abspath(os.path.join(os.path.dirname(__file__), '_static'))
|