Eric Engestrom

Results 80 comments of Eric Engestrom

> I don't know if this is exactly what you're after: https://gist.github.com/HanFox/2984d76ee21676966c855e32e46c900f Yes, that's exactly right :+1: However, could you do this again after installing a debug build of mesa...

In case anyone's interested, my current workaround is this: ```python import contextlib import os import pathlib import yaml from yamlinclude import YamlIncludeConstructor YamlIncludeConstructor.add_to_loader_class(loader_class=yaml.SafeLoader) @contextlib.contextmanager def working_directory(path: pathlib.Path): prev_cwd = pathlib.Path.cwd()...

I second that; it's extra annoying in a CI where you run the same `poetry install` thousands of times and you have to recompile the same packages every time instead...

I've been digging through the code, and it's a bit unclear to me if `poetry` is supposed to do something differently, or if `pip` is the one who's supposed to...

Something like this might do it: ```patch diff --git a/poetry/installation/pip_installer.py b/poetry/installation/pip_installer.py index df1249737a1fe21b9122..ff54ac6d8589e16a58f3 100644 --- a/poetry/installation/pip_installer.py +++ b/poetry/installation/pip_installer.py @@ -6,6 +6,11 @@ from clikit.api.io import IO +try: + from pip._internal.utils.appdirs...

By "securely", I assume you mean that the content of the notification might be sensitive and storing it on disk has the risk of a third party reading it back?...

I don't know Vala, but I wrote a quick example in C: ```c #include int main(const int argc, const char* argv[]) { if (argc toggling all the bits // replace...

Actually, I read up a bit on premake (which I've never used) and I discovered that you are adding `flags { "FatalWarnings" }` there, which is causing all these problems....

I had that fix lying around for ages and just posted it, but actually even with that it's still broken now. I'll try fixing it properly; closing for now

Yeah, `python -m textual.widgets._directory_tree` is how I was using that. It was actually easy to fix, so re-opening with that, but perhaps it should be moved into `examples/` instead?