From 0bf819b3ec2f2750a89923b9754acfc1ff9e1356 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Fri, 24 Jul 2026 09:44:07 -0400 Subject: [PATCH 1/2] docs: reorg for nested sections Signed-off-by: Henry Schreiner --- docs/guides/gha_basic.md | 4 ++-- docs/guides/gha_pure.md | 4 ++-- docs/guides/gha_wheels.md | 4 ++-- docs/guides/packaging_compiled.md | 2 +- docs/myst.yml | 16 ++++++++++------ 5 files changed, 17 insertions(+), 13 deletions(-) diff --git a/docs/guides/gha_basic.md b/docs/guides/gha_basic.md index 1020b33c..310eedb6 100644 --- a/docs/guides/gha_basic.md +++ b/docs/guides/gha_basic.md @@ -1,8 +1,8 @@ --- -short_title: GitHub Actions introduction +short_title: Introduction --- -# GitHub Actions: Intro +# GitHub Actions: Introduction {rr}`GH100` The recommended CI for scientific Python projects is GitHub Actions (GHA), although its predecessor Azure is also in heavy usage, and other diff --git a/docs/guides/gha_pure.md b/docs/guides/gha_pure.md index 5bca40cb..aeb956e6 100644 --- a/docs/guides/gha_pure.md +++ b/docs/guides/gha_pure.md @@ -1,8 +1,8 @@ --- -short_title: GitHub Actions for pure Python wheels +short_title: Pure Python projects --- -# GitHub Actions: Pure Python wheels +# GitHub Actions: Pure Python projects We will cover binary wheels [on the next page][], but if you do not have a compiled extension, this is called a universal (pure Python) package, and the diff --git a/docs/guides/gha_wheels.md b/docs/guides/gha_wheels.md index c20319d5..c37addf4 100644 --- a/docs/guides/gha_wheels.md +++ b/docs/guides/gha_wheels.md @@ -1,8 +1,8 @@ --- -short_title: GitHub Actions for Binary Wheels +short_title: Compiled projects --- -# GitHub Actions: Binary wheels +# GitHub Actions: Compiled projects Building binary wheels is a bit more involved, but can still be done effectively with GHA. This document will introduce [cibuildwheel][] for use in your project. diff --git a/docs/guides/packaging_compiled.md b/docs/guides/packaging_compiled.md index c25a6f65..a3ff61b2 100644 --- a/docs/guides/packaging_compiled.md +++ b/docs/guides/packaging_compiled.md @@ -1,4 +1,4 @@ -# Packaging Compiled Projects +# Compiled packaging