Ofek Lev

Results 1177 comments of Ofek Lev

I handle this with: ```python if new_config.__class__.__name__ == 'Table': table_body = getattr(new_config.value, 'body', []) possible_whitespace = table_body[-2:] if len(possible_whitespace) == 2: for key, item in possible_whitespace: if key is not...

Any progress on this? Many of us Windows users would greatly appreciate binary wheels 🙏

@twmht any update on this?

Hey, thanks for the ping! My personal preference nowadays is to stay very far away from Cython and only use Mypyc or write extension modules in Rust. You can get...

Sure let's continue the discussion here: https://github.com/joshua-auchincloss/hatch-cython/issues/45 The docs for the plugin are surprisingly good actually, there are just so many options!

I don't have full context about Deferred but I am always in favor of stripping stuff out into isolated packages; I think that is a great idea. Also, I think...

> having one single compiled-extensions add-on package This is what I was imagining, yes.

For others wishing to move to SQLite, use this once: [How to convert history to sqlite?](https://github.com/xonsh/xonsh/discussions/4132) ```python from xonsh.history.json import JsonHistory from xonsh.history.sqlite import SqliteHistory class History(SqliteHistory): def __init__(self, **kwargs):...

I don't have time to experiment with upgrading this action this weekend but I plan to manually download like this https://github.com/WordPress/openverse/blob/00a26a65e93fe8ea2785d4a26c3ebce2efc935db/.github/actions/load-img/action.yml#L26-L35 However, rather than an enumeration I will perform pattern...