From 859cff1706bc74dbe46115a32735e0faf031232e Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 9 Mar 2023 09:54:55 +0800 Subject: [PATCH] Force the use of a specific python for CI testing. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2872c3a2..ef74b9ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -174,7 +174,9 @@ jobs: needs: [pre-commit, test-package-python] uses: ./.github/workflows/app-build-verify.yml with: - python-version: "3.9" + # This *must* be the version of Python that is the system Python on ubuntu-latest. + # Otherwise native system package builds won't succeed. + python-version: "3.10" repository: beeware/briefcase runner-os: ${{ matrix.runner-os }} framework: ${{ matrix.framework }}