You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Alternatively, we could have raised our minimum required Python version to 3.7, but I don't think that it is a good idea, unless upstream LLVM does so.
There is an inconsistency about minimum required python version: we have an implicit requirement for 3.7, whilst our explicit requirement is only 3.6
Explicit requirement is documented here:
llvm/llvm/CMakeLists.txt
Lines 839 to 842 in e753fae
Implicit requirement is caused by the following lines:
llvm/sycl/test-e2e/lit.cfg.py
Lines 380 to 381 in e753fae
capture_output
argument ofsubprocess.run
does not exists in Python 3,6 and it is only added in Python 3.7:stackoverflow suggests that we could use
check_output
function instead.Alternatively, we could have raised our minimum required Python version to 3.7, but I don't think that it is a good idea, unless upstream LLVM does so.
@aelovikov-intel: FYI
The text was updated successfully, but these errors were encountered: