From 1e102db7f54354969c6d27a5da6f42ff1292bae1 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Tue, 6 May 2025 10:07:21 -0500 Subject: [PATCH] use python 3.12 in build action --- build/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/action.yml b/build/action.yml index ebee117..d1f5bb9 100644 --- a/build/action.yml +++ b/build/action.yml @@ -8,7 +8,7 @@ inputs: python-version: description: 'The version of Python to use in the CI' required: true - default: '3.11' + default: '3.12' package-prefix: description: | The prefix (or name) of your package (if applicable) to use @@ -34,7 +34,7 @@ runs: awk -F '\/' '{ print tolower($2) }' | tr '_' '-' ) >> $GITHUB_OUTPUT - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }}