aboutsummaryrefslogtreecommitdiffstats
path: root/testing/micropython/python3.patch
blob: 13641ea00bb74a6218c4cfc2f28a5d183659452e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
diff --git a/lib/memzip/make-memzip.py b/lib/memzip/make-memzip.py
index 9730f5e..3a1f7a5 100755
--- a/lib/memzip/make-memzip.py
+++ b/lib/memzip/make-memzip.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Takes a directory of files and zips them up (as uncompressed files).
 # This then gets converted into a C data structure which can be read
diff --git a/ports/teensy/make-pins.py b/ports/teensy/make-pins.py
index 0f6c5f2..5d21d8f 100755
--- a/ports/teensy/make-pins.py
+++ b/ports/teensy/make-pins.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """Creates the pin file for the Teensy."""
 
 from __future__ import print_function
diff --git a/tools/make-frozen.py b/tools/make-frozen.py
index 1051b52..06ee7a3 100755
--- a/tools/make-frozen.py
+++ b/tools/make-frozen.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Create frozen modules structure for MicroPython.
 #
diff --git a/tools/pyboard.py b/tools/pyboard.py
index 16ee41f..17b7f98 100755
--- a/tools/pyboard.py
+++ b/tools/pyboard.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # This file is part of the MicroPython project, http://micropython.org/
 #
diff --git a/tools/pydfu.py b/tools/pydfu.py
index 8c0220d..55ea952 100755
--- a/tools/pydfu.py
+++ b/tools/pydfu.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # This file is part of the OpenMV project.
 # Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com>
 # This work is licensed under the MIT license, see the file LICENSE for