-
Notifications
You must be signed in to change notification settings - Fork 5.7k
[Infra] Auto install pybind11-stubgen
in cmake stage
#71911
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
[Infra] Auto install pybind11-stubgen
in cmake stage
#71911
Conversation
你的PR提交成功,感谢你对开源项目的贡献! |
if(_pybind11_stubgen_status EQUAL 0) | ||
return() | ||
endif() | ||
|
||
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install -U | ||
pybind11-stubgen) |
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.
if(_pybind11_stubgen_status EQUAL 0) | |
return() | |
endif() | |
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install -U | |
pybind11-stubgen) | |
if(NOT _pybind11_stubgen_status EQUAL 0) | |
execute_process(COMMAND ${PYTHON_EXECUTABLE} -m pip install -U | |
pybind11-stubgen) | |
endif() |
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.
不要,我就要 early return
PR Category
Environment Adaptation
PR Types
Devs
Description
cmake 阶段自动安装 pybind11-stubgen