Skip to content

Commit 36d938b

Browse files
committed
Remove depricated FindPythonLibs
1 parent 9c85f0e commit 36d938b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

numba_dpex/core/runtime/CMakeLists.txt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${SKBUILD_MODULE_PATH})
7878
message(STATUS "CMAKE_MODULE_PATH=" "${CMAKE_MODULE_PATH}")
7979

8080
# Add packages
81-
find_package(PythonLibs REQUIRED)
82-
find_package(PythonExtensions REQUIRED)
83-
find_package(NumPy REQUIRED)
81+
find_package(Python 3.8 REQUIRED
82+
COMPONENTS Interpreter Development.Module NumPy)
8483
find_package(Dpctl REQUIRED)
84+
find_package(NumPy REQUIRED)
8585

8686
# Includes
8787
include(GNUInstallDirs)
@@ -104,9 +104,6 @@ add_library(${PROJECT_NAME} MODULE ${SOURCES})
104104
target_link_libraries(${PROJECT_NAME} ${Python_LIBRARIES})
105105
target_link_libraries(${PROJECT_NAME} DPCTLSyclInterface)
106106

107-
# Build python extension module
108-
python_extension_module(${PROJECT_NAME})
109-
110107
# If IS_DEVELOP, copy back the target into numba_dpex/core/runtime
111108
if(IS_DEVELOP)
112109
add_custom_command(

0 commit comments

Comments
 (0)