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
File renamed without changes.
1 change: 1 addition & 0 deletions changes/1707.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WiX v3.14.1 is now used to package Windows apps. Run ``briefcase upgrade wix`` to start using this version.
2 changes: 1 addition & 1 deletion src/briefcase/integrations/wix.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(

@property
def download_url(self) -> str:
return "https://github.com/wixtoolset/wix3/releases/download/wix314rtm/wix314-binaries.zip"
return "https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip"

@property
def heat_exe(self) -> Path:
Expand Down
4 changes: 1 addition & 3 deletions tests/integrations/wix/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
from briefcase.integrations.download import Download
from briefcase.integrations.subprocess import Subprocess

WIX_DOWNLOAD_URL = (
"https://github.com/wixtoolset/wix3/releases/download/wix314rtm/wix314-binaries.zip"
)
WIX_DOWNLOAD_URL = "https://github.com/wixtoolset/wix3/releases/download/wix3141rtm/wix314-binaries.zip"


@pytest.fixture
Expand Down