From baa350ef2306963958c20742a863ac0b14bad961 Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Mon, 13 Jul 2020 17:07:07 +0200 Subject: [PATCH] maintain-github-mirror: add requests dependency maintain-github-mirror makes direct use of the requests module. That module is currently installed as a dependency of PyGithub, but that's brittle, as PyGithub may well opt for a different library in the future. Let's proactively fix that before it bites us. Change-Id: I8fc288e6c3978e20ddf48f905968931f89834e53 --- playbooks/maintain-github-mirror/run.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/maintain-github-mirror/run.yaml b/playbooks/maintain-github-mirror/run.yaml index 0171f4d671..56ca6321b1 100644 --- a/playbooks/maintain-github-mirror/run.yaml +++ b/playbooks/maintain-github-mirror/run.yaml @@ -14,6 +14,7 @@ name: - PyGithub - PyYAML + - requests virtualenv: "{{ ansible_user_dir }}/.venv" virtualenv_command: "{{ ensure_pip_virtualenv_command }}"