From fbb24d8be3004e5ccf6259f161fd2e8ff23664fd Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Sat, 28 Oct 2023 23:22:46 -0400 Subject: [PATCH] pin Python to 3.11 --- release-gh/action.yml | 4 ++-- release-pypi/action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/release-gh/action.yml b/release-gh/action.yml index cca484d..d2d5afd 100644 --- a/release-gh/action.yml +++ b/release-gh/action.yml @@ -14,7 +14,7 @@ inputs: python-version: description: 'The version of Python to use in the CI' required: true - default: '3.x' + default: '3.11' package-prefix: description: | The prefix (or name) of your pacakge (if applicable) to use @@ -40,7 +40,7 @@ runs: awk -F '\/' '{ print tolower($2) }' | tr '_' '-' ) >> $GITHUB_OUTPUT - - name: Set up Python 3.x + - name: Set up requested Python version uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} diff --git a/release-pypi/action.yml b/release-pypi/action.yml index 6d43384..225a438 100644 --- a/release-pypi/action.yml +++ b/release-pypi/action.yml @@ -14,7 +14,7 @@ inputs: python-version: description: 'The version of Python to use in the CI' required: true - default: '3.x' + default: '3.11' runs: using: "composite" steps: