From: Kristian Nielsen <knielsen@knielsen-hq.org>
Date: Wed, 2 Jan 2019 17:10:41 +0100
Subject: Use #!/usr/bin/python3 shebang

Following Debian Pyhthon policy, use #!/usr/bin/python3 in executable python
scripts over #!/usr/bin/env python.

Forwarded: not-needed
---
 scripts/git-archive-all.py     | 2 +-
 scripts/macosx-sanity-check.py | 2 +-
 scripts/makereleasejson.py     | 2 +-
 tests/cgalstlsanitytest        | 2 +-
 tests/export_import_pngtest.py | 2 +-
 tests/export_pngtest.py        | 2 +-
 tests/mingw_convert_ctest.py   | 2 +-
 tests/shouldfail.py            | 2 +-
 tests/test_cmdline_tool.py     | 2 +-
 tests/test_pretty_print.py     | 2 +-
 tests/validatestl.py           | 2 +-
 11 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/scripts/git-archive-all.py b/scripts/git-archive-all.py
index 0bfa585..37dfcde 100755
--- a/scripts/git-archive-all.py
+++ b/scripts/git-archive-all.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/python3
 # coding=utf-8
 
 from __future__ import print_function
diff --git a/scripts/macosx-sanity-check.py b/scripts/macosx-sanity-check.py
index 0724efa..fe6d50c 100755
--- a/scripts/macosx-sanity-check.py
+++ b/scripts/macosx-sanity-check.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 #
 # This is used to verify that all the dependant libraries of a Mac OS X executable
diff --git a/scripts/makereleasejson.py b/scripts/makereleasejson.py
index 58ef124..9276c17 100755
--- a/scripts/makereleasejson.py
+++ b/scripts/makereleasejson.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 # Used by github-release.sh
 
diff --git a/tests/cgalstlsanitytest b/tests/cgalstlsanitytest
index dc75f5e..566d409 100755
--- a/tests/cgalstlsanitytest
+++ b/tests/cgalstlsanitytest
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 import re, sys, subprocess, os
 from validatestl import validateSTL
diff --git a/tests/export_import_pngtest.py b/tests/export_import_pngtest.py
index 06406fe..75529ea 100644
--- a/tests/export_import_pngtest.py
+++ b/tests/export_import_pngtest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 # Export-import test
 #
diff --git a/tests/export_pngtest.py b/tests/export_pngtest.py
index f34983c..d9096fa 100644
--- a/tests/export_pngtest.py
+++ b/tests/export_pngtest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 # Export test
 #
diff --git a/tests/mingw_convert_ctest.py b/tests/mingw_convert_ctest.py
index b33de39..7ccff4d 100644
--- a/tests/mingw_convert_ctest.py
+++ b/tests/mingw_convert_ctest.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 #
 # Mingw_x_testfile - convert paths in CTestTestfile.cmake so they work 
diff --git a/tests/shouldfail.py b/tests/shouldfail.py
index bdc34b6..393ca00 100644
--- a/tests/shouldfail.py
+++ b/tests/shouldfail.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 
 # Test expected failure
 #
diff --git a/tests/test_cmdline_tool.py b/tests/test_cmdline_tool.py
index 7ee31a5..0dcb923 100755
--- a/tests/test_cmdline_tool.py
+++ b/tests/test_cmdline_tool.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 #
 # Regression test driver for cmd-line tools
 #
diff --git a/tests/test_pretty_print.py b/tests/test_pretty_print.py
index 9e0cb50..71d5731 100644
--- a/tests/test_pretty_print.py
+++ b/tests/test_pretty_print.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
 
 # test_pretty_print by don bright 2012. Copyright assigned to Marius Kintel and
 # Clifford Wolf 2012. Released under the GPL 2, or later, as described in
diff --git a/tests/validatestl.py b/tests/validatestl.py
index d8e4aac..4716306 100755
--- a/tests/validatestl.py
+++ b/tests/validatestl.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/python3
 
 #
 # Simple tool to validate an STL.
