J S Borbely
J S Borbely
> Do we know if the default installation of ruff or the chocolatey installation of rust is targeting MSVC or MinGW? From https://github.com/astral-sh/ruff/issues/11503#issuecomment-2126642384 > Currently Windows builds uses `msvc` runtime....
Certainly, those additional options would resolve the external VCRUNTIME###.dll dependency issue. I do not have a preference for which option (update docs, use mingw, statically link, ...) the maintainers of...
> Can I take this one? @T-256 definitely okay with me.
I support this as a consideration. In similar scenarios, projects that run doctests, such as, ```toml [tool.pytest.ini_options] addopts = [ "--doctest-modules", "--doctest-glob=*.rst", ] ``` may not get the expected behaviour...
I'm looking for advice on how to resolve the `conda_build.exceptions.OverLinkingError` for `osx_64` and `linux_64`, as these errors are related to optional features for `msl-loadlib`. Although `msl-loadlib` is a pure-python package,...
If something similar to #1477 is merged, to generate an XML report could involve adding the following to hatch.toml ```toml [envs.hatch-test] reporting = "xml" ```