Given that on most systems Python is still linked to the Python 2.7,
switch explicitly to using Python 3.
Python 2.7 was discontinued on January 1, 2020: [1].
Moreover, there is PEP recommending to use python3 in the shebang: [2].
[1] https://www.python.org/doc/sunset-python-2
[2] https://www.python.org/dev/peps/pep-0394
Change-Id: Idd3ed567b0384c6ff0a6121ad736f8af4c0f85e0
# https://issues.gerritcodereview.com/issues/303819949
common --noenable_bzlmod
-build --workspace_status_command="python ./tools/workspace_status.py"
+build --workspace_status_command="python3 ./tools/workspace_status.py"
build --repository_cache=~/.gerritcodereview/bazel-cache/repository
build --incompatible_strict_action_env
build --action_env=PATH
-#!/usr/bin/env python
+#!/usr/bin/env python3
# Copyright (C) 2020, David Ostrovsky <david@ostrovsky.org> and others
#
# This program and the accompanying materials are made available under the