diff --git a/ci/build_cpp.sh b/ci/build_cpp.sh index 740a6409ccd..e5fcef17a83 100755 --- a/ci/build_cpp.sh +++ b/ci/build_cpp.sh @@ -13,12 +13,10 @@ export CMAKE_GENERATOR=Ninja rapids-print-env -version=$(rapids-generate-version) - rapids-logger "Begin cpp build" # With boa installed conda build forward to boa -RAPIDS_PACKAGE_VERSION=${version} rapids-conda-retry mambabuild \ +RAPIDS_PACKAGE_VERSION=$(rapids-generate-version) rapids-conda-retry mambabuild \ conda/recipes/libcudf rapids-upload-conda-to-s3 cpp diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 67a5415f353..14dc7a59048 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -14,7 +14,7 @@ ENV_YAML_DIR="$(mktemp -d)" rapids-dependency-file-generator \ --output conda \ - --file_key docs \ + --file-key docs \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee "${ENV_YAML_DIR}/env.yaml" rapids-mamba-retry env create --yes -f "${ENV_YAML_DIR}/env.yaml" -n docs diff --git a/ci/check_style.sh b/ci/check_style.sh index 029cd305f1d..634d8b0d702 100755 --- a/ci/check_style.sh +++ b/ci/check_style.sh @@ -10,7 +10,7 @@ ENV_YAML_DIR="$(mktemp -d)" rapids-dependency-file-generator \ --output conda \ - --file_key checks \ + --file-key checks \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee "${ENV_YAML_DIR}/env.yaml" rapids-mamba-retry env create --yes -f "${ENV_YAML_DIR}/env.yaml" -n checks diff --git a/ci/configure_cpp_static.sh b/ci/configure_cpp_static.sh index 11d5585d98f..51e41b065fb 100755 --- a/ci/configure_cpp_static.sh +++ b/ci/configure_cpp_static.sh @@ -12,7 +12,7 @@ REQUIREMENTS_FILE="${ENV_YAML_DIR}/requirements.txt" rapids-dependency-file-generator \ --output requirements \ - --file_key test_static_build \ + --file-key test_static_build \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch)" | tee "${REQUIREMENTS_FILE}" python -m pip install -r "${REQUIREMENTS_FILE}" diff --git a/ci/test_cpp_common.sh b/ci/test_cpp_common.sh index da847137a2b..f5a8de543f6 100755 --- a/ci/test_cpp_common.sh +++ b/ci/test_cpp_common.sh @@ -11,7 +11,7 @@ ENV_YAML_DIR="$(mktemp -d)" rapids-dependency-file-generator \ --output conda \ - --file_key test_cpp \ + --file-key test_cpp \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch)" | tee "${ENV_YAML_DIR}/env.yaml" rapids-mamba-retry env create --yes -f "${ENV_YAML_DIR}/env.yaml" -n test diff --git a/ci/test_java.sh b/ci/test_java.sh index c93079742f0..9713eb192d2 100755 --- a/ci/test_java.sh +++ b/ci/test_java.sh @@ -11,7 +11,7 @@ ENV_YAML_DIR="$(mktemp -d)" rapids-dependency-file-generator \ --output conda \ - --file_key test_java \ + --file-key test_java \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch)" | tee "${ENV_YAML_DIR}/env.yaml" rapids-mamba-retry env create --yes -f "${ENV_YAML_DIR}/env.yaml" -n test diff --git a/ci/test_notebooks.sh b/ci/test_notebooks.sh index 8be2d374bed..da9478ce25d 100755 --- a/ci/test_notebooks.sh +++ b/ci/test_notebooks.sh @@ -11,7 +11,7 @@ ENV_YAML_DIR="$(mktemp -d)" rapids-dependency-file-generator \ --output conda \ - --file_key test_notebooks \ + --file-key test_notebooks \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee "${ENV_YAML_DIR}/env.yaml" rapids-mamba-retry env create --yes -f "${ENV_YAML_DIR}/env.yaml" -n test diff --git a/ci/test_python_common.sh b/ci/test_python_common.sh index 7559d970f6d..e8849588aa5 100755 --- a/ci/test_python_common.sh +++ b/ci/test_python_common.sh @@ -13,7 +13,7 @@ ENV_YAML_DIR="$(mktemp -d)" rapids-dependency-file-generator \ --output conda \ - --file_key test_python \ + --file-key test_python \ --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee "${ENV_YAML_DIR}/env.yaml" rapids-mamba-retry env create --yes -f "${ENV_YAML_DIR}/env.yaml" -n test diff --git a/python/cudf/pyproject.toml b/python/cudf/pyproject.toml index 9ad02fed044..20b731624df 100644 --- a/python/cudf/pyproject.toml +++ b/python/cudf/pyproject.toml @@ -119,7 +119,6 @@ skip = [ [tool.rapids-build-backend] build-backend = "scikit_build_core.build" -commit-file = "cudf/GIT_COMMIT" dependencies-file = "../../dependencies.yaml" requires = [ "cmake>=3.26.4", diff --git a/python/cudf_kafka/pyproject.toml b/python/cudf_kafka/pyproject.toml index 1bc04742a73..11e18cd4f32 100644 --- a/python/cudf_kafka/pyproject.toml +++ b/python/cudf_kafka/pyproject.toml @@ -99,7 +99,6 @@ regex = "(?P.*)" [tool.rapids-build-backend] build-backend = "scikit_build_core.build" -commit-file = "cudf_kafka/GIT_COMMIT" dependencies-file = "../../dependencies.yaml" requires = [ "cmake>=3.26.4", diff --git a/python/cudf_polars/pyproject.toml b/python/cudf_polars/pyproject.toml index 11178a3be74..face04b9bd8 100644 --- a/python/cudf_polars/pyproject.toml +++ b/python/cudf_polars/pyproject.toml @@ -174,7 +174,6 @@ docstring-code-format = true [tool.rapids-build-backend] build-backend = "setuptools.build_meta" -commit-file = "cudf_polars/GIT_COMMIT" dependencies-file = "../../dependencies.yaml" # Pure python disable-cuda = true diff --git a/python/custreamz/pyproject.toml b/python/custreamz/pyproject.toml index e004a8f5219..7b99e041b54 100644 --- a/python/custreamz/pyproject.toml +++ b/python/custreamz/pyproject.toml @@ -48,7 +48,6 @@ Homepage = "https://github.com/rapidsai/cudf" [tool.rapids-build-backend] build-backend = "setuptools.build_meta" -commit-file = "custreamz/COMMIT_FILE" dependencies-file = "../../dependencies.yaml" [tool.setuptools] diff --git a/python/dask_cudf/pyproject.toml b/python/dask_cudf/pyproject.toml index 6b5d5ccc412..9b2e3a5a7b1 100644 --- a/python/dask_cudf/pyproject.toml +++ b/python/dask_cudf/pyproject.toml @@ -57,7 +57,6 @@ Homepage = "https://github.com/rapidsai/cudf" [tool.rapids-build-backend] build-backend = "setuptools.build_meta" -commit-file = "dask_cudf/GIT_COMMIT" dependencies-file = "../../dependencies.yaml" [tool.setuptools]