Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: astral-sh/setup-uv@v7
- uses: actions/checkout@v5

- name: Build Sphinx documentation
run: |
pip install -r doc/requirements.txt
sphinx-build doc/ ./doc/_build/html/
uv run --group doc sphinx-build doc/ _site/

- name: Upload artifact
# Automatically uploads an artifact from the './_site' directory by default
uses: actions/upload-pages-artifact@v3
with:
path: doc/_build/html/

deploy:
if: github.ref == 'refs/heads/master'
Expand Down
20 changes: 0 additions & 20 deletions doc/Makefile

This file was deleted.

35 changes: 0 additions & 35 deletions doc/make.bat

This file was deleted.

5 changes: 0 additions & 5 deletions doc/requirements.txt

This file was deleted.

5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ Documentation = "https://pythonnet.github.io/clr-loader/"
dev = [
"pytest>=7.0"
]
doc = [
"furo>=2022.9.15",
"pygments>=2.7",
"sphinx>=5.3.0",
]

[tool.setuptools]
zip-safe = false
Expand Down
Loading
Loading