Mailing List Archive

Problems building 3.7.13 on Windows
I am trying to build a full release of 3.7.13 with the Wix bundle on Windows.

I have installed Visual Studio 2015 and included its bundled Windows 10 SDK.

The SdkBinPath property in .\PCbuild\pyproject.props on line 182 seems to
incorrectly set the path to:

C:\Program Files (x86)\Windows Kits\10\bin\10.0.14393.0\x86

This does not include any of the tools referenced later such as Makecat.exe.

The right path would be set further down to (but is skipped):

C:\Program Files (x86)\Windows Kits\10\bin\x86

I commented out line 182, and that allowed .\Tools\msibuild.bat to complete,
but that appears to leave the bundle named as "python-3.7.13.7804-amd64.exe"\
and it did not include the msi files (the final size was 1269 Kb).

I'd be grateful for any guidance.

Thanks,
Joseph Casale
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-leave@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/JPWLCOKWY2ABZLJ5D2GLT2WPEXYHIJ3A/
Code of Conduct: http://python.org/psf/codeofconduct/
Re: Problems building 3.7.13 on Windows [ In reply to ]
> I commented out line 182, and that allowed .\Tools\msibuild.bat to complete,
> but that appears to leave the bundle named as "python-3.7.13.7804-amd64.exe"\
> and it did not include the msi files (the final size was 1269 Kb).

After reading more documentation, I realized I needed to run buildrelease.bat, and
after downgrading jinja2, I was able to generate an installer.

Thanks,
jlc
_______________________________________________
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-leave@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/P47H7TMWCQVM2AYBBXDOJF5AUMR6NB4T/
Code of Conduct: http://python.org/psf/codeofconduct/