Nico Schlömer
Nico Schlömer
Ah, I see. `cplot.plot` doesn't return the `ax`, but `plt`. You'll have to manually find the correct axis to plot to. Maybe it should return `ax`? Not sure.
> Does it work if you turn single-commit to false? Nope, same error. It does work if I set the branch to anything else but main, e.g., ```yaml branch: main2...
> Is main protected? When creating a repo via the API as in the original post, there is no code, and no branch `main` in the repo. It's an empty...
In asciiplotlib, it's a workaround. Does it really not make sense in celery to set the `encoding` attribute on `sys.stdout`?
Betterbib now understands BibTeX, BibLaTeX, RIS, and CSL-JSON. Let's leave this open for Zotero RDF too.
Interesting! Is there a way to disable the float clipping entirely?
@mgorny I haven't had much time for tpl indeed. Not exactly sure when I'll be able to again. If it's a blocker for you, best remove it, and add it...
Not sure why you put in this workaround. The only situation I could imagine where it does anything is to append a missing terminal `"\n"` and to add `"\n"` where...
> Is the dtype attribute actually needed A typical use is, e.g., ```python def cool_linear_solver(A, b, M=None): m, n = A.shape assert m == n M = M or Identity(n)...
@lucascolley Yeah, but there are several other `M`-like entities that would need to factored in. I _could_ build up a list like ```python dtype_determining_objects = [A, b] if M is...