Skip to content

Commit

Permalink
Merge pull request #1660 from rmartin16/wix314
Browse files Browse the repository at this point in the history
Use latest WiX - v3.14
  • Loading branch information
freakboy3742 committed Feb 19, 2024
2 parents 2672424 + 2f50773 commit b427f33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/1660.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
WiX v3.14 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/wix3112rtm/wix311-binaries.zip"
return "https://github.com/wixtoolset/wix3/releases/download/wix314rtm/wix314-binaries.zip"

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

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


@pytest.fixture
Expand Down

0 comments on commit b427f33

Please sign in to comment.