-
-
Notifications
You must be signed in to change notification settings - Fork 307
Description
AFAIU we don't actually capture the windows version of the user anywhere in the package metadata; i.e. __win has no value, and conda info on windows yields (for example):
virtual packages : __archspec=1=skylake
__conda=24.11.0=0
__win=0=0
It's not completely lost, as it appears in the user-agent string for example, but I'm not aware this this is used anywhere, or indeed that it could be used for package metadata at all.
platform : win-64
user-agent : conda/24.11.0 requests/2.32.3 CPython/3.11.11 Windows/10 Windows/10.0.22631 solver/libmamba conda-libmamba-solver/24.11.1 libmambapy/2.0.4
^^ ^^^^^^^^^^
The trigger for opening this issue is stumbling over the boost 1.87 release notes, which state:
As was announced in 1.84.0, Windows versions prior to 10 are no longer supported.
Boost is not alone in starting to drop windows <10, and I suspect that our coverage of this is pretty bad, because the windows agents in CI are all obviously much newer already.
Our ucrt package describes itself as "Redistributable files for Windows SDK. This is only needed Windows <10", so presumably we should still be broadly compatible (also because windows API is very stable).
However, this raises two immediate questions:
- how can we avoid that boost 1.87 gets installed on
win<10systems? - do we have an idea how wide-spread
win<10still is among our users, and do we want to consider dropping support at some point?