Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <mclay@redhat.com>2021-04-26 07:25:32 +0300
committerGitHub <noreply@github.com>2021-04-26 07:25:32 +0300
commitecc5a53288993247a808b4190e426ae3ae0b994d (patch)
treefd4de8972b6fa46cdc8c102a2b4db7b6d614d1cc /hacking
parent7ca5dede978d01f53551da6ae4ccacbad365c88b (diff)
Update default containers to 3.4.0. (#74415)
* Update default containers to 3.4.0. The 3.4.0 containers use Python 3.6 (the system Python) for `/usr/bin/python3`. Python 3.9 continues to be the default Python version selected by `ansible-test` for these containers. * Fix shebang on build-ansible.py. Using `python` instead of `python3` allows `ansible-test` python interception and requirements install to function.
Diffstat (limited to 'hacking')
-rwxr-xr-xhacking/build-ansible.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/build-ansible.py b/hacking/build-ansible.py
index 8ebb88d33bd..c108c1861fa 100755
--- a/hacking/build-ansible.py
+++ b/hacking/build-ansible.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
# coding: utf-8
# PYTHON_ARGCOMPLETE_OK
# Copyright: (c) 2019, Ansible Project