From aac31ae2fb6f1bd1224a90f60f2e65cd419a54a3 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:27:05 +0200 Subject: [PATCH] docs: fix update scripts usage (#2067) * Update contributing.md * Update options.md * Update options.md * Update docs/contributing.md Co-authored-by: Matthieu Darbois * Update contributing.md * Apply suggestions from code review Co-authored-by: Matthieu Darbois --------- Co-authored-by: Henry Schreiner Co-authored-by: Matthieu Darbois --- docs/contributing.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/contributing.md b/docs/contributing.md index 609b9099..235de69c 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -113,10 +113,11 @@ nox -s docs # Build and serve the documentation nox -s build # Make SDist and wheel ``` -More advanced users can run the update scripts. `update_pins` should work directly, but `update_constraints` needs all versions of Python installed. If you don't want to do that locally, a fast way to run it to use docker to run nox: +More advanced users can run the update scripts: ```console -docker run --rm -itv $PWD:/src -w /src quay.io/pypa/manylinux_2_24_x86_64:latest pipx run nox -s update_constraints +nox -s update_constraints # update all constraints files in cibuildwheel/resources +nox -s update_pins # update tools, python interpreters & docker images used by cibuildwheel ``` ## Maintainer notes