From c99d4dc8000fbd80ecb29563c45cc0c27cd6f433 Mon Sep 17 00:00:00 2001 From: SorinAlexB Date: Sat, 16 Mar 2024 14:20:01 +0200 Subject: [PATCH] Downgrade python to 3.10 Using python 3.12 will result into an error because distutils is no longer supported. Downgrading to python 3.10 will solve this issue. Signed-off-by: Sorin Birchi --- playbooks-opencrs/master-lite.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/playbooks-opencrs/master-lite.yml b/playbooks-opencrs/master-lite.yml index 10aefd7..5f2459a 100644 --- a/playbooks-opencrs/master-lite.yml +++ b/playbooks-opencrs/master-lite.yml @@ -23,15 +23,9 @@ append: yes become: yes - - name: Add specified repository into sources list - ansible.builtin.apt_repository: - repo: ppa:deadsnakes/ppa - state: present - become: yes - - name: Install the toolchain apt: - name: ['python3.12', 'python3.12-dev'] + name: ['python3.10', 'python3.10-dev'] state: present become: yes