Skip to content

Commit

Permalink
Merge pull request #56 from rmartin16/drop-3.8
Browse files Browse the repository at this point in the history
Drop Python 3.8 support
  • Loading branch information
freakboy3742 authored Aug 29, 2024
2 parents 3198889 + 1d1a3d7 commit 36c55e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
# PySide6 produce 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
5 changes: 2 additions & 3 deletions {{ cookiecutter.format }}/briefcase.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
app_path = "src/app"
app_packages_path = "src/app_packages"
support_path = "src"
{# Minor versions for 3.8, 3.9, and 3.10 cannot be bumped further -#}
{# since Python is not hosting embeddable zipped versions of them -#}
{# Minor versions for 3.9 and 3.10 cannot be bumped further since -#}
{# Python is not hosting embeddable zipped versions of them -#}
{{ {
"3.8": "support_revision = 10",
"3.9": "support_revision = 13",
"3.10": "support_revision = 11",
"3.11": "support_revision = 9",
Expand Down

0 comments on commit 36c55e4

Please sign in to comment.