diff --git a/conda/environments/all_cuda-118_arch-x86_64.yaml b/conda/environments/all_cuda-118_arch-x86_64.yaml index 567287be90d..543d5bf997d 100644 --- a/conda/environments/all_cuda-118_arch-x86_64.yaml +++ b/conda/environments/all_cuda-118_arch-x86_64.yaml @@ -31,7 +31,7 @@ dependencies: - dlpack>=0.5,<0.6.0a0 - doxygen=1.9.1 - fastavro>=0.22.9 -- fmt>=9.1.0,<10 +- fmt>=10.1.1,<11 - fsspec>=0.6.0 - gcc_linux-64=11.* - gmock>=1.13.0 @@ -88,7 +88,7 @@ dependencies: - s3fs>=2022.3.0 - scikit-build>=0.13.1 - scipy -- spdlog>=1.11.0,<1.12 +- spdlog>=1.12.0,<1.13 - sphinx - sphinx-autobuild - sphinx-copybutton diff --git a/conda/environments/all_cuda-120_arch-x86_64.yaml b/conda/environments/all_cuda-120_arch-x86_64.yaml index 80fbdb29d9c..d5a312dfbe4 100644 --- a/conda/environments/all_cuda-120_arch-x86_64.yaml +++ b/conda/environments/all_cuda-120_arch-x86_64.yaml @@ -32,7 +32,7 @@ dependencies: - dlpack>=0.5,<0.6.0a0 - doxygen=1.9.1 - fastavro>=0.22.9 -- fmt>=9.1.0,<10 +- fmt>=10.1.1,<11 - fsspec>=0.6.0 - gcc_linux-64=11.* - gmock>=1.13.0 @@ -85,7 +85,7 @@ dependencies: - s3fs>=2022.3.0 - scikit-build>=0.13.1 - scipy -- spdlog>=1.11.0,<1.12 +- spdlog>=1.12.0,<1.13 - sphinx - sphinx-autobuild - sphinx-copybutton diff --git a/conda/recipes/libcudf/conda_build_config.yaml b/conda/recipes/libcudf/conda_build_config.yaml index fa06ed048b7..318cfc88f3f 100644 --- a/conda/recipes/libcudf/conda_build_config.yaml +++ b/conda/recipes/libcudf/conda_build_config.yaml @@ -32,10 +32,10 @@ librdkafka_version: - ">=1.9.0,<1.10.0a0" fmt_version: - - ">=9.1.0,<10" + - ">=10.1.1,<11" spdlog_version: - - ">=1.11.0,<1.12" + - ">=1.12.0,<1.13" nvcomp_version: - "=3.0.4" diff --git a/cpp/src/io/utilities/datasource.cpp b/cpp/src/io/utilities/datasource.cpp index a466ef84133..687764be911 100644 --- a/cpp/src/io/utilities/datasource.cpp +++ b/cpp/src/io/utilities/datasource.cpp @@ -194,7 +194,9 @@ class memory_mapped_source : public file_source { if (result == cudaSuccess) { _is_map_registered = true; } else { - CUDF_LOG_WARN("cudaHostRegister failed with {} ({})", result, cudaGetErrorString(result)); + CUDF_LOG_WARN("cudaHostRegister failed with {} ({})", + static_cast(result), + cudaGetErrorString(result)); } } @@ -207,7 +209,9 @@ class memory_mapped_source : public file_source { auto const result = cudaHostUnregister(_map_addr); if (result != cudaSuccess) { - CUDF_LOG_WARN("cudaHostUnregister failed with {} ({})", result, cudaGetErrorString(result)); + CUDF_LOG_WARN("cudaHostUnregister failed with {} ({})", + static_cast(result), + cudaGetErrorString(result)); } } diff --git a/dependencies.yaml b/dependencies.yaml index 20226b1f563..db4745e6978 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -237,7 +237,7 @@ dependencies: common: - output_types: conda packages: - - fmt>=9.1.0,<10 + - fmt>=10.1.1,<11 - &gbench benchmark==1.8.0 - >est gtest>=1.13.0 - &gmock gmock>=1.13.0 @@ -246,7 +246,7 @@ dependencies: - librdkafka>=1.9.0,<1.10.0a0 # Align nvcomp version with rapids-cmake - nvcomp==3.0.4 - - spdlog>=1.11.0,<1.12 + - spdlog>=1.12.0,<1.13 build_wheels: common: - output_types: [requirements, pyproject]