From 36ded47fcd3171d31641559053cb1f74fe140053 Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Sun, 25 Feb 2024 12:29:13 -0500 Subject: [PATCH 1/2] Bump Python from 20240107 to 20240224 --- {{ cookiecutter.format }}/briefcase.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/{{ cookiecutter.format }}/briefcase.toml b/{{ cookiecutter.format }}/briefcase.toml index 6dd35e1..f7eef6f 100644 --- a/{{ cookiecutter.format }}/briefcase.toml +++ b/{{ cookiecutter.format }}/briefcase.toml @@ -4,11 +4,11 @@ app_path = "src/app" app_requirements_path = "requirements.txt" support_path = "support" {{ { - "3.8": 'support_revision = "3.8.18+20240107"', - "3.9": 'support_revision = "3.9.18+20240107"', - "3.10": 'support_revision = "3.10.13+20240107"', - "3.11": 'support_revision = "3.11.7+20240107"', - "3.12": 'support_revision = "3.12.1+20240107"', + "3.8": 'support_revision = "3.8.18+20240224"', + "3.9": 'support_revision = "3.9.18+20240224"', + "3.10": 'support_revision = "3.10.13+20240224"', + "3.11": 'support_revision = "3.11.8+20240224"', + "3.12": 'support_revision = "3.12.2+20240224"', }.get(cookiecutter.python_version|py_tag, "") }} From 8bef67247553f9b2148798e31a7eb6536e217159 Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Sun, 25 Feb 2024 12:39:21 -0500 Subject: [PATCH 2/2] Include PySide6 and PPB in CI runs --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfda3f5..51b4307 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,5 +39,4 @@ jobs: fail-fast: false matrix: python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] - # PySide6 and PPB aren't known to work on Linux Flatpak - framework: [ "toga", "pygame" ] + framework: [ "toga", "pyside6", "ppb", "pygame" ]