Dominik Schwabe

Results 7 comments of Dominik Schwabe

massive bug why is this still not merged?

You don't need to use `Json` because `pydantic-settings` parses values in env files automatically into the type you specify, since any value you can specify in an env files is...

Maybe `TypedDict` is what you need. ```python import json from typing import NotRequired from pydantic import TypeAdapter from typing_extensions import TypedDict class Cell(TypedDict): name: str type: str organism: NotRequired[str] ta...

I think you could also create a dummy in the the else case of the `TYPE_CHECKING` condition: ```python from typing import TYPE_CHECKING, Any from pydantic import BaseModel, SkipValidation if TYPE_CHECKING:...

Archlinuxarm (http://os.archlinuxarm.org/os/ArchLinuxARM-rpi-armv7-latest.tar.gz) with the `core/linux-rpi` kernel (https://github.com/raspberrypi/linux)

```sh getconf GNU_LIBC_VERSION # glibc 2.35 ``` ```sh ldd --version # ldd (GNU libc) 2.35 # Copyright (C) 2022 Free Software Foundation, Inc. # This is free software; see the...

I updated the system and now glibc is the latest version but this did not fix the issue. ```sh getconf GNU_LIBC_VERSION # glibc 2.39 ``` ```sh ldd --version # ldd...