From d1190c1b554682c7d417778eaa9e6dfa6cf14c99 Mon Sep 17 00:00:00 2001
From: Georg Krause <mail@georg-krause.net>
Date: Tue, 13 Jun 2023 15:56:46 +0200
Subject: [PATCH] feat: Make sure pip is up to date before running installation

---
 tasks/funkwhale.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tasks/funkwhale.yml b/tasks/funkwhale.yml
index 5a677e3..0233d9e 100644
--- a/tasks/funkwhale.yml
+++ b/tasks/funkwhale.yml
@@ -210,7 +210,10 @@
   become: true
   become_user: "{{ funkwhale_username }}"
   pip:
-    name: wheel
+    name:
+      - "wheel"
+      - "pip>=21.3"
+      - "setuptools>=64"
     virtualenv: "{{ funkwhale_install_path }}/virtualenv"
     virtualenv_python: python3
 
-- 
GitLab