File tree Expand file tree Collapse file tree 4 files changed +1
-48
lines changed
Expand file tree Collapse file tree 4 files changed +1
-48
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 22# Modified from numpy's https://github.com/numpy/numpy/blob/main/tools/wheels/upload_wheels.sh
33
44set_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 "
Original file line number Diff line number Diff line change @@ -433,14 +433,6 @@ which will be triggered when the tag is pushed.
4334333. 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-
4444364. Create a `new GitHub release <https://github.com/pandas-dev/pandas/releases/new >`_:
445437
446438 - Tag: ``<version> ``
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments