10000 CI: Upload nighlighties to new location by jarrodmillman · Pull Request #23792 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

CI: Upload nighlighties to new location #23792

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/neps/nep-0050-scalar-promotion.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::

Expand Down
4 changes: 2 additions & 2 deletions doc/source/dev/depending_on_numpy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/source/dev/development_workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/wheels/upload_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
0