From 7c1325d2f2dbb6b1c438bcc770b24bf86bc2d32a Mon Sep 17 00:00:00 2001 From: Michal Plichta Date: Sat, 16 Nov 2024 21:39:43 +0100 Subject: [PATCH] use python 3.13 for building nuitka --- .github/workflows/nuitka.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/nuitka.yml b/.github/workflows/nuitka.yml index 830002834..ff759f255 100644 --- a/.github/workflows/nuitka.yml +++ b/.github/workflows/nuitka.yml @@ -12,17 +12,8 @@ jobs: - name: "Checkout" uses: actions/checkout@v4 - - name: "Set up Python 3.12" - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: pip - - - name: "Install requirements" - shell: bash - run: | - python -m pip install -U pip - python -m pip install -U -r requirements.txt + - name: "Set up Python environment" + uses: ./.github/actions/setup-python - name: "Generate version info file" shell: pwsh @@ -42,7 +33,7 @@ jobs: - uses: Nuitka/Nuitka-Action@main if: ${{ endsWith( matrix.nuitka_type, '_nuitka') }} with: - nuitka-version: 2.4.11 + nuitka-version: 2.5 script-name: src/dcs_py.py onefile: true windows-console-mode: disable @@ -63,7 +54,7 @@ jobs: - uses: Nuitka/Nuitka-Action@main if: ${{ endsWith( matrix.nuitka_type, '_cli') }} with: - nuitka-version: 2.4.11 + nuitka-version: 2.5 script-name: src/dcs_py.py onefile: true windows-console-mode: force