Henry Schreiner

Results 2505 comments of Henry Schreiner

Can you do that in CI? You don't have control over how it sets up the docker run, AFAIK.

Cross reference: https://github.com/joerick/cibuildwheel/pull/494, specifically I list reasons to ship a Python wheel in more detail in https://github.com/joerick/cibuildwheel/pull/494#issuecomment-750485674 .

Two possibilities. The simplest one: Add `pip install wheel` to your environment. Then either replace or augment `bdist_egg ` with `bdist_wheel`. You might need to [add universal](https://packaging.python.org/guides/distributing-packages-using-setuptools/#universal-wheels) to support Python...

Ironically, catch 2.13.5 is the first version to support glibc 2.34, and it's the first version with the bug, so we are kind of stuck.

* https://github.com/pybind/pybind11/issues/3401 You can see it in the gettext manual here: https://www.gnu.org/software/gettext/manual/gettext.html#Overview

(I don't disagree; so is defining `min`, `max`, `short`, or pretty much any un-namespaced name. Doesn't mean it's not done)

This has been a standard way to implement translations for at least 32 years (GNU gettext was released in 1990). The wikipedia article (https://en.wikipedia.org/wiki/Gettext) demonstrates the use of `_("text")`, in...

> The core language uses underscore as "match anything" placeholder during pattern matches Any other name works as "match anything" too - the only thing special is that you can...

> Why did it modify the SVGs? Probably for consistent end lines or extra whitespace. > But moved from where? Currently it's sitting in tox.ini. > because it doesn't support...

> Probably best to exclude SVGs. I'll also exclude `.lark` files in tests. > Doesn't it make sense to have it in both? Sure, but it should be defined once...