From 45c7276a974a309a8757e229ec24fc055ce5af58 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Tue, 4 Jun 2024 20:41:27 +0200 Subject: [PATCH] support/testing: sample_python_pybind.py: use python3 shebang No functional change as we install a python symlink, but use python3 for consistency with the other scripts. Signed-off-by: Peter Korsgaard Signed-off-by: Arnout Vandecappelle (cherry picked from commit ed9288505caa4c3d1c30d5d73ef3189a40ae243a) Signed-off-by: Peter Korsgaard --- support/testing/tests/package/sample_python_pybind.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/testing/tests/package/sample_python_pybind.py b/support/testing/tests/package/sample_python_pybind.py index 605c0bab15..9c605caf61 100644 --- a/support/testing/tests/package/sample_python_pybind.py +++ b/support/testing/tests/package/sample_python_pybind.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import example print(example.add(1, 2)) print(example.says)