Skip to content

Commit ec2f68d

Browse files
committed
upgraded python version in github flows..
1 parent 07d9311 commit ec2f68d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout current branch
1616
uses: actions/checkout@v3
1717

18-
- name: Install Python 3.9
18+
- name: Install Python 3.13
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.9
21+
python-version: 3.13
2222

2323
- name: install deps
2424
run: |

.github/workflows/ci-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v2
1919

20-
- name: Install Python 3.10
20+
- name: Install Python 3.13
2121
uses: actions/setup-python@v4
2222
with:
23-
python-version: "3.10"
23+
python-version: "3.13"
2424

2525
- name: install poetry
2626
if: always()

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
echo ::set-output name=current::$(grep version main/pyproject.toml | awk -F\" '{print $2}')
2727
echo ::set-output name=candidate::$(grep version pr/pyproject.toml | awk -F\" '{print $2}')
2828
29-
- name: Install Python 3.8
29+
- name: Install Python 3.13
3030
uses: actions/setup-python@v5
3131
with:
32-
python-version: 3.8
32+
python-version: 3.13
3333

3434
- name: Compare versions
3535
run: python pr/scripts/compare_version.py ${{ steps.versions.outputs.current }} ${{ steps.versions.outputs.candidate }}

0 commit comments

Comments
 (0)