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
4 changes: 2 additions & 2 deletions docs/guides/gha_basic.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/gha_pure.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/guides/gha_wheels.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/packaging_compiled.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Packaging Compiled Projects
# Compiled packaging

<!-- [[[cog
from cog_helpers import code_fence, render_cookie, TOMLMatcher
Expand Down
16 changes: 10 additions & 6 deletions docs/myst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ project:
- file: guides/pytest.md
- file: guides/coverage.md
- file: guides/docs.md
- file: guides/packaging_simple.md
- file: guides/packaging_compiled.md
- file: guides/packaging_classic.md
- title: Packaging
children:
- file: guides/packaging_simple.md
- file: guides/packaging_compiled.md
- file: guides/packaging_classic.md
- file: guides/style.md
- file: guides/typing.md
- file: guides/gha_basic.md
- file: guides/gha_pure.md
- file: guides/gha_wheels.md
- title: GitHub Actions
children:
- file: guides/gha_basic.md
- file: guides/gha_pure.md
- file: guides/gha_wheels.md
- file: guides/security.md
- file: guides/tasks.md
- file: principles/index.md
Expand Down
Loading