Skip to content

Commit 34e4cf0

Browse files
committed
fix: update python version
1 parent 5d7cdf9 commit 34e4cf0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
strategy:
1111
max-parallel: 4
1212
matrix:
13-
python-version: ['3.8', '3.9']
13+
python-version: ['3.11', '3.12']
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Set Variables

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-python@v4
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.8
17+
python-version: 3.11
1818

1919
- name: Build
2020
run: |

.github/workflows/run_poster_generate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: "3.10"
25+
python-version: "3.11"
2626
cache: "pip" # caching pip dependencies
2727

2828
- name: Install dependencies

0 commit comments

Comments
 (0)