Skip to content

Commit

Permalink
Merge pull request #50 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 7693c4f + a046865 commit 0a8381e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
8 changes: 6 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,9 @@ 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" ]
exclude:
# PySide6 doesn't support Python 3.13 yet
- python-version: 3.13
framework: pyside6
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 = "src/app"
app_requirements_path = "requirements.txt"
support_path = "support"
{{ {
"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, "") }}


Expand Down

0 comments on commit 0a8381e

Please sign in to comment.