Skip to content

Commit 19accd1

Browse files
committed
Require Python 3.13 until Ansible 13 is released.
1 parent 4a23d83 commit 19accd1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Python 3.
2727
uses: actions/setup-python@v5
2828
with:
29-
python-version: '3.x'
29+
python-version: '3.13' # Can't go to 3.14+ until Ansible 13.x
3030

3131
- name: Install test dependencies.
3232
run: pip3 install yamllint
@@ -53,7 +53,7 @@ jobs:
5353
- name: Set up Python 3.
5454
uses: actions/setup-python@v5
5555
with:
56-
python-version: '3.x'
56+
python-version: '3.13' # Can't go to 3.14+ until Ansible 13.x
5757

5858
- name: Install test dependencies.
5959
run: pip3 install ansible molecule molecule-plugins[docker] docker

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Set up Python 3.
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: '3.x'
32+
python-version: '3.13' # Can't go to 3.14+ until Ansible 13.x
3333

3434
- name: Install Ansible.
3535
run: pip3 install ansible-core

0 commit comments

Comments
 (0)