Skip to content

Commit

Permalink
ansible: pin Python 3 to 3.10.8 (#3062)
Browse files Browse the repository at this point in the history
Node.js 14 is incompatible with Python 3.11. Pin Python 3 to 3.10.8.
  • Loading branch information
richardlau committed Nov 18, 2022
1 parent 8655962 commit 7fdcf57
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion ansible/roles/baselayout-windows/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@
install_args: 'ADD_CMAKE_TO_PATH=System'

- name: install Python 3
win_chocolatey: name=python
win_chocolatey:
install_args: Include_launcher=1
name: python3
pinned: yes
version: "3.10.8"

- name: install Python 3
win_chocolatey:
install_args: Include_launcher=1
name: python
pinned: yes
version: "3.10.8"

- name: install Python 2
win_chocolatey: name=python2
Expand Down

0 comments on commit 7fdcf57

Please sign in to comment.