Skip to content

Commit

Permalink
Merge pull request #38 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 e1ce060 + 8238b26 commit e06d01a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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 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.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
steps:
- name: Set Build Variables
id: build-vars
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 = "x64/Release/app"
app_packages_path = "x64/Release/app_packages"
support_path = "x64/Release"
{# 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 e06d01a

Please sign in to comment.