Python 2 is EOL sice 2020 [1], it's still available on distros, but may not
be installed by default (as being replaced by python3).
Thus remove compatibility imports:
from __future__ import print_function
from __future__ import absolute_import
Tested with python3 -m py_compile.
[1] https://www.python.org/doc/sunset-python-2/
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
12 files changed:
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright (C) 2009 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
# Copyright (C) 2020 by Gregory CLEMENT <gregory.clement@bootlin.com>
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright (C) 2011 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
# Copyright (C) 2013 by Yann E. MORIN <yann.morin.1998@free.fr>
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Usage (the graphviz package must be installed in your distribution)
# ./support/scripts/graph-depends [-p package-name] > test.dot
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""
Byte compile all .py files from provided directories. This script is an
cross-compilation in mind.
"""
-from __future__ import print_function
-
import argparse
import os
import py_compile
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright (C) 2014 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""A simple test that uses gst1-python to run a fake videotestsrc for 100
frames
"""
-#!/usr/bin/env python
+#!/usr/bin/env python3
"""A simple test that uses python-gobject to find the path of sh."""
from gi.repository import GLib
-#!/usr/bin/env python
+#!/usr/bin/env python3
# See utils/checkpackagelib/readme.txt before editing this file.
-from __future__ import print_function
import argparse
import inspect
import os
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright (C) 2014 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
#
# This script generates a random configuration for testing Buildroot.
-from __future__ import print_function
-
import contextlib
import csv
import os
-#!/usr/bin/env python
+#!/usr/bin/env python3
import argparse
import getdeveloperlib
-from __future__ import print_function
from io import open
import os
import re
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright (C) 2016 Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>