-
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CI/Build] bump minimum cmake version #6999
Conversation
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, please make sure to run full CI as it is required to merge (or just use auto-merge). To run full CI, you can do one of these:
🚀 |
f0462f1
to
9981b80
Compare
Some extra context for this: having an older Unable to find python matching:
/home/dtrifiro/work/vllm/.venv/bin/python.
Call Stack (most recent call first):
CMakeLists.txt:43 (find_python_from_executable) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
CI failures seem unrelated:
|
/ready |
9981b80
to
4f4d5a0
Compare
Anything holding this back? |
@dtrifiro looking at the failing check logs, it seems the Intel CPU test cannot find its cmake executable with this change. It would be great if you could investigate this |
4f4d5a0
to
f4f3775
Compare
Looking at the failure logs, it seems that they're unrelated:
|
f4f3775
to
0a74f7b
Compare
- `find_python_from_executable` uses `find_package(PYTHON ... Development.SABIModule)`, which is only available [since cmake>=3.26](https://cmake.org/cmake/help/latest/module/FindPython.html) - `cmake` and `ninja` are build-time requirements, so they should not be in `requirements-common.txt` or `requirements-openvino.txt`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @dtrifiro
Signed-off-by: Alvant <[email protected]>
find_python_from_executable
usesfind_package(PYTHON ... Development.SABIModule)
, which is only available since cmake>=3.26cmake
andninja
are build-time requirements, so they should not be inrequirements-common.txt
orrequirements-openvino.txt