From d77d5cebad9fb9f3d7bf7daf8abc8acf73c9b6be Mon Sep 17 00:00:00 2001 From: meepat Date: Thu, 21 Nov 2024 10:41:15 -0800 Subject: [PATCH 1/2] Enhance workflow - Allow selecting the branch for toolkit-prebuitls - Simplifies testing of pip with new Acuity changes before final merge of prebuilts. Please enter the commit message for your changes. Lines starting --- .github/workflows/build-release-pip-package.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-release-pip-package.yml b/.github/workflows/build-release-pip-package.yml index ca0c593..f36983f 100644 --- a/.github/workflows/build-release-pip-package.yml +++ b/.github/workflows/build-release-pip-package.yml @@ -6,7 +6,10 @@ on: tag_name: description: 'Tag of the draft release to upload to' required: true - + toolkit_prebuilt_branch: + description: 'Branch to checkout for toolkit-prebuilts' + required: false + default: 'main' permissions: packages: write contents: write @@ -34,7 +37,7 @@ jobs: uses: actions/checkout@v4 with: repository: synaptics-synap/toolkit-prebuilts - ref: main + ref: ${{ github.event.inputs.toolkit_prebuilt_branch }} path: pysynap/prebuilts lfs: true From e17469460680ec19ac5eeffad32c8945f1c2f073 Mon Sep 17 00:00:00 2001 From: meepat Date: Wed, 29 Jan 2025 11:52:00 -0800 Subject: [PATCH 2/2] add support for python 3.11 pip package --- .github/workflows/build-release-pip-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-release-pip-package.yml b/.github/workflows/build-release-pip-package.yml index f36983f..1bbdd87 100644 --- a/.github/workflows/build-release-pip-package.yml +++ b/.github/workflows/build-release-pip-package.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: - python-version: [3.10.12, 3.12.4] + python-version: [3.10.12, 3.11.11, 3.12.4] steps: - name: Checkout toolkit repository