mc-manual.xml fix new/delete expresions -> expression
[valgrind.git] / tests / python_test.sh
blob87f435b74fc0eaf833b6d0f5fbd380a1181f25f0
1 #!/bin/sh
3 # We need a python3 binary
4 type python3 2>/dev/null 1>/dev/null || exit 1
6 # And it needs to support at least version 3.9
7 python3 -c 'import sys; assert sys.version_info >= (3,9)' 2>/dev/null || exit 1
9 exit 0