From 83ef91b92a10ccae7e313668602aae175df686cb Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Sat, 26 Oct 2024 10:54:52 -0400 Subject: [PATCH] Bump Standalone Python & Re-enable PySide6 for Python 3.13 --- .github/workflows/ci.yml | 4 ---- {{ cookiecutter.format }}/briefcase.toml | 10 +++++----- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4173df..b403518 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,3 @@ jobs: matrix: python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ] framework: [ "toga", "pyside6", "pygame", "console" ] - exclude: - # PySide6 doesn't support Python 3.13 yet - - python-version: 3.13 - framework: pyside6 diff --git a/{{ cookiecutter.format }}/briefcase.toml b/{{ cookiecutter.format }}/briefcase.toml index af1f010..a8de6e5 100644 --- a/{{ cookiecutter.format }}/briefcase.toml +++ b/{{ cookiecutter.format }}/briefcase.toml @@ -7,11 +7,11 @@ app_path = "src/app" app_requirements_path = "requirements.txt" support_path = "support" {{ { - "3.9": 'support_revision = "3.9.20+20241008"', - "3.10": 'support_revision = "3.10.15+20241008"', - "3.11": 'support_revision = "3.11.10+20241008"', - "3.12": 'support_revision = "3.12.7+20241008"', - "3.13": 'support_revision = "3.13.0+20241008"', + "3.9": 'support_revision = "3.9.20+20241016"', + "3.10": 'support_revision = "3.10.15+20241016"', + "3.11": 'support_revision = "3.11.10+20241016"', + "3.12": 'support_revision = "3.12.7+20241016"', + "3.13": 'support_revision = "3.13.0+20241016"', }.get(cookiecutter.python_version|py_tag, "") }}