pywin32
pywin32 copied to clipboard
setup.py build fails on Visual Studio 2019 with WDK 10
Hi, I'm facing issues with building the package using VS 2019 Could you please add support to WDK 10 or or send instructions on how to do it?
Sorry, I doubt I'm going to have time. How about you add this support and send me the instructions?
I tried :), but I'll check again and update
How did you build a wheel package (amd64) for Windows?
See https://github.com/mhammond/pywin32/blob/master/make_all.bat
I have had success building pywin32 on VS2019 by installing the VS2015 MSVC v140 Toolset
, but I am wondering if it is possible to build with v142 Toolset components only?
This toolset is referenced here: https://github.com/mhammond/pywin32/issues/1489#issuecomment-602117958
but I am wondering if it is possible to build with v142 Toolset components only?
I have no idea, I've never tried.
MSVC v140 Toolset
, but I am wondering if it is possible to build with v142 Toolset components only?
Whatever is behind these menu names in the various installation variants: The recent Python versions are still compiled against vcruntime140.dll
- and conforming Python extensions always need to use the same msvc lib version (and corresponding headers) as the Python dll. setup.py
/ distutils would bark if not found.