Brett Naul
Brett Naul
Hi, I wanted to use your package in a lecture and it was a bit inconvenient that your package wasn't `pip install`able, so I uploaded it to PyPI via [`flit`](http://flit.readthedocs.io/en/latest/index.html)....
Python 3.10 removed some deprecated aliases from `collections` that live in `collections.abc` since 3.3, most notably `Iterable`. Should be a safe change for anything >= Python 3.3, seems like this...
Along the lines of #215, it seems like there are quite a few parameter types that would be desirable to pass as inputs (most notably `pd.DataFrame`s) that are simple enough...
`git bisect` traced this back to #9131: ``` import dask.dataframe as dd, pandas as pd dd.from_pandas(pd.DataFrame({"a": [1, 2]}, index=pd.Index(["A", "B"], dtype="string")), npartitions=1).to_parquet("/tmp/to_parquet_test/") --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in...
I've been using `glmnet==2.2.1` installed from Mac wheels with `gcc==9.3.0` with no issues. But when my colleagues who didn't have `gcc` installed yet tried to go through the setup, they...
Currently there are some markdown formatting difficulties that can arise when converting to HTML. For example, a link like `[`nbsphinx`](https://github.com/spatialaudio/nbsphinx)` which should render as [`nbsphinx`](https://github.com/spatialaudio/nbsphinx) (cf. [nbsphinx](https://github.com/spatialaudio/nbsphinx)) won't be displayed...
In our helm chart we pass `dask-worker --name $(POD_NAME)` in the deployment definition; I tried to set something similar up when migrating to `KubeCluster`, but it seems that these lines...
The navigation side panel that opens when you press `t` (not sure if there's a more specific name) is super handy for quickly navigating to flows, especially when you know...
Closes #6886 @mrocklin dunno if I was taking @Carreau too literally here but this does resolve the issue (i.e. the example from the issue now succeeds). Not sure if it's...
Highly likely that the root issue is on our end but figured it's still worth an issue since others might be facing the same issue soon: upon upgrading to `uv==0.1.32`,...