From 30705e57ce9a83329d51d1b9d8bf7e5e4f4b156a Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Fri, 4 Apr 2025 17:36:17 -0400 Subject: [PATCH 1/2] start building 10.x bundles --- circuitpython_build_tools/target_versions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/circuitpython_build_tools/target_versions.py b/circuitpython_build_tools/target_versions.py index 197a653..8bd2058 100644 --- a/circuitpython_build_tools/target_versions.py +++ b/circuitpython_build_tools/target_versions.py @@ -26,4 +26,5 @@ # The name is used when constructing the zip file names. VERSIONS = [ {"tag": "9.2.4", "name": "9.x"}, + {"tag": "10.0.0-alpha.2", "name": "10.x"}, ] From 553dcf78c94dc172758837b8699e3675314002e9 Mon Sep 17 00:00:00 2001 From: foamyguy Date: Tue, 8 Apr 2025 09:19:35 -0500 Subject: [PATCH 2/2] use python 3.12 inside actions containers --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a301583..8bb288c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,10 +15,10 @@ jobs: env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - - name: Set up Python 3.10 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.10" + python-version: "3.12" - name: Versions run: | python3 --version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 728ba8e..8605547 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.10' + python-version: '3.12' - name: Install dependencies run: | python -m pip install --upgrade pip