Update Windows CI to windows-2025

windows-2019 will be fully retired by the end of June, and 2025 is the latest version.

This means that Windows build artifacts will be built using MSVC 2022, not MSVC 2019. They should be ABI-compatible across this change, since they expose no third-party types and Microsoft say that their compiler and standard library didn't break ABI between 2019 and 2022, but a newer version of the redistributable might be needed.
This commit is contained in:
Oliver Hamlet
2025-04-29 22:40:08 +01:00
parent ddc40b70e9
commit 929d3ac659
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -10,13 +10,13 @@ Build archives contain two binaries:
* ``loot.*.pyd`` is the Python wrapper
* ``loot.dll`` is the C++ library DLL that the Python wrapper was built against.
The C++ DLL requires the `Visual C++ 2019 Redistributable (x86)`_
The C++ DLL requires the `Visual C++ 2022 Redistributable (x86)`_
to be installed.
To use the wrapper, copy both files to wherever you want to import them from
(they must be in the same folder), and you're done!
.. _Visual C++ 2019 Redistributable (x86): https://aka.ms/vs/16/release/vc_redist.x86.exe
.. _Visual C++ 2022 Redistributable (x86): https://aka.ms/vs/17/release/vc_redist.x86.exe
Using the wrapper
=================