Skip to content

Commit 80334ef

Browse files
committed
ansible: pin Python 3 to 3.10.8 (#3062)
Node.js 14 is incompatible with Python 3.11. Pin Python 3 to 3.10.8.
1 parent bd5258b commit 80334ef

File tree

1 file changed

+12
-1
lines changed
  • ansible/roles/baselayout-windows/tasks

1 file changed

+12
-1
lines changed

ansible/roles/baselayout-windows/tasks/main.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,18 @@
1313
install_args: 'ADD_CMAKE_TO_PATH=System'
1414

1515
- name: install Python 3
16-
win_chocolatey: name=python
16+
win_chocolatey:
17+
install_args: Include_launcher=1
18+
name: python3
19+
pinned: yes
20+
version: "3.10.8"
21+
22+
- name: install Python 3
23+
win_chocolatey:
24+
install_args: Include_launcher=1
25+
name: python
26+
pinned: yes
27+
version: "3.10.8"
1728

1829
- name: install Python 2
1930
win_chocolatey: name=python2

0 commit comments

Comments
 (0)