Skip to content

Commit c2e1bac

Browse files
authored
Fix: exclude matrix combination of python3.10 and devel (#156)
* Fix: exclude matrix combination of python3.10 and devel version of ansible Rationale: support of Python3.10 was removed ansible/ansible#83221 * add combination of py3.10+milestone to exclude list remove some obsolete combination that don't look valid anymore * revert .vscode/settings.json to remove change from PR * reverted back python3.12 for ansible 2.15 * fix issue ralated to copy/paste
1 parent 240ead0 commit c2e1bac

File tree

5 files changed

+49
-25
lines changed

5 files changed

+49
-25
lines changed

.github/workflows/integration_simple.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ on:
1616
# devel is 2.16 until 2023-09-18
1717
default: >-
1818
[
19-
{
20-
"ansible-version": "stable-2.13",
21-
"python-version": "3.11"
22-
},
2319
{
2420
"ansible-version": "stable-2.16",
2521
"python-version": "3.9"
@@ -31,7 +27,19 @@ on:
3127
{
3228
"ansible-version": "devel",
3329
"python-version": "3.9"
34-
}
30+
},
31+
{
32+
"ansible-version": "devel",
33+
"python-version": "3.10"
34+
},
35+
{
36+
"ansible-version": "milestone",
37+
"python-version": "3.10"
38+
},
39+
{
40+
"ansible-version": "stable-2.15",
41+
"python-version": "3.12"
42+
}
3543
]
3644
required: false
3745
type: string

.github/workflows/sanity.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ on:
1717
# remove 3.12/milestone from matrix_exclude when milestone is next forwarded
1818
default: >-
1919
[
20-
{
21-
"ansible-version": "stable-2.15",
22-
"python-version": "3.12"
23-
},
2420
{
2521
"ansible-version": "stable-2.16",
2622
"python-version": "3.9"
@@ -34,12 +30,20 @@ on:
3430
"python-version": "3.9"
3531
},
3632
{
37-
"ansible-version": "milestone",
38-
"python-version": "3.12"
33+
"ansible-version": "devel",
34+
"python-version": "3.9"
3935
},
4036
{
4137
"ansible-version": "devel",
42-
"python-version": "3.9"
38+
"python-version": "3.10"
39+
},
40+
{
41+
"ansible-version": "milestone",
42+
"python-version": "3.10"
43+
},
44+
{
45+
"ansible-version": "stable-2.15",
46+
"python-version": "3.12"
4347
}
4448
]
4549
required: false

.github/workflows/unit_galaxy.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ on:
1515
# devel is 2.16 until 2023-09-18
1616
default: >-
1717
[
18-
{
19-
"ansible-version": "stable-2.15",
20-
"python-version": "3.12"
21-
},
2218
{
2319
"ansible-version": "stable-2.16",
2420
"python-version": "3.9"
@@ -32,13 +28,21 @@ on:
3228
"python-version": "3.9"
3329
},
3430
{
35-
"ansible-version": "milestone",
36-
"python-version": "3.12"
31+
"ansible-version": "devel",
32+
"python-version": "3.9"
3733
},
3834
{
3935
"ansible-version": "devel",
40-
"python-version": "3.9"
41-
}
36+
"python-version": "3.10"
37+
},
38+
{
39+
"ansible-version": "milestone",
40+
"python-version": "3.10"
41+
},
42+
{
43+
"ansible-version": "stable-2.15",
44+
"python-version": "3.12"
45+
}
4246
]
4347
required: false
4448
type: string

.github/workflows/unit_source.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ on:
1515
# devel is 2.18 until xxxx-xx-xx
1616
default: >-
1717
[
18-
{
19-
"ansible-version": "stable-2.15",
20-
"python-version": "3.12"
21-
},
2218
{
2319
"ansible-version": "stable-2.16",
2420
"python-version": "3.9"
@@ -34,6 +30,18 @@ on:
3430
{
3531
"ansible-version": "devel",
3632
"python-version": "3.9"
33+
},
34+
{
35+
"ansible-version": "devel",
36+
"python-version": "3.10"
37+
},
38+
{
39+
"ansible-version": "milestone",
40+
"python-version": "3.10"
41+
},
42+
{
43+
"ansible-version": "stable-2.15",
44+
"python-version": "3.12"
3745
}
3846
]
3947
required: false

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"isort.check": true,
88
"[python]": {
99
"editor.codeActionsOnSave": {
10-
"source.organizeImports": true
10+
"source.organizeImports": "explicit"
1111
}
1212
},
1313
"prettier.enable": true

0 commit comments

Comments
 (0)