Skip to content
This repository was archived by the owner on Jan 23, 2026. It is now read-only.

Commit 3e2e50b

Browse files
committed
Parameterize requires-python in docs
1 parent 0237631 commit 3e2e50b

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

docs/source/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,6 @@
4545
"substitution",
4646
]
4747
myst_substitutions = {
48+
"requires_python": ">=3.11",
4849
"version": "0.5.0rc2",
4950
}

docs/source/installation/python-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This package includes:
99
- The client CLI tool.
1010
- An exporter runtime and built-in drivers.
1111

12-
The Python package can be installed using ``pip`` or similar, Python 3.10 or newer is required.:
12+
The Python package can be installed using ``pip`` or similar, Python {{requires_python}} is required.:
1313

1414
<!-- TODO: create meta-package-to-install-all -->
1515

@@ -32,4 +32,4 @@ $ source ~/.venv/jumpstarter/bin/activate
3232
$ pip3 install ....
3333
```
3434

35-
An alternative to installing the packages is to [use the container package](./container-jmp.md).
35+
An alternative to installing the packages is to [use the container package](./container-jmp.md).

docs/source/installation/service-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ the latest release.
1010
```{code-block} bash
1111
:substitutions:
1212
export VERSION={{version}}
13-
export ARCH=amd64
13+
export ARCH=amd64 # or arm64
1414
1515
curl -L https://github.com/jumpstarter-dev/jumpstarter-controller/releases/download/${VERSION}/jmpctl_${VERSION}_linux_${ARCH} \
1616
-o /usr/local/bin/jmpctl

docs/source/introduction/exporters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export:
3636
3737
## Running an Exporter
3838
39-
To run an Exporter on a host system, you must have Python >= 3.11 installed
39+
To run an Exporter on a host system, you must have Python {{requires_python}} installed
4040
and the required driver packages installed locally.
4141
4242
Exporters can be run in a privileged container or as a systemd daemon. It is

0 commit comments

Comments
 (0)