Switch to python3 and scipy from slycot
Turns out we need python3 matplotlib to make scipy work well enough to
place the poles correctly for our systems. Rather than do it piecemeal,
do it all at once.
This includes a python opencv upgrade too to support the new python, and
a matplotlib upgrade.
Change-Id: Ic7517b5ebbfdca9cc90ae6a61d86b474f2f21b29
diff --git a/tools/python/runtime_binary.sh b/tools/python/runtime_binary.sh
index 6c96fcb..8380424 100755
--- a/tools/python/runtime_binary.sh
+++ b/tools/python/runtime_binary.sh
@@ -36,8 +36,4 @@
export LD_LIBRARY_PATH="${BASE_PATH}/usr/lib/lapack:${BASE_PATH}/usr/lib/libblas:${BASE_PATH}/usr/lib/x86_64-linux-gnu"
-if head -n 1 "$1" | grep -q python3; then
- exec "$BASE_PATH"/usr/bin/python3 "$@"
-else
- exec "$BASE_PATH"/usr/bin/python2 "$@"
-fi
+exec "$BASE_PATH"/usr/bin/python3 "$@"