File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 2323 - name : Install dependencies
2424 run : |
2525 python3 -m pip install --upgrade pip
26- python3 -m pip install sphinx sphinx-rtd-theme sphinxcontrib-napoleon sphinx-multiversion
26+ python3 -m pip install sphinx sphinx-rtd-theme sphinxcontrib-napoleon sphinx-multiversion myst-parser
2727 python3 -m pip install lxml pandas aniso8601
2828
2929 - name : Build Sphinx docs
Original file line number Diff line number Diff line change 11# Import modules explicitly for package namespace
2- from triplets import cgmes_tools
3- from triplets import rdf_parser
4- from triplets import export_schema
5- from triplets import rdfs_tools
2+ from . import cgmes_tools
3+ from . import rdf_parser
4+ from . import export_schema
5+ from . import rdfs_tools
66
77__all__ = [
88 'cgmes_tools' ,
1111 'rdfs_tools'
1212]
1313
14- from triplets ._version import get_versions
14+ from ._version import get_versions
1515__version__ = get_versions ()['version' ]
1616del get_versions
Original file line number Diff line number Diff line change 1- from triplets . rdfs_tools import rdfs_tools
2- from triplets . rdfs_tools import cim_rdfs_to_json
3- from triplets . rdfs_tools import cim_rdfs_to_html
1+ from . import rdfs_tools
2+ from . import cim_rdfs_to_json
3+ from . import cim_rdfs_to_html
44
55__all__ = [
66 "rdfs_tools" ,
You can’t perform that action at this time.
0 commit comments