Dave Hirschfeld

Results 547 comments of Dave Hirschfeld

Testing timeframes are likely measured in weeks - it's not causing any actual problems at present so isn't a super high priority...

I want to start using `pixi` for existing repos, using the `pyproject.toml` support but I'm running into this problem also. All of our `pyproject.toml` files make heavy use of recursive...

> _Would dependency groups make sense for your use case?_ I'm not sure - I've never used them! :thinking: I'm not too sure of the motivation for dependency groups as...

That's what I'm doing for now. It's actually working fine, as 90% of repos don't define their own custom extras groups and the owners of repos which do define custom...

I just used @rgommers' `pixi-dev-scipystack` to build `scipy`. So easy - amazing! :rocket:

I was curious: ``` ❯ time pixi add scikit-learn=1.1.1 pandas=1.4.2 pyarrow=5.0.0 matplotlib=3.5.0 ✔ Added scikit-learn=1.1.1 ✔ Added pandas=1.4.2 ✔ Added pyarrow=5.0.0 ✔ Added matplotlib=3.5.0 real 3m28.321s user 3m56.367s sys 0m47.349s...

i.e. allow passing through `fh` rather than creating it internally by opening a file from the filesystem: https://github.com/databricks/databricks-sql-python/blob/d31063ca918167412153a368c13a99055bf89c02/src/databricks/sql/client.py#L656-L668

### 3.5.2 ```html ``` ---- ### 3.6.1 ```html ``` ![image](https://user-images.githubusercontent.com/881019/222873139-7eeb3500-1a03-4e15-bc69-a27bb03ce19f.png) Hovering over the `--jp-text-editor-icon-color` above, it says that it is not defined.

If I change the `run_query` function to instead accept a `sa.Connection` then the query works in a background thread: ```python >>> def run_query(conn: sa.Connection): ... return conn.execute(sa.text("select * from Users")).fetchall()...

It would be great if it were possible to pass an engine to s separate thread to use so you could use the same code irrespective of whether you were...