From b4910f75b7ad2a07bc0be5500b15789826270cbf Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Sun, 3 Nov 2024 13:35:38 +0200 Subject: [PATCH 1/6] Update contributing.md --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index 609b9099c..68f8c5cb5 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -113,7 +113,7 @@ 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. `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 is to use docker to run nox: ```console docker run --rm -itv $PWD:/src -w /src quay.io/pypa/manylinux_2_24_x86_64:latest pipx run nox -s update_constraints From 253207db12b4588eac2e97bd02cd9392f205c649 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Sun, 3 Nov 2024 13:38:34 +0200 Subject: [PATCH 2/6] Update options.md --- docs/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/options.md b/docs/options.md index 37f54bfab..5b11a220e 100644 --- a/docs/options.md +++ b/docs/options.md @@ -104,7 +104,7 @@ test-requires = "pytest" test-command = "pytest {project}/tests" ``` -The complete set of defaults for the current version of cibuildwheel are shown below: +The complete set of defaults for the current version of cibuildwheel is shown below: ```toml {% include "../cibuildwheel/resources/defaults.toml" %} From db81cf1ffd55f0a595fd7a2ba2fa40e432799fa7 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 6 Nov 2024 13:08:20 +0200 Subject: [PATCH 3/6] Update options.md --- docs/options.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/options.md b/docs/options.md index 5b11a220e..37f54bfab 100644 --- a/docs/options.md +++ b/docs/options.md @@ -104,7 +104,7 @@ test-requires = "pytest" test-command = "pytest {project}/tests" ``` -The complete set of defaults for the current version of cibuildwheel is shown below: +The complete set of defaults for the current version of cibuildwheel are shown below: ```toml {% include "../cibuildwheel/resources/defaults.toml" %} From f9afaff7885070aa0feef3ed52aefaee09c38a4b Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Sat, 16 Nov 2024 15:16:58 -0500 Subject: [PATCH 4/6] Update docs/contributing.md Co-authored-by: Matthieu Darbois --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index 68f8c5cb5..9ba01fc0a 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -113,7 +113,7 @@ 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 is to use docker to run nox: +More advanced users can run the update scripts. `nox -s update_pins update_constraints`. ```console docker run --rm -itv $PWD:/src -w /src quay.io/pypa/manylinux_2_24_x86_64:latest pipx run nox -s update_constraints From 5dfd752bfb4cc64c148bf7288bb90bc6e5abe178 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Sat, 16 Nov 2024 15:17:24 -0500 Subject: [PATCH 5/6] Update contributing.md --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing.md b/docs/contributing.md index 9ba01fc0a..35fe17245 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -116,7 +116,7 @@ nox -s build # Make SDist and wheel More advanced users can run the update scripts. `nox -s update_pins update_constraints`. ```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 ``` ## Maintainer notes From a8a862d5f9fa9fcf83fe2bb82748faa6969e854e Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Sun, 17 Nov 2024 11:28:01 -0500 Subject: [PATCH 6/6] Apply suggestions from code review 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 35fe17245..235de69ce 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. `nox -s update_pins update_constraints`. +More advanced users can run the update scripts: ```console -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