Skip to content

Commit

Permalink
Downgrade python to 3.10
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
SorinAlexB committed Mar 18, 2024
1 parent 8447c80 commit c99d4dc
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions playbooks-opencrs/master-lite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c99d4dc

Please sign in to comment.