From 1fcd1be04171d0c6bbbf38cb31619b21173039e8 Mon Sep 17 00:00:00 2001 From: Raymond Douglass Date: Mon, 23 Jan 2023 10:51:22 -0500 Subject: [PATCH] DOC --- README.md | 2 +- ci/check_style.sh | 2 +- ci/checks/style.sh | 2 +- ci/gpu/build.sh | 2 +- conda/environments/all_cuda-118_arch-x86_64.yaml | 4 ++-- cpp/CMakeLists.txt | 2 +- cpp/doxygen/Doxyfile | 4 ++-- cpp/examples/basic/CMakeLists.txt | 2 +- cpp/examples/strings/CMakeLists.txt | 2 +- cpp/libcudf_kafka/CMakeLists.txt | 2 +- dependencies.yaml | 8 ++++---- docs/cudf/source/conf.py | 4 ++-- fetch_rapids.cmake | 2 +- java/src/main/native/CMakeLists.txt | 2 +- python/cudf/CMakeLists.txt | 2 +- python/strings_udf/CMakeLists.txt | 2 +- 16 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index d99bee5fc0c..68c2d4f6276 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ cuDF can be installed with conda ([miniconda](https://conda.io/miniconda.html), ```bash conda install -c rapidsai -c conda-forge -c nvidia \ - cudf=23.02 python=3.10 cudatoolkit=11.8 + cudf=23.04 python=3.10 cudatoolkit=11.8 ``` We also provide [nightly Conda packages](https://anaconda.org/rapidsai-nightly) built from the HEAD diff --git a/ci/check_style.sh b/ci/check_style.sh index e120fe418a0..020143095ce 100755 --- a/ci/check_style.sh +++ b/ci/check_style.sh @@ -14,7 +14,7 @@ rapids-dependency-file-generator \ rapids-mamba-retry env create --force -f env.yaml -n checks conda activate checks -FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.02/cmake-format-rapids-cmake.json +FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.04/cmake-format-rapids-cmake.json export RAPIDS_CMAKE_FORMAT_FILE=/tmp/rapids_cmake_ci/cmake-formats-rapids-cmake.json mkdir -p $(dirname ${RAPIDS_CMAKE_FORMAT_FILE}) wget -O ${RAPIDS_CMAKE_FORMAT_FILE} ${FORMAT_FILE_URL} diff --git a/ci/checks/style.sh b/ci/checks/style.sh index 01ef48894fe..d32d88f5574 100755 --- a/ci/checks/style.sh +++ b/ci/checks/style.sh @@ -14,7 +14,7 @@ LANG=C.UTF-8 . /opt/conda/etc/profile.d/conda.sh conda activate rapids -FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.02/cmake-format-rapids-cmake.json +FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.04/cmake-format-rapids-cmake.json export RAPIDS_CMAKE_FORMAT_FILE=/tmp/rapids_cmake_ci/cmake-formats-rapids-cmake.json mkdir -p $(dirname ${RAPIDS_CMAKE_FORMAT_FILE}) wget -O ${RAPIDS_CMAKE_FORMAT_FILE} ${FORMAT_FILE_URL} diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 12539badfdb..71037bd5382 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -45,7 +45,7 @@ export INSTALL_DASK_MAIN=1 export DASK_STABLE_VERSION="2022.12.0" # ucx-py version -export UCX_PY_VERSION='0.30.*' +export UCX_PY_VERSION='0.31.*' ################################################################################ # TRAP - Setup trap for removing jitify cache diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 1bcb1978373..df013c492e8 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -20,7 +20,7 @@ dependencies: - cupy>=9.5.0,<12.0.0a0 - cxx-compiler - cython>=0.29,<0.30 -- dask-cuda=23.02.* +- dask-cuda=23.04.* - dask>=2022.12.0 - distributed>=2022.12.0 - dlpack>=0.5,<0.6.0a0 @@ -62,7 +62,7 @@ dependencies: - python-snappy>=0.6.0 - python>=3.8,<3.11 - pytorch<1.12.0 -- rmm=23.02.* +- rmm=23.04.* - s3fs>=2022.3.0 - scikit-build>=0.13.1 - scipy diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index f67e42be719..1e85ae8b1b7 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -25,7 +25,7 @@ rapids_cuda_init_architectures(CUDF) project( CUDF - VERSION 23.02.00 + VERSION 23.04.00 LANGUAGES C CXX CUDA ) if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.5) diff --git a/cpp/doxygen/Doxyfile b/cpp/doxygen/Doxyfile index 6390f3bb080..0153fadf6b1 100644 --- a/cpp/doxygen/Doxyfile +++ b/cpp/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "libcudf" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 23.02.00 +PROJECT_NUMBER = 23.04.00 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -2162,7 +2162,7 @@ SKIP_FUNCTION_MACROS = YES # the path). If a tag file is not located in the directory in which doxygen is # run, you must also specify the path to the tagfile here. -TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/23.02 +TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/23.04 # When a file name is specified after GENERATE_TAGFILE, doxygen will create a # tag file that is based on the input files it reads. See section "Linking to diff --git a/cpp/examples/basic/CMakeLists.txt b/cpp/examples/basic/CMakeLists.txt index 550695f1d81..fa3a0d43701 100644 --- a/cpp/examples/basic/CMakeLists.txt +++ b/cpp/examples/basic/CMakeLists.txt @@ -16,7 +16,7 @@ file( ) include(${CMAKE_BINARY_DIR}/cmake/get_cpm.cmake) -set(CUDF_TAG branch-23.02) +set(CUDF_TAG branch-23.04) CPMFindPackage( NAME cudf GIT_REPOSITORY https://github.com/rapidsai/cudf GIT_TAG ${CUDF_TAG} diff --git a/cpp/examples/strings/CMakeLists.txt b/cpp/examples/strings/CMakeLists.txt index dc7c6160bdf..4d33af51971 100644 --- a/cpp/examples/strings/CMakeLists.txt +++ b/cpp/examples/strings/CMakeLists.txt @@ -16,7 +16,7 @@ file( ) include(${CMAKE_BINARY_DIR}/cmake/get_cpm.cmake) -set(CUDF_TAG branch-23.02) +set(CUDF_TAG branch-23.04) CPMFindPackage( NAME cudf GIT_REPOSITORY https://github.com/rapidsai/cudf GIT_TAG ${CUDF_TAG} diff --git a/cpp/libcudf_kafka/CMakeLists.txt b/cpp/libcudf_kafka/CMakeLists.txt index 3fd688be5fd..d357e8c7c79 100644 --- a/cpp/libcudf_kafka/CMakeLists.txt +++ b/cpp/libcudf_kafka/CMakeLists.txt @@ -22,7 +22,7 @@ include(rapids-find) project( CUDA_KAFKA - VERSION 23.02.00 + VERSION 23.04.00 LANGUAGES CXX ) diff --git a/dependencies.yaml b/dependencies.yaml index 8790853fbb3..126e2b0be29 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -58,7 +58,7 @@ dependencies: - dlpack>=0.5,<0.6.0a0 - ninja - pyarrow=10 - - rmm=23.02.* + - rmm=23.04.* - scikit-build>=0.13.1 - output_types: conda packages: @@ -244,7 +244,7 @@ dependencies: - pip: - git+https://github.com/python-streamz/streamz.git@master - ptxcompiler - - rmm=23.02.* + - rmm=23.04.* - output_types: requirements packages: # pip recognizes the index as a global option for the requirements.txt file @@ -253,7 +253,7 @@ dependencies: - cubinlinker-cu11 - git+https://github.com/python-streamz/streamz.git@master - ptxcompiler-cu11 - - rmm-cu11=23.02.* + - rmm-cu11=23.04.* specific: - output_types: requirements matrices: @@ -290,7 +290,7 @@ dependencies: - aiobotocore>=2.2.0 - boto3>=1.21.21 - botocore>=1.24.21 - - dask-cuda=23.02.* + - dask-cuda=23.04.* - fastavro>=0.22.9 - hypothesis - mimesis>=4.1.0 diff --git a/docs/cudf/source/conf.py b/docs/cudf/source/conf.py index 733251d2258..371a8b4e1c1 100644 --- a/docs/cudf/source/conf.py +++ b/docs/cudf/source/conf.py @@ -85,9 +85,9 @@ # built documents. # # The short X.Y version. -version = '23.02' +version = '23.04' # The full version, including alpha/beta/rc tags. -release = '23.02.00' +release = '23.04.00' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/fetch_rapids.cmake b/fetch_rapids.cmake index c61d22e2a81..a1547e9342a 100644 --- a/fetch_rapids.cmake +++ b/fetch_rapids.cmake @@ -12,7 +12,7 @@ # the License. # ============================================================================= if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/CUDF_RAPIDS.cmake) - file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.02/RAPIDS.cmake + file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.04/RAPIDS.cmake ${CMAKE_CURRENT_BINARY_DIR}/CUDF_RAPIDS.cmake ) endif() diff --git a/java/src/main/native/CMakeLists.txt b/java/src/main/native/CMakeLists.txt index 74cea21d8c5..09a70a49d52 100644 --- a/java/src/main/native/CMakeLists.txt +++ b/java/src/main/native/CMakeLists.txt @@ -28,7 +28,7 @@ rapids_cuda_init_architectures(CUDF_JNI) project( CUDF_JNI - VERSION 23.02.00 + VERSION 23.04.00 LANGUAGES C CXX CUDA ) diff --git a/python/cudf/CMakeLists.txt b/python/cudf/CMakeLists.txt index 1c2d06aeb62..72dd6ab9743 100644 --- a/python/cudf/CMakeLists.txt +++ b/python/cudf/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) -set(cudf_version 23.02.00) +set(cudf_version 23.04.00) include(../../fetch_rapids.cmake) diff --git a/python/strings_udf/CMakeLists.txt b/python/strings_udf/CMakeLists.txt index 0a69a9f57d6..2507116f957 100644 --- a/python/strings_udf/CMakeLists.txt +++ b/python/strings_udf/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) -set(strings_udf_version 23.02.00) +set(strings_udf_version 23.04.00) include(../../fetch_rapids.cmake)