diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f8f91b49d0d6..d47c38ee6b6d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -150,7 +150,7 @@ jobs: source tools/wheels/upload_wheels.sh set_upload_vars # trigger an upload to - # https://anaconda.org/scipy-wheels-nightly/numpy + # https://anaconda.org/scientific-python-nightly-wheels/numpy # for cron jobs or "Run workflow" (restricted to main branch). # Tags will upload to # https://anaconda.org/multibuild-wheels-staging/numpy @@ -232,7 +232,7 @@ jobs: source tools/wheels/upload_wheels.sh set_upload_vars # trigger an upload to - # https://anaconda.org/scipy-wheels-nightly/numpy + # https://anaconda.org/scientific-python-nightly-wheels/numpy # for cron jobs or "Run workflow" (restricted to main branch). # Tags will upload to # https://anaconda.org/multibuild-wheels-staging/numpy diff --git a/doc/neps/nep-0050-scalar-promotion.rst b/doc/neps/nep-0050-scalar-promotion.rst index f553224eab75..4395d46941f4 100644 --- a/doc/neps/nep-0050-scalar-promotion.rst +++ b/doc/neps/nep-0050-scalar-promotion.rst @@ -79,7 +79,7 @@ more important than the casting change itself. As of the early NumPy 1.24 development branch, NumPy has preliminary and limited support to test this proposal. To try it, you can use the - development wheels from: https://anaconda.org/scipy-wheels-nightly/numpy + development wheels from: https://anaconda.org/scientific-python-nightly-wheels/numpy It is further necessary to set the following environment variable:: diff --git a/doc/source/dev/depending_on_numpy.rst b/doc/source/dev/depending_on_numpy.rst index 868b441625da..9b7ffddb7f61 100644 --- a/doc/source/dev/depending_on_numpy.rst +++ b/doc/source/dev/depending_on_numpy.rst @@ -37,9 +37,9 @@ Testing against the NumPy main branch or pre-releases For large, actively maintained packages that depend on NumPy, we recommend testing against the development version of NumPy in CI. To make this easy, nightly builds are provided as wheels at -https://anaconda.org/scipy-wheels-nightly/. Example install command:: +https://anaconda.org/scientific-python-nightly-wheels/. Example install command:: - pip install -U --pre --only-binary :all: -i https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy + pip install -U --pre --only-binary :all: -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy This helps detect regressions in NumPy that need fixing before the next NumPy release. Furthermore, we recommend to raise errors on warnings in CI for this diff --git a/doc/source/dev/development_workflow.rst b/doc/source/dev/development_workflow.rst index 9fa9c5809df9..8db0ea116d7d 100644 --- a/doc/source/dev/development_workflow.rst +++ b/doc/source/dev/development_workflow.rst @@ -260,7 +260,7 @@ 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: +https://anaconda.org/scientific-python-nightly-wheels/ 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 diff --git a/tools/wheels/upload_wheels.sh b/tools/wheels/upload_wheels.sh index bc206672668e..0a6ee688e943 100644 --- a/tools/wheels/upload_wheels.sh +++ b/tools/wheels/upload_wheels.sh @@ -23,7 +23,7 @@ set_upload_vars() { export ANACONDA_UPLOAD="true" elif [[ "$IS_SCHEDULE_DISPATCH" == "true" ]]; then echo scheduled or dispatched event - export ANACONDA_ORG="scipy-wheels-nightly" + export ANACONDA_ORG="scientific-python-nightly-wheels" export TOKEN="$NUMPY_NIGHTLY_UPLOAD_TOKEN" export ANACONDA_UPLOAD="true" else