Skip to content

Commit 69da26d

Browse files
authored
pin pytorch/manylinux2_28-builder version instead of main (vllm-project#203)
* pin pytorch/manylinux2_28-builder version instead of main Signed-off-by: Kunshang Ji <kunshang.ji@intel.com> * find python dev Signed-off-by: Kunshang Ji <kunshang.ji@intel.com> --------- Signed-off-by: Kunshang Ji <kunshang.ji@intel.com>
1 parent 28091e3 commit 69da26d

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/wheel-per-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
(github.event.workflow_run.conclusion == 'success' &&
2323
github.event.workflow_run.event == 'push')
2424
container:
25-
image: pytorch/manylinux2_28-builder:xpu-main
25+
image: pytorch/manylinux2_28-builder:xpu-v2.10.0-rc7
2626
options: --user root
2727
steps:
2828
- name: Checkout

cmake/utils.cmake

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
macro(find_python_from_executable EXECUTABLE SUPPORTED_VERSIONS)
66
file(REAL_PATH ${EXECUTABLE} EXECUTABLE)
77
set(Python_EXECUTABLE ${EXECUTABLE})
8-
find_package(Python COMPONENTS Interpreter Development.Module
8+
find_package(Python COMPONENTS Interpreter Development Development.Module
99
Development.SABIModule)
1010
if(NOT Python_FOUND)
1111
message(FATAL_ERROR "Unable to find python matching: ${EXECUTABLE}.")
@@ -19,6 +19,9 @@ macro(find_python_from_executable EXECUTABLE SUPPORTED_VERSIONS)
1919
"${_SUPPORTED_VERSIONS_LIST}.")
2020
endif()
2121
message(STATUS "Found python matching: ${EXECUTABLE}.")
22+
message(STATUS "Python include dirs: ${Python_INCLUDE_DIRS}")
23+
message(STATUS "Python libraries: ${Python_LIBRARIES}")
24+
message(STATUS "Python version: ${Python_VERSION}")
2225
endmacro()
2326

2427
#

0 commit comments

Comments
 (0)