summaryrefslogtreecommitdiff
path: root/doc/source/dev/development_workflow.rst
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-03-05 11:46:02 -0700
committerGitHub <noreply@github.com>2022-03-05 11:46:02 -0700
commit95f591594fa1c3dbfd655d60709d5058fe373278 (patch)
treec52425caed2067d2208e6b06dc6a973bcddc78a9 /doc/source/dev/development_workflow.rst
parentbcec9c338946a0285262921ab1da5847462021c3 (diff)
parent237c6739c2e02e823a237dcc117b630982aeb9e6 (diff)
downloadnumpy-95f591594fa1c3dbfd655d60709d5058fe373278.tar.gz
Merge pull request #21107 from lithomas1/patch-3
BLD: Run wheel builders on labeled pull requests
Diffstat (limited to 'doc/source/dev/development_workflow.rst')
-rw-r--r--doc/source/dev/development_workflow.rst15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/source/dev/development_workflow.rst b/doc/source/dev/development_workflow.rst
index 38f047ec0..0e46341b9 100644
--- a/doc/source/dev/development_workflow.rst
+++ b/doc/source/dev/development_workflow.rst
@@ -209,6 +209,21 @@ CircleCI supports ``ci skip`` but has no command to skip only CircleCI.
Azure chooses to still run jobs with skip commands on PRs, the jobs only get
skipped on merging to master.
+Test building wheels
+```````````````````````````````````````
+
+Numpy currently uses `cibuildwheel <https://https://cibuildwheel.readthedocs.io/en/stable/>`_
+in order to build wheels through continuous integration services. To save resources, the
+cibuildwheel wheel builders are not run by default on every single PR or commit to main.
+
+If you would like to test that your pull request do not break the wheel builders,
+you may either append ``[wheel build]`` to the end of the commit message of the commit
+or add one of the following labels to the pull request(if you have the permissions to do so)::
+
+ ``36 - Build``: for pull requests changing build processes/configurations
+ ``03 - Maintenance``: for pull requests upgrading dependencies
+ ``14 - Release``: for pull requests preparing for a release
+
.. _workflow_mailing_list: