Andy Freeland

Results 36 issues of Andy Freeland

**Is your feature request related to a problem? Please describe.** It would be nice for the Python wheels to be tagged for Python 3.10. **Describe the solution you'd like** It...

priority:low
devops

**Describe the bug** I discovered this by accident, but it looks like when you have a relative path to a Python virtualenv specified in `.mise.toml` and then a legacy version...

bug

### Description Whenever I try to run a `linux/amd64` container or build an image, I get an `exec format error` message: ```console ❯ docker run --platform linux/amd64 ubuntu:latest uname -a...

It would be very useful to disable retries (and sleeping and etc) in tests, similar to how it's supported by stamina: https://stamina.hynek.me/en/stable/tutorial.html#deactivating-retries-globally

**Bug Report** I can't really describe the bug well, but hopefully the gist below illustrates it. I'm attempting to go from a list of `Callable`s that includes types (e.g. `int`,...

bug

**Bug Report** Prior to mypy 1.7, we were able to add decorators on top of properties by adding a `# type: ignore` comment. In 1.7.1, the decorated attribute now errors...

bug

It would be great if broot's `git status` mode were a more complete replacement for `git status --short`. It'd probably require expanding the git column to two characters, but it...

enhancement

I have a sample project using [mockito](https://docs.rs/mockito/latest/mockito/index.html) with rstest and it looks like a fixture used by another fixture and a test are receiving different instances of the object (in...

`Field.converter` is called in `Field.validateValue()` on the result of `Field.extractValue()`, which will return either a string, JSON-serializable objects, or None, but not bytes.

For example, in our internal codebase, we have a function: ```python def decimal_from_str(value: str, parens_negate: bool = False) -> Decimal: ... amount = Field.number(kind=decimal_from_str) ```