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 9d789e3 commit 06ba674
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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,5 +38,5 @@ 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" ]
framework: [ "toga", "pyside6", "pygame", "console" ]
1 change: 1 addition & 0 deletions {{ cookiecutter.format }}/briefcase.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ support_path = "{{ cookiecutter.formal_name }}.AppDir/usr"
"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"',
}.get(cookiecutter.python_version|py_tag, "") }}
# Remove the pieces of the standalone package that we don't need.
cleanup_paths = [
Expand Down

0 comments on commit 06ba674

Please sign in to comment.