Skip to content

Commit 1a254df

Browse files
Upload nightlies to new location (#53341)
1 parent bc7b394 commit 1a254df

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/unit-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ jobs:
337337
run: |
338338
python --version
339339
python -m pip install --upgrade pip setuptools wheel
340-
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy
340+
python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy
341341
python -m pip install git+https://github.com/nedbat/coveragepy.git
342342
python -m pip install versioneer[toml]
343343
python -m pip install python-dateutil pytz cython hypothesis>=6.46.1 pytest>=7.0.0 pytest-xdist>=2.2.0 pytest-cov pytest-asyncio>=0.17

.github/workflows/wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
PANDAS_STAGING_UPLOAD_TOKEN: ${{ secrets.PANDAS_STAGING_UPLOAD_TOKEN }}
157157
PANDAS_NIGHTLY_UPLOAD_TOKEN: ${{ secrets.PANDAS_NIGHTLY_UPLOAD_TOKEN }}
158158
# trigger an upload to
159-
# https://anaconda.org/scipy-wheels-nightly/pandas
159+
# https://anaconda.org/scientific-python-nightly-wheels/pandas
160160
# for cron jobs or "Run workflow" (restricted to main branch).
161161
# Tags will upload to
162162
# https://anaconda.org/multibuild-wheels-staging/pandas

ci/upload_wheels.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set_upload_vars() {
1010
export ANACONDA_UPLOAD="true"
1111
elif [[ "$IS_SCHEDULE_DISPATCH" == "true" ]]; then
1212
echo scheduled or dispatched event
13-
export ANACONDA_ORG="scipy-wheels-nightly"
13+
export ANACONDA_ORG="scientific-python-nightly-wheels"
1414
export TOKEN="$PANDAS_NIGHTLY_UPLOAD_TOKEN"
1515
export ANACONDA_UPLOAD="true"
1616
else

doc/source/getting_started/install.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,9 @@ Installing a nightly build is the quickest way to:
201201
* Try a new feature that will be shipped in the next release (that is, a feature from a pull-request that was recently merged to the main branch).
202202
* Check whether a bug you encountered has been fixed since the last release.
203203

204-
You can install the nightly build of pandas using the scipy-wheels-nightly index from the PyPI registry of anaconda.org with the following command::
204+
You can install the nightly build of pandas using the scientific-python-nightly-wheels index from the PyPI registry of anaconda.org with the following command::
205205

206-
pip install --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple pandas
206+
pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas
207207

208208
Note that first uninstalling pandas might be required to be able to install nightly builds::
209209

0 commit comments

Comments
 (0)