Skip to content

Commit

Permalink
Merge pull request #55 from rmartin16/bump-python
Browse files Browse the repository at this point in the history
Add support for Python 3.13
  • Loading branch information
freakboy3742 authored Oct 9, 2024
2 parents 5cbf9ef + 06ba674 commit a172d08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 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" ]
9 changes: 5 additions & 4 deletions {{ cookiecutter.format }}/briefcase.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ app_path = "{{ cookiecutter.formal_name }}.AppDir/usr/app"
app_packages_path = "{{ cookiecutter.formal_name }}.AppDir/usr/app_packages"
support_path = "{{ cookiecutter.formal_name }}.AppDir/usr"
{{ {
"3.9": 'support_revision = "3.9.19+20240814"',
"3.10": 'support_revision = "3.10.14+20240814"',
"3.11": 'support_revision = "3.11.9+20240814"',
"3.12": 'support_revision = "3.12.5+20240814"',
"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"',
}.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 a172d08

Please sign in to comment.