diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 9ebe147008451..541b36d9b4c1d 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -337,7 +337,7 @@ jobs: run: | python --version python -m pip install --upgrade pip setuptools wheel - python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple numpy + python -m pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy python -m pip install git+https://github.com/nedbat/coveragepy.git python -m pip install versioneer[toml] 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 diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 0a508a8b1701f..cdc4fd18995da 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -156,7 +156,7 @@ jobs: PANDAS_STAGING_UPLOAD_TOKEN: ${{ secrets.PANDAS_STAGING_UPLOAD_TOKEN }} PANDAS_NIGHTLY_UPLOAD_TOKEN: ${{ secrets.PANDAS_NIGHTLY_UPLOAD_TOKEN }} # trigger an upload to - # https://anaconda.org/scipy-wheels-nightly/pandas + # https://anaconda.org/scientific-python-nightly-wheels/pandas # for cron jobs or "Run workflow" (restricted to main branch). # Tags will upload to # https://anaconda.org/multibuild-wheels-staging/pandas diff --git a/ci/upload_wheels.sh b/ci/upload_wheels.sh index f760621ea0e6b..e57e9b01b9830 100644 --- a/ci/upload_wheels.sh +++ b/ci/upload_wheels.sh @@ -10,7 +10,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="$PANDAS_NIGHTLY_UPLOAD_TOKEN" export ANACONDA_UPLOAD="true" else diff --git a/doc/source/getting_started/install.rst b/doc/source/getting_started/install.rst index 90a65e2790c29..f4c76c3493fa2 100644 --- a/doc/source/getting_started/install.rst +++ b/doc/source/getting_started/install.rst @@ -201,9 +201,9 @@ Installing a nightly build is the quickest way to: * 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). * Check whether a bug you encountered has been fixed since the last release. -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:: +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:: - pip install --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple pandas + pip install --pre --extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas Note that first uninstalling pandas might be required to be able to install nightly builds::