Skip to content

Commit

Permalink
fix: update python version
Browse files Browse the repository at this point in the history
  • Loading branch information
yihong0618 committed Nov 28, 2024
1 parent 5d7cdf9 commit 34e4cf0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9']
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set Variables
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11

- name: Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_poster_generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: "pip" # caching pip dependencies

- name: Install dependencies
Expand Down

0 comments on commit 34e4cf0

Please sign in to comment.