Results 114 comments of Greg Werbin

@seibert MyPy might have some magic that could help. I feel like Python ought to have programmatic access in this case. Maybe a PEP is in order? I could see...

Is there any technical obstacle to releasing an API reference? I'd be happy to help make this possible. I think this is the only major Python library I've used without...

You can do this using the `DataFrameSchema(...)` functional interface, or you can create a subclass of your `DataFrameModel` at runtime: ```python from collections.abc import Sequence from typing import Annotated import...

Thanks, that seems to have worked. Do you know why the other methods _didn't_ work? Or is that more of a Matplotlib question?

@msarahan thanks. Are there any docs on how to correctly patch the source during build? Or do you do everything in `build.sh`?

I just checked and I don't see the string `cc1plus` anywhere in the source for `python-crfsuite` (https://github.com/scrapinghub/python-crfsuite) or its vendored libs (https://github.com/chokkan/crfsuite/tree/dc5b6c7b726de90ca63cbf269e6476e18f1dd0d9 , https://github.com/chokkan/liblbfgs/tree/57678b188ae34c2fb2ed36baf54f9a58b4260d1c)

I wasn't able to get this to work even with the `{{ compiler("cxx") }}` line added. And when I install `gxx_linux-64` in my environment, the `cc1plus` binary just isn't there.

@ptrebert I never responded to your message, but no, I never resolved this. I ended up simply `pip install`-ing the packages I needed instead. I think at this point it...

@uranusjr I don't recall the original impetus for my request. I think I was having trouble with filesystem permissions in a restricted environment. It would also be useful in a...

Thanks for clarifying, I'll try that. In that case, what is the purpose of the `qlfile` if it's just looking at the system definition?