From 088812eeb5d104564fcc49e04e30f27a6454490d Mon Sep 17 00:00:00 2001 From: sicheste Date: Fri, 29 Nov 2024 14:20:57 +0100 Subject: [PATCH 1/3] use current setup-python v5 --- ci/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/python-app.yml b/ci/python-app.yml index 5963096c33..e2fbbb2003 100644 --- a/ci/python-app.yml +++ b/ci/python-app.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python 3.10 - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: "3.10" - name: Install dependencies From 22eabc235d191b863262f5158dd76bbf636bad1b Mon Sep 17 00:00:00 2001 From: sicheste Date: Fri, 29 Nov 2024 14:22:45 +0100 Subject: [PATCH 2/3] use Python 3.13 --- ci/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/python-app.yml b/ci/python-app.yml index e2fbbb2003..23c8b125ec 100644 --- a/ci/python-app.yml +++ b/ci/python-app.yml @@ -19,10 +19,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.10 + - name: Set up Python 3.13 uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.13" - name: Install dependencies run: | python -m pip install --upgrade pip From b14b47354ddeba9be027b62fc4712db65c8f94fb Mon Sep 17 00:00:00 2001 From: sicheste Date: Sun, 8 Dec 2024 12:55:33 +0100 Subject: [PATCH 3/3] Use Python 3.12. Python 3.12 is cached by the runners. 3.13 has to be downloaded by the runners every run again, so using 3.12 by default speeds up the execution. --- ci/python-app.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/python-app.yml b/ci/python-app.yml index 23c8b125ec..45c832938b 100644 --- a/ci/python-app.yml +++ b/ci/python-app.yml @@ -19,10 +19,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.13 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.12" - name: Install dependencies run: | python -m pip install --upgrade pip