Use FQCNs. (#1180)

This commit is contained in:
Felix Fontein
2025-10-25 10:12:21 +02:00
committed by GitHub
parent be000755fc
commit b24bce77b6
196 changed files with 3289 additions and 3289 deletions
@@ -9,21 +9,21 @@
####################################################################
- name: Install/upgrade Python requirements
pip:
ansible.builtin.pip:
name: "{{ docker_pip_api_packages + (docker_pip_api_packages_python2 if ansible_facts.python.version.major == 2 else []) }}"
extra_args: "-c {{ remote_constraints }}"
state: present
when: not (force_docker_sdk_for_python_dev | default(false))
- name: Make sure git is installed
package:
ansible.builtin.package:
name:
- git
state: present
when: force_docker_sdk_for_python_dev | default(false)
- name: Install/upgrade Python requirements from source repositories
pip:
ansible.builtin.pip:
name:
- git+https://github.com/psf/requests
- git+https://github.com/urllib3/urllib3