From 79fcccfbb4ecea77a9be608a20c0f768063cf2a5 Mon Sep 17 00:00:00 2001 From: galipremsagar Date: Tue, 28 Mar 2023 13:24:27 -0700 Subject: [PATCH] Fix versions --- .github/workflows/pr.yaml | 2 +- .github/workflows/test.yaml | 2 +- ci/release/update-version.sh | 3 +++ docs/dask_cudf/source/conf.py | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 10ee771f675..c4be6a51bc0 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -134,5 +134,5 @@ jobs: build_type: pull-request package-name: dask_cudf # Install the cudf we just built, and also test against latest dask/distributed/dask-cuda. - test-before: "RAPIDS_PY_WHEEL_NAME=cudf_cu11 rapids-download-wheels-from-s3 ./local-cudf-dep && python -m pip install --no-deps ./local-cudf-dep/cudf*.whl && pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/dask-cuda.git@branch-23.04" + test-before: "RAPIDS_PY_WHEEL_NAME=cudf_cu11 rapids-download-wheels-from-s3 ./local-cudf-dep && python -m pip install --no-deps ./local-cudf-dep/cudf*.whl && pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/dask-cuda.git@branch-23.06" test-unittest: "python -m pytest -v -n 8 ./python/dask_cudf/dask_cudf/tests" diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bdaf758d655..0a6ecc7f9c0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -98,5 +98,5 @@ jobs: sha: ${{ inputs.sha }} package-name: dask_cudf # Test against latest dask/distributed/dask-cuda. - test-before: "pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/dask-cuda.git@branch-23.04" + test-before: "pip install git+https://github.com/dask/dask.git@main git+https://github.com/dask/distributed.git@main git+https://github.com/rapidsai/dask-cuda.git@branch-23.06" test-unittest: "python -m pytest -v -n 8 ./python/dask_cudf/dask_cudf/tests" diff --git a/ci/release/update-version.sh b/ci/release/update-version.sh index dc5ea6015f9..ed63ea62076 100755 --- a/ci/release/update-version.sh +++ b/ci/release/update-version.sh @@ -72,6 +72,9 @@ sed_runner 's/PROJECT_NUMBER = .*/PROJECT_NUMBER = '${NEXT_FULL_ # sphinx docs update sed_runner 's/version = .*/version = '"'${NEXT_SHORT_TAG}'"'/g' docs/cudf/source/conf.py sed_runner 's/release = .*/release = '"'${NEXT_FULL_TAG}'"'/g' docs/cudf/source/conf.py +sed_runner 's/version = .*/version = '"'${NEXT_SHORT_TAG}'"'/g' docs/dask_cudf/source/conf.py +sed_runner 's/release = .*/release = '"'${NEXT_FULL_TAG}'"'/g' docs/dask_cudf/source/conf.py + # bump rmm & dask-cuda for FILE in conda/environments/*.yaml dependencies.yaml; do diff --git a/docs/dask_cudf/source/conf.py b/docs/dask_cudf/source/conf.py index 1341e7fd9e7..2a6f705f927 100644 --- a/docs/dask_cudf/source/conf.py +++ b/docs/dask_cudf/source/conf.py @@ -11,8 +11,8 @@ project = "dask-cudf" copyright = "2018-2023, NVIDIA Corporation" author = "NVIDIA Corporation" -version = "23.04" -release = "23.04.00" +version = "23.06" +release = "23.06.00" language = "en"