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.
pull/4455/head
David Manthey 1 year ago committed by Behdad Esfahbod
parent 18a6e78549
commit 45a7f9cec3
  1. 2
      src/relative_to.py

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
import sys
from os import path

Loading…
Cancel
Save