File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5353 python-version : 3.11
5454 - name : Install dependencies
5555 run : |
56- python -m pip install --upgrade pip
56+ python -m pip install --upgrade pip setuptools
5757 pip install --no-cache-dir .\[all\]
5858 - name : Build Sphinx Documentation (HTML)
5959 working-directory : ./docs/source
Original file line number Diff line number Diff line change 1212# add these directories to sys.path here. If the directory is relative to the
1313# documentation root, use os.path.abspath to make it absolute, like shown here.
1414#
15+ from importlib .metadata import version as get_version
1516import inspect
1617import os
1718import sys
1819
19- import pkg_resources
20- import sphinx_rtd_theme
21-
2220
2321sys .path .insert (0 , os .path .abspath (os .path .dirname (__file__ )))
2422
2523import _docstring_check
2624
2725
28- __version__ = pkg_resources . get_distribution ('scikit-robot' ). version
26+ __version__ = get_version ('scikit-robot' )
2927on_rtd = os .environ .get ('READTHEDOCS' , None ) == 'True'
3028tag = 'main'
3129
You can’t perform that action at this time.
0 commit comments