Skip to content

Commit eaa4930

Browse files
authored
Fixes from attempting integration (#21)
This is the last set of fixes required to successfully build the full suite of RAPIDS conda packages using rapids-logger.
1 parent bcea4ef commit eaa4930

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/rapids-logger/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ string(REGEX MATCH "[0-9]+\.[0-9]+\.[0-9]+" _version "${_version}")
2222

2323
project(
2424
rapids-logger-python
25-
VERSION "${RAPIDS_VERSION}"
25+
VERSION "${_version}"
2626
LANGUAGES CXX
2727
)
2828

2929
# Check if rapids-logger is already available. If so, it is the user's responsibility to ensure that
3030
# the CMake package is also available when building any Python packages that may depend on the
3131
# rapids-logger Python package (e.g. cudf).
32-
find_package(rapids_logger "${RAPIDS_VERSION}")
32+
find_package(rapids_logger "${_version}")
3333

3434
if(rapids_logger_FOUND)
3535
return()

0 commit comments

Comments
 (0)