File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2+ """
3+ A module which extracts LaTeX, XML documentation from documentation/*.mdoc and from Mathics modules.
4+ It also extracts doctests as well.
5+
6+ Running LaTeX, or the tests is done elsewhere, as is viewing extracted XML docs.
7+
8+ See also `../test.py` for a command-line interface that calls this.
9+
10+ This code should be replaced by sphinx and autodoc.
11+ """
212
313from html import escape as html_escape
414import re
Original file line number Diff line number Diff line change 1+ # Optional packages which add functionality or speed things up
2+ scikit-image # FindMinimum can use this
3+ lxml # for HTML parsing used in builtin/fileformats/html
4+ wordcloud # Used in builtin/image.py by WordCloud()
5+
16# Additional packages used in testing
27pytest
38pytest-xdist
Original file line number Diff line number Diff line change @@ -100,11 +100,9 @@ def read(*rnames):
100100 "psutil" , # for $SystemMemory
101101 "llvmlite" ,
102102 "requests" ,
103- "scikit-image" ,
104- "wordcloud" , # Used in builtin/image.py by WordCloud()
105-
106- # lxml is an optional dependency for HTML parsing
107- # "lxml", # Used in builtin/fileformats/html
103+ # lxml is an optional dependency for HTML parsing used in builtin/fileformats/html
104+ # "scikit-image", optional
105+ # "wordcloud", # Used in builtin/image.py by WordCloud()
108106]
109107
110108
You can’t perform that action at this time.
0 commit comments