Skip to content
Open
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
3 changes: 3 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ build:
# Redirect the old /guides/mypy/ URL to /guides/typing/
- mkdir -p docs/_build/html/guides/mypy
- cp redirect-stubs/guides/mypy/index.html docs/_build/html/guides/mypy/index.html
# Redirect the retired classic-packaging guide to the current guide
- mkdir -p docs/_build/html/guides/packaging-classic
- cp redirect-stubs/guides/packaging-classic/index.html docs/_build/html/guides/packaging-classic/index.html
# Copy the output to Read the Docs expected location
- mkdir -p $READTHEDOCS_OUTPUT/html/
- cp -r docs/_build/html/. "$READTHEDOCS_OUTPUT/html"
Expand Down
9 changes: 4 additions & 5 deletions docs/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ for your `CONTRIBUTING.md`, and at least glance through other sections.

Following that, there are recommendations for [style][], intended to promote
good practices and to ensure continuity across the packages. There is a
[dedicated page for static type checking with MyPy][mypy]. There is then a guide
on [simple packaging][], [compiled packaging][], or even [classic packaging][],
which should help in ensuring a consistent developer and user experience when
working with distribution.
[dedicated page for static type checking with MyPy][mypy]. There are then
guides on [simple packaging][] and [compiled packaging][], which should help in
ensuring a consistent developer and user experience when working with
distribution.

A section on CI follows, with a [general setup guide][gha_basic], and then two
choices for using CI to distribute your package, one for
Expand Down Expand Up @@ -42,7 +42,6 @@ WebAssembly! All checks point to a linked badge in the guide.
[docs]: /guides/docs.md
[simple packaging]: /guides/packaging_simple.md
[compiled packaging]: /guides/packaging_compiled.md
[classic packaging]: /guides/packaging_classic.md
[coverage]: /guides/coverage.md
[gha_basic]: /guides/gha_basic.md
[gha_pure]: /guides/gha_pure.md
Expand Down
Loading
Loading