Skip to content

Commit 918a615

Browse files
committed
[SP-2874] chore: use python 3.9 in all workflows
1 parent 04efcf0 commit 918a615

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/container-local-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v5
2929
with:
30-
python-version: '3.10.x'
30+
python-version: '3.9.x'
3131

3232
- name: Install Dependencies
3333
run: |

.github/workflows/container-publish-ghcr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Python
3131
uses: actions/setup-python@v5
3232
with:
33-
python-version: '3.10.x'
33+
python-version: '3.9.x'
3434

3535
- name: Install Dependencies
3636
run: |

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Set up Python
1818
uses: actions/setup-python@v4
1919
with:
20-
python-version: "3.8"
20+
python-version: "3.9"
2121

2222
- name: Install Dependencies
2323
run: |

.github/workflows/python-local-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.10.x"
25+
python-version: "3.9.x"
2626

2727
- name: Install Dependencies
2828
run: |

.github/workflows/python-publish-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.10.x'
19+
python-version: '3.9.x'
2020

2121
- name: Install dependencies
2222
run: |
@@ -70,7 +70,7 @@ jobs:
7070
- name: Set up Python
7171
uses: actions/setup-python@v5
7272
with:
73-
python-version: '3.10.x'
73+
python-version: '3.9.x'
7474

7575
- name: Install Remote Package
7676
uses: nick-fields/retry@v3

.github/workflows/python-publish-testpypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: '3.10.x'
18+
python-version: '3.9.x'
1919

2020
- name: Install Dependencies
2121
run: |
@@ -65,7 +65,7 @@ jobs:
6565
- name: Set up Python
6666
uses: actions/setup-python@v5
6767
with:
68-
python-version: '3.10.x'
68+
python-version: '3.9.x'
6969

7070
- name: Install Remote Package
7171
run: |

.github/workflows/version-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Python
2424
uses: actions/setup-python@v5
2525
with:
26-
python-version: '3.10.x'
26+
python-version: '3.9.x'
2727
- name: Determine Tag
2828
id: taggerVersion
2929
run: |

0 commit comments

Comments
 (0)