Skip to content

Commit 9d34fc8

Browse files
yurnovYuriy Novostavskiy
andauthored
update matrix to drop python 3.11 for ansible 2.20 (#177)
ansible drops support of python 3.11 in 2.20 ref: ansible/ansible#85590 Co-authored-by: Yuriy Novostavskiy <[email protected]>
1 parent dcf2451 commit 9d34fc8

File tree

4 files changed

+32
-4
lines changed

4 files changed

+32
-4
lines changed

.github/workflows/integration_simple.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,22 @@ on:
1515
# 2.19 supports Python 3.11-3.13
1616
# support for Python 3.13 added and 3.10 removed in 2.18 for control node
1717
# target node supported Python 3.8-3.13 as of 2.18 and 2.19
18-
# milestone is and devel is switched to 2.20
18+
# milestone is and devel is switched to 2.20 and drops support for Python 3.11
1919
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_18.html
2020
default: >-
2121
[
22+
{
23+
"ansible-version": "devel",
24+
"python-version": "3.11"
25+
},
2226
{
2327
"ansible-version": "devel",
2428
"python-version": "3.10"
2529
},
30+
{
31+
"ansible-version": "milestone",
32+
"python-version": "3.11"
33+
},
2634
{
2735
"ansible-version": "milestone",
2836
"python-version": "3.10"

.github/workflows/sanity.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,22 @@ on:
1515
# 2.19 supports Python 3.11-3.13
1616
# support for Python 3.13 added and 3.10 removed in 2.18 for control node
1717
# target node supported Python 3.8-3.13 as of 2.18 and 2.19
18-
# milestone is and devel is switched to 2.20
18+
# milestone is and devel is switched to 2.20 and drops support for Python 3.11
1919
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_19.html
2020
default: >-
2121
[
22+
{
23+
"ansible-version": "devel",
24+
"python-version": "3.11"
25+
},
2226
{
2327
"ansible-version": "devel",
2428
"python-version": "3.10"
2529
},
30+
{
31+
"ansible-version": "milestone",
32+
"python-version": "3.11"
33+
},
2634
{
2735
"ansible-version": "milestone",
2836
"python-version": "3.10"

.github/workflows/unit_galaxy.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,22 @@ on:
1515
# 2.19 supports Python 3.11-3.13
1616
# support for Python 3.13 added and 3.10 removed in 2.18 for control node
1717
# target node supported Python 3.8-3.13 as of 2.18 and 2.19
18-
# milestone is and devel is switched to 2.20
18+
# milestone is and devel is switched to 2.20 and drops support for Python 3.11
1919
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_19.html
2020
default: >-
2121
[
22+
{
23+
"ansible-version": "devel",
24+
"python-version": "3.11"
25+
},
2226
{
2327
"ansible-version": "devel",
2428
"python-version": "3.10"
2529
},
30+
{
31+
"ansible-version": "milestone",
32+
"python-version": "3.11"
33+
},
2634
{
2735
"ansible-version": "milestone",
2836
"python-version": "3.10"

.github/workflows/unit_source.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,14 @@ on:
1515
# 2.19 supports Python 3.11-3.13
1616
# support for Python 3.13 added and 3.10 removed in 2.18 for control node
1717
# target node supported Python 3.8-3.13 as of 2.18 and 2.19
18-
# milestone is and devel is switched to 2.29
18+
# milestone is and devel is switched to 2.20 and drops support for Python 3.11
1919
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_18.html
2020
default: >-
2121
[
22+
{
23+
"ansible-version": "milestone",
24+
"python-version": "3.11"
25+
},
2226
{
2327
"ansible-version": "devel",
2428
"python-version": "3.11"

0 commit comments

Comments
 (0)