Skip to content

Commit 772fd35

Browse files
authored
CI: Don't upload wheels to anaconda.org/multibuild-wheels-staging (#63265)
1 parent 774172b commit 772fd35

File tree

4 files changed

+1
-48
lines changed

4 files changed

+1
-48
lines changed

.github/workflows/wheels.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,10 @@ jobs:
207207
if: ${{ success() && (env.IS_SCHEDULE_DISPATCH == 'true' || env.IS_PUSH == 'true') }}
208208
shell: bash -el {0}
209209
env:
210-
PANDAS_STAGING_UPLOAD_TOKEN: ${{ secrets.PANDAS_STAGING_UPLOAD_TOKEN }}
211210
PANDAS_NIGHTLY_UPLOAD_TOKEN: ${{ secrets.PANDAS_NIGHTLY_UPLOAD_TOKEN }}
212211
# trigger an upload to
213212
# https://anaconda.org/scientific-python-nightly-wheels/pandas
214213
# for cron jobs or "Run workflow" (restricted to main branch).
215-
# Tags will upload to
216-
# https://anaconda.org/multibuild-wheels-staging/pandas
217214
# The tokens were originally generated at anaconda.org
218215
run: |
219216
source ci/upload_wheels.sh

ci/upload_wheels.sh

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,8 @@
22
# Modified from numpy's https://github.com/numpy/numpy/blob/main/tools/wheels/upload_wheels.sh
33

44
set_upload_vars() {
5-
echo "IS_PUSH is $IS_PUSH"
65
echo "IS_SCHEDULE_DISPATCH is $IS_SCHEDULE_DISPATCH"
7-
if [[ "$IS_PUSH" == "true" ]]; then
8-
echo push and tag event
9-
export ANACONDA_ORG="multibuild-wheels-staging"
10-
export TOKEN="$PANDAS_STAGING_UPLOAD_TOKEN"
11-
export ANACONDA_UPLOAD="true"
12-
elif [[ "$IS_SCHEDULE_DISPATCH" == "true" ]]; then
6+
if [[ "$IS_SCHEDULE_DISPATCH" == "true" ]]; then
137
echo scheduled or dispatched event
148
export ANACONDA_ORG="scientific-python-nightly-wheels"
159
export TOKEN="$PANDAS_NIGHTLY_UPLOAD_TOKEN"

doc/source/development/maintaining.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -433,14 +433,6 @@ which will be triggered when the tag is pushed.
433433
3. Download the source distribution and wheels from the `wheel staging area <https://anaconda.org/scientific-python-nightly-wheels/pandas>`_.
434434
Be careful to make sure that no wheels are missing (e.g. due to failed builds).
435435

436-
Running scripts/download_wheels.sh with the version that you want to download wheels/the sdist for should do the trick.
437-
This script will make a ``dist`` folder inside your clone of pandas and put the downloaded wheels and sdist there::
438-
439-
scripts/download_wheels.sh <VERSION>
440-
441-
ATTENTION: this is currently not downloading *all* wheels, and you have to
442-
manually download the remainings wheels and sdist!
443-
444436
4. Create a `new GitHub release <https://github.com/pandas-dev/pandas/releases/new>`_:
445437

446438
- Tag: ``<version>``

scripts/download_wheels.sh

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)