Skip to content

Commit 97c8bff

Browse files
authored
Merge pull request #174 from kayjan/mkdocs
Changed: Rename docs to docs_sphinx
2 parents 69946de + 8c9d3d1 commit 97c8bff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+47
-34
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
uses: actions/setup-python@v4
3030
- name: Install dependencies
3131
run: |
32-
pip install -r docs/requirements.txt
32+
pip install -r docs_sphinx/requirements.txt
3333
- name: Sphinx build
3434
run: |
35-
sphinx-build docs/source docs/build
35+
sphinx-build docs_sphinx/source docs_sphinx/build
3636
- name: Deploy to GH Pages
3737
uses: peaceiris/actions-gh-pages@v3
3838
with:
3939
publish_branch: gh-pages
4040
github_token: ${{ secrets.GITHUB_TOKEN }}
41-
publish_dir: docs/build/
41+
publish_dir: docs_sphinx/build/
4242
force_orphan: true

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ repos:
2929
rev: v0.902
3030
hooks:
3131
- id: mypy
32-
exclude: "tests/|docs/"
32+
exclude: "tests/|docs/|docs_sphinx/"

.readthedocs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ build:
1313

1414
# Build documentation in the docs/ directory with Sphinx
1515
sphinx:
16-
configuration: docs/source/conf.py
16+
configuration: docs_sphinx/source/conf.py
1717

1818
# Optionally declare the Python requirements required to build your docs
1919
python:
2020
install:
21-
- requirements: docs/requirements.txt
21+
- requirements: docs_sphinx/requirements.txt

0 commit comments

Comments
 (0)