Sune Debel

Results 17 issues of Sune Debel

/kind question **Question:** I'm following the instructions for writing [Python function-based components](https://www.kubeflow.org/docs/components/pipelines/sdk-v2/python-function-components/), but it seems to me that the limitations on function based components (imports must be local, helper functions...

kind/question

Currently abilities must be subtypes of `typing.Hashable`. This is solely due to the fact that looking up abilities is cached using `functools.cache`. This requirement can be relaxed to allow unhashable...

enhancement

Consider this: ```python from stateless import Runtime r: Runtime[str | bytes] = Runtime().use('hello!') ``` According to mypy this is OK, since the right hand side value is inferred to be...

static types

Reproduce by: ```python from typing import NoReturn as Never from stateless import Effect, Runtime, parallel, success from stateless.parallel import Parallel, thread def f() -> Effect[Never, ValueError, str]: return success("done") task...

static types

**Describe the bug** When collecting type-alias attributes, pytkdocs in some cases incorrectly collects a path under the `typing` module. This seems to happen when the type alias is an alias...

bug

Add py.typed to allow using mypy in client code. - [x] ❗ I have followed the [Contributing to DVCLive](https://github.com/iterative/dvclive/blob/main/CONTRIBUTING.rst) guide. - [ ] 📖 If this PR requires [documentation](https://dvc.org/doc) updates,...