Skip to content

Commit

Permalink
updated github action
Browse files Browse the repository at this point in the history
  • Loading branch information
marcorusc committed Oct 29, 2024
1 parent 47aab09 commit 7f8e232
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/sphinx_autodoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:

- name: Install dependencies
run: |
poetry config virtualenvs.create false
poetry install --no-interaction
- name: Install external dependencies
Expand All @@ -39,8 +38,7 @@ jobs:
- name: Build documentation
run: |
cd docs
poetry run make html
poetry run make -C docs html
- name: Debug information
run: |
Expand Down
4 changes: 2 additions & 2 deletions docs/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

here = pathlib.Path(__file__).parent
sys.path.insert(0, str(here.parent))
sys.path.insert(0, os.path.abspath('../../'))
sys.path.insert(0, os.path.abspath('../..'))

from neko._metadata import __version__, __author__ # noqa: E402

Expand Down Expand Up @@ -125,7 +125,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['../src/_static']
html_static_path = ['./_static']

html_show_sphinx = False
html_logo = 'neko_logo.png'
Expand Down

0 comments on commit 7f8e232

Please sign in to comment.