Commit 45a7f9cec377df71de4a512720d695186cc23afa

David Manthey 2023-10-18T08:28:23

Change the shebang used for python The shebang `/usr/bin/python3` assumes python3 is installed in /usr/bin, which isn't always true (e.g., in the manylinux docker image). Using `/usr/bin/env python3` uses the python3 that is in the path, which is more flexible.