Sergey Ivanychev

Results 10 comments of Sergey Ivanychev

I have faced the same issues in my unit tests. I fixed the issue by using a context manager for `TestClient`. I've no idea why it works though (especially because...

Any update on this issue? `catboost` in currently unusable on `linux/arm64` servers and docker containers.

Same here. jupyter-dash==0.4.0 seems not to play with the latest JupyterLab 3.1.7 nicely.

FYI, ``` uv pip install pybind11 uv pip install fasttext==0.9.2 ``` also fails with the same error

Faced the same issue in the tests. The working workaround for me is to patch the current implementation of this method (`pytest` example) ```python def gateway_ip(self, container_id): """Default DockerClient.gateway_ip doesn't...

@MrPowers first of all, thanks for the wonderful library. Why did you decide to change the API of this assertion in the minor version bump of the package? This caused...

We used this option a lot because we don't really care of whether the column is `IntegerType` or `LongType` but we do want to compare Spark DataFrames and use other...

@consideRatio did you manage to make it work in the end? I'm using the latest (1.1.1) [zero-to-jupyterhub-k8s](https://github.com/jupyterhub/zero-to-jupyterhub-k8s) helm chart and trying to figure out how to make it work with...

I think tuple-from-list comprehension approach will lead to to 2x higher peak memory consumption, won't it?