matejcik

Results 300 comments of matejcik

i'm seeing the same issue. yes, nix-shell works without the plugin. it also starts working as soon as bash is installed

on commit af6f8a266ea1875b9a3e86e14796cadbe1cfbf08, no warning message is shown.

no, wait, the problem is that there _is_ `bash` available, but it's version 3.2 so maybe too old? it doesn't know `shopt inherit_errexit` Honestly not sure what to do here....

maybe easiest to mention the problem in README and point to a solution there, so that it's easy to google.

``` $ /bin/bash --version GNU bash, version 3.2.57(1)-release (arm64-apple-darwin21) Copyright (C) 2007 Free Software Foundation, Inc. ``` I can't say it's a good idea to rely on the exact string...

@selsta We will not be releasing firmware sooner than August 17-ish. Does that mean breakage in the interim?

@selsta thing is, there are no other planned changes right now .) but good news is, we considered this and decided to go ahead with July release. So the new...

Bad news everyone. We will not be able to do a firmware release this month. The originally announced date, August 17, is back in the game. I've seen that you...

@selsta you should be able to pick a firmware image [from our CI](https://gitlab.com/satoshilabs/trezor/trezor-firmware/-/pipelines) pick a pipeline, the task you're looking for is `core fw regular build`, then browse the artifacts....

for type-checking, I'm using the following trick: ```python if TYPE_CHECKING: from enum import IntEnum else: IntEnum = object class Fruit(IntEnum): APPLE = 1 PEAR = 2 def print_fruit(fruit: Fruit): if...