Skip to content

Commit 3f412c7

Browse files
authored
docs: new documentation with mkdocs (#527)
* docs: delete sphinx * wip * docs: wip * more changes * writing markdown images * update widget overview * wip * docs: more progress * remove factory_doc * explicit magicgui kwargs * wip: more progress * more changes * fix: fix type * docs: update widget previews * some magicgui updates * docs: some more comments * docs updates * more docs * more events docs * docs: more updates * linting * fix lint * union * fix setuppy * fixes for py38 * fix cov * fix pre commit * add back migration guide * fix links in migration * docs: add codespell * docs: more examples * docs: more updates * docs: move contributing guide * mention msgspec * docs: add back napari demo * more examples return * add space * docs: change docs action * remove comment * add comment * link to widgets index
1 parent 0bb5323 commit 3f412c7

Some content is hidden

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

86 files changed

+3265
-2833
lines changed

.github/workflows/deploy_docs.yml

+6-39
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,17 @@
11
name: deploy docs
22

33
on:
4-
# Trigger the workflow on push to main branch
54
push:
65
branches:
76
- main
8-
tags:
9-
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
107

11-
# This job installs dependencies, builds the book, and pushes it to `gh-pages`
128
jobs:
13-
build-and-deploy-book:
14-
runs-on: ubuntu-latest
9+
deploy:
10+
runs-on: macos-latest # for the screenshots
1511
steps:
1612
- uses: actions/checkout@v3
17-
18-
# Install dependencies
19-
- name: Set up Python 3.9
20-
uses: actions/setup-python@v4
21-
with:
22-
python-version: 3.9
23-
- name: Install Libraries
24-
run: |
25-
sudo apt-get install -y libdbus-1-3 libxkbcommon-x11-0 libxcb-icccm4 \
26-
libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 \
27-
libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 xvfb
28-
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid \
29-
--make-pidfile --background --exec /usr/bin/Xvfb -- :99 \
30-
-screen 0 1920x1200x24 -ac +extension GLX
31-
- name: Install dependencies
32-
run: |
33-
pip install --upgrade pip
34-
pip install .[pyqt5]
35-
pip install -r docs/requirements.txt
36-
python docs/patch.py
37-
38-
# Build the book
39-
- name: Build the book
40-
run: jupyter-book build docs
41-
env:
42-
DISPLAY: ":99.0"
43-
XDG_RUNTIME_DIR: "/tmp/runtime-runner"
44-
45-
# Deploy the book's HTML to gh-pages branch
46-
- name: GitHub Pages action
47-
uses: peaceiris/actions-gh-pages@v3
13+
- uses: actions/setup-python@v4
4814
with:
49-
github_token: ${{ secrets.GITHUB_TOKEN }}
50-
publish_dir: docs/_build/html
15+
python-version: '3.11'
16+
- run: pip install -e .[docs]
17+
- run: mkdocs gh-deploy --strict --force

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@ dmypy.json
134134
.DS_Store
135135
examples/_wip
136136
.ruff_cache
137+
docs/_images/

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414

1515

1616
- repo: https://github.com/charliermarsh/ruff-pre-commit
17-
rev: v0.0.245
17+
rev: v0.0.247
1818
hooks:
1919
- id: ruff
2020
args: ["--fix"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ and usage examples.
9393

9494
Contributions are welcome!
9595

96-
See contributing guide [here](https://github.com/pyapp-kit/magicgui/blob/main/CONTRIBUTING.md).
96+
See contributing guide [here](https://github.com/pyapp-kit/magicgui/blob/main/docs/CONTRIBUTING.md).

CONTRIBUTING.md docs/CONTRIBUTING.md

+17
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,20 @@ For more complex cases, you can add a new conditional to the body of the
102102
`match_type` function. That function should always return a tuple of widget
103103
type, and kwargs that will be passed to the widget constructor. For example:
104104
`return widgets.MyNewWidget, {}`.
105+
106+
### Building the documentation
107+
108+
To build the documentation locally, you will need to install the `docs` extra:
109+
110+
```bash
111+
pip install -e .[docs]
112+
```
113+
114+
Then, from the root of the repository, run:
115+
116+
```bash
117+
mkdocs serve
118+
```
119+
120+
This will start a local server at `http://127.0.0.1:8000/` where you can view
121+
the documentation as you edit it.

docs/_config.yml

-77
This file was deleted.

0 commit comments

Comments
 (0)