ddelange

Results 197 comments of ddelange

It looks like poetry [does not support](https://github.com/python-poetry/poetry/issues/236) the pattern, whereas pip happily installs it. I strive for pip compliance, so this needs a fix for sure. pipgrip currently combines multiple...

Thanks for reporting that one too! Separate bug, yet related πŸ€”

@hakman is there a way to achieve containerd auth with kOps? Is the current option to use containerd `ConfigOverride`? i.e. I ssh into a node, copy `/etc/containerd/config-kops.toml`, modify it and...

It seems containerd deprecated the `plugins."io.containerd.grpc.v1.cri".registry.configs.YOUR_REGISTRY_DNS.auth` method of supplying basicauth credentials for a registry ref https://github.com/containerd/containerd/blob/22e8fc1f406dcca58122b23b73465939d3e99ba7/docs/cri/registry.md#configure-registry-credentials

so we're currently using `configOverride` to manually add our private registry+basicauth to containerd like in my last two comments, which works fine. but now we want to add GPU nodes...

Thanks for the cc, and sorry that this slipped through. I think this needs upstream PRs. - storage class: smart_open can do a `setattr(bucket, "storage_class", storage_class)` before uploading ([docs](https://cloud.google.com/python/docs/reference/storage/latest/google.cloud.storage.bucket.Bucket#google_cloud_storage_bucket_Bucket_storage_class), this...

Hi πŸ‘‹ Quick update: we're looking at a major version bump from smart_open from a PR opened 2 days after mine: https://github.com/RaRe-Technologies/smart_open/pull/729 As it changes internals significantly, my original PR...

Hi @mloose πŸ‘‹ To me this sounds like Dataspell is maybe using [IPython Events](https://ipython.readthedocs.io/en/stable/config/callbacks.html) as well: maybe their design doesn't take into account the order in which plugins are loaded...

It's actually only the `Cc` and `Cs` unicode categories that throw this error as far as I can tell. Using [`regex`](https://pypi.org/project/regex/) to remove them as suggested [here](https://stackoverflow.com/a/54225260/5511061) should do the...