diff options
author | mattip <matti.picus@gmail.com> | 2022-03-06 09:24:53 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2022-03-06 09:24:53 +0200 |
commit | fe5708a5cf8c03af1cf67d2b1cc72951dde1e8b1 (patch) | |
tree | 612beca6a5a3aca267fc505ac8eaf92f959514d0 /doc/source/dev | |
parent | 64cfb046e86692daa1119ba1b1de2ab50d00afde (diff) | |
download | numpy-fe5708a5cf8c03af1cf67d2b1cc72951dde1e8b1.tar.gz |
DOC: document uploads to ananconda.org
Diffstat (limited to 'doc/source/dev')
-rw-r--r-- | doc/source/dev/development_workflow.rst | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/doc/source/dev/development_workflow.rst b/doc/source/dev/development_workflow.rst index 0e46341b9..502c89939 100644 --- a/doc/source/dev/development_workflow.rst +++ b/doc/source/dev/development_workflow.rst @@ -218,12 +218,27 @@ cibuildwheel wheel builders are not run by default on every single PR or commit 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):: +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 +- ``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 +The wheels built via github actions (including 64-bit linux, macOS, and +windows, arm64 macOS, and 32-bit windows) will be uploaded as artifacts in zip +files. You can access them from the Summary page of the "Wheel builder" +Action_. The aarch64 wheels built via travis_ CI are not available as artifacts. +Additionally, the wheels will be uploaded to +https://anaconda.org/scipy-wheels-nightly/ on the following conditions: + +- by a weekly cron job or +- if the github action or travis build has been manually triggered, which requires appropriate permissions + +The wheels wil be uploaded to https://anaconda.org/multibuild-wheels-staging/ +if the build was triggered by a tag to the repo that begins with ``v`` + +.. _Action: https://github.com/numpy/numpy/actions +.. _travis: https://app.travis-ci.com/github/numpy/numpy/builds .. _workflow_mailing_list: |