Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,4 @@ jobs:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13" ]
# 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" ]
framework: [ "toga", "pygame", "console" ]
framework: [ "toga", "pyside6", "pygame", "console" ]
3 changes: 2 additions & 1 deletion {{ cookiecutter.format }}/{{ cookiecutter.app_name }}.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@
</StandardDirectory>

<ComponentGroup Id="{{ cookiecutter.module_name }}_COMPONENTS">
<!-- "\\?\" enables long paths (https://github.com/wixtoolset/issues/issues/9115). -->
<Files
Directory="INSTALLFOLDER"
Include="{{ cookiecutter.package_path }}\**" />
Include="\\?\{{ cookiecutter.package_path }}\**" />
</ComponentGroup>

<StandardDirectory Id="ProgramMenuFolder">
Expand Down