From fc214ccc2dadadaebf48e8e5ed6ff4297dfbb732 Mon Sep 17 00:00:00 2001 From: "J.D. Purcell" Date: Thu, 13 Feb 2025 18:36:38 -0500 Subject: [PATCH] Limit Python version to 3.12.x Fixes error on windows-2019 runners --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 4da0f83d..cf68689f 100644 --- a/action.yml +++ b/action.yml @@ -87,7 +87,7 @@ runs: if: ${{ inputs.setup-python == 'true' }} uses: actions/setup-python@v5 with: - python-version: '>=3.9.x' + python-version: '3.9.x - 3.12.x' - name: Setup and run aqtinstall uses: ./action