Alan Du

Results 14 issues of Alan Du

Right now, `crossbeam_epoch::Atomic` offers a tagging facility, which lets you use the lower bits of the pointer to implement arbitrary tagging. This is a pretty nice facility, but I'm having...

question
crossbeam-epoch

When specifying my `environment.yml` file, I would like some way of specifying dependencies that only exist on a particular operating system (e.g. I might want to pin a particular version...

enhancement

If you have multiple writers trying todo `zarr.open_array(..., "a")`, the old code code sometimes raise a `ContainsArrayError`, even thogh opening an already-existing array should be fine. The underlying problem is...

I have a test that is intermittently failing with `hypothesis.errors.FailedHealthCheck: Examples routinely exceeded the max allowable size.` (see https://gist.github.com/alanhdu/dc2248ffc5697e91c84944ce85e63a16 as an example). Unfortunately, I have not been able to figure...

question

Hi there! Right now, async filesystems are explicitly incompatible with `fork`, presumably because `fsspec` tries to make sure that all the asyncio operations actually happen on a separate thread. See...

I was wondering whether you'd be open to lifting the typestubs from typeshed (https://github.com/python/typeshed/tree/main/stubs/Deprecated/deprecated) directly into this repository. That would make the types easier to maintain (since they live with...

This adds support for the `tobytes` method for NumPy arrays. This makes it easier to hash numpy arrays, so we can use short arrays as dictionary keys (which is useful...

2 - In Progress
4 - Waiting on author
Effort - short

Right now, `pandera`'s type-checking support is done using a special `pandera.typing.DataFrame` that is generic over a schema. This is a problem, since it causes lots of confusion with type-checkers that...

enhancement

Currently, `kfp` pins `requests-toolbelt < 1`. Would it be possible to support `requests-toolbelt=1.0`? From the release notes, I doubt any of the breaking changes affect kfp. w/o this, it becomes...

kind/bug
area/sdk
lifecycle/stale

Given some base class that is generic over a param-spec, I'd like to be able to *define* the param-spec using a subclass method implementation. Something like: ```python T = TypeVar("T")...

topic: feature