Skip to content
Snippets Groups Projects
Commit fd9684b5 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix doc building

parent 7780c9ed
No related branches found
No related tags found
1 merge request!19Add utilities to compute ROI performance metrics
Pipeline #
......@@ -249,6 +249,12 @@ skimage_version = '.'.join(skimage_version.split('.')[:2])
intersphinx_mapping['http://scikit-image.org/docs/%s.x' % skimage_version] = \
None
# Add PIL link
pil_version = pkg_resources.require('pillow')[0].version
pil_version = '.'.join(pil_version.split('.')[:2])
intersphinx_mapping['http://pillow.readthedocs.io/en/%s.x' % pil_version] = \
None
# We want to remove all private (i.e. _. or __.__) members
# that are not in the list of accepted functions
accepted_private_functions = ['__array__']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment