8000 Merge pull request #23792 from jarrodmillman/nightlies · numpy/numpy@5d6c744 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5d6c744

Browse files
authored
Merge pull request #23792 from jarrodmillman/nightlies
CI: Upload nighlighties to new location
2 parents a65e750 + fbc8c85 commit 5d6c744

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
source tools/wheels/upload_wheels.sh
151151
set_upload_vars
152152
# trigger an upload to
153-
# https://anaconda.org/scipy-wheels-nightly/numpy
153+
# https://anaconda.org/scientific-python-nightly-wheels/numpy
154154
# for cron jobs or "Run workflow" (restricted to main branch).
155155
# Tags will upload to
156156
# https://anaconda.org/multibuild-wheels-staging/numpy
@@ -232,7 +232,7 @@ jobs:
232232
source tools/wheels/upload_wheels.sh
233233
set_upload_vars
234234
# trigger an upload to
235-
# https://anaconda.org/scipy-wheels-nightly/numpy
235+
# https://anaconda.org/scientific-python-nightly-wheels/numpy
236236
# for cron jobs or "Run workflow" (restricted to main branch).
237237
# Tags will upload to
238238
# https://anaconda.org/multibuild-wheels-staging/numpy

doc/neps/nep-0050-scalar-promotion.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ more important than the casting change itself.
7979

8080
As of the early NumPy 1.24 development branch, NumPy has preliminary and
8181
limited support to test this proposal. To try it, you can use the
82-
development wheels from: https://anaconda.org/scipy-wheels-nightly/numpy
82+
development wheels from: https://anaconda.org/scientific-python-nightly-wheels/numpy
8383

8484
It is further necessary to set the following environment variable::
8585

doc/source/dev/depending_on_numpy.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Testing against the NumPy main branch or pre-releases
3737
For large, actively maintained packages that depend on NumPy, we recommend
3838
testing against the development version of NumPy in CI. To make this easy,
3939
nightly builds are provided as wheels at
40-
https://anaconda.org/scipy-wheels-nightly/. Example install command::
40+
https://anaconda.org/scientific-python-nightly-wheels/. Example install command::
4141

42-
pip install -U --pre --only-binary :all: -i https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy
42+
pip install -U --pre --only-binary :all: -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
4343

4444
This helps detect regressions in NumPy that need fixing before the next NumPy
4545
release. Furthermore, we recommend to raise errors on warnings in CI for this

doc/source/dev/development_workflow.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ windows, arm64 macOS, and 32-bit windows) will be uploaded as artifacts in zip
260260
files. You can access them from the Summary page of the "Wheel builder"
261261
Action_. The aarch64 wheels built via travis_ CI are not available as artifacts.
262262
Additionally, the wheels will be uploaded to
263-
https://anaconda.org/scipy-wheels-nightly/ on the following conditions:
263+
https://anaconda.org/scientific-python-nightly-wheels/ on the following conditions:
264264

265265
- by a weekly cron job or
266266
- if the github action or travis build has been manually triggered, which requires appropriate permissions

tools/wheels/upload_wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ set_upload_vars() {
2323
export ANACONDA_UPLOAD="true"
2424
elif [[ "$IS_SCHEDULE_DISPATCH" == "true" ]]; then
2525
echo scheduled or dispatched event
26-
export ANACONDA_ORG="scipy-wheels-nightly"
26+
export ANACONDA_ORG="scientific-python-nightly-wheels"
2727
export TOKEN="$NUMPY_NIGHTLY_UPLOAD_TOKEN"
2828
export ANACONDA_UPLOAD="true"
2929
else

0 commit comments

Comments
 (0)
0