Skip to content

Commit 753cafe

Browse files
committed
ansible: pin Python 3 to 3.10.8
Node.js 14 is incompatible with Python 3.11. Pin Python 3 to 3.10.8.
1 parent 81988ef commit 753cafe

File tree

1 file changed

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

1 file changed

+10
-1
lines changed

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

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

1515
- name: install Python 3
16-
win_chocolatey: name=python
16+
win_chocolatey:
17+
name: python3
18+
pinned: yes
19+
version: "3.10.8"
20+
21+
- name: install Python 3
22+
win_chocolatey:
23+
name: python
24+
pinned: yes
25+
version: "3.10.8"
1726

1827
- name: install Python 2
1928
win_chocolatey: name=python2

0 commit comments

Comments
 (0)