Skip to content

Commit

Permalink
Add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Oct 8, 2024
1 parent 8bde0ef commit 4a44f0c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

# Cancel active CI runs for a PR before starting another run
concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

defaults:
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
# PySide6 produces very long paths that can't be packaged by WiX.
# Disabling until the problem has been fixed. See beeware/briefcase#948
# framework: [ "toga", "pyside6", "pygame", "console" ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
steps:
- name: Set Build Variables
id: build-vars
Expand Down
1 change: 1 addition & 0 deletions {{ cookiecutter.format }}/briefcase.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ support_path = "x64/Release"
"3.10": "support_revision = 11",
"3.11": "support_revision = 9",
"3.12": "support_revision = 7",
"3.13": "support_revision = 0",
}.get(cookiecutter.python_version|py_tag, "") }}

icon = "{{ cookiecutter.formal_name }}/icon.ico"

0 comments on commit 4a44f0c

Please sign in to comment.