Skip to content

Commit d8f73e5

Browse files
authored
bump to python 3.10 for workflows (#2443)
1 parent 83c88b8 commit d8f73e5

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: [3.9]
18+
python-version: ["3.10"]
1919
runs-on: [ubuntu-22.04]
2020

2121
runs-on: ${{ matrix.runs-on }}

.github/workflows/test_cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: [3.9]
24+
python-version: ["3.10"]
2525
runs-on: [ubuntu-22.04, windows-2022]
2626

2727
runs-on: ${{ matrix.runs-on }}

.github/workflows/test_common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ jobs:
4444
run: |
4545
pytest tests/common -vvvv --durations=0
4646
env:
47-
HUGGINGFACE_CO_STAGING: ${{ matrix.python-version == '3.9' && matrix.runs-on == 'ubuntu-22.04' }}
47+
HUGGINGFACE_CO_STAGING: ${{ matrix.python-version == '3.10' && matrix.runs-on == 'ubuntu-22.04' }}

.github/workflows/test_exporters_common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: [3.9]
24+
python-version: ["3.10"]
2525
runs-on: [ubuntu-22.04, windows-2022]
2626

2727
runs-on: ${{ matrix.runs-on }}

.github/workflows/test_fx_optimization.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: [3.9]
21+
python-version: ["3.10"]
2222
os: [ubuntu-22.04]
2323

2424
runs-on: ${{ matrix.os }}

.github/workflows/test_pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: [3.9]
24+
python-version: ["3.10"]
2525
runs-on: [ubuntu-22.04, windows-2022]
2626

2727
runs-on: ${{ matrix.runs-on }}

.github/workflows/test_utils.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
python-version: [3.9]
23+
python-version: ["3.10"]
2424
runs-on: [ubuntu-22.04, macos-14, windows-2022]
2525

2626
runs-on: ${{ matrix.runs-on }}

0 commit comments

Comments
 (0)