Loading
python/hooks: use python.pythonVersion to support PyPy
f292ef49 introduced a check for the Python version but uses `.version`, which isn't friendly to other Pythons like PyPy which use versions strings like 7.3, failing the >=3.10 check. Using `.pythonVersion` fixes this check. Co-authored-by:Pierre Bourdon <delroth@gmail.com>