Sultan Orazbayev
Sultan Orazbayev
@szhorvat Wow, thank you, this was super quick! @eriknw Should we use this changelog as a starting point and add all future notes to it?
> Can we create a script to automatically change #123 to a link that points to that PR? Here's a quick `sed` that might be useful: ```shell sed -e "s'(#\([0-9]*\))'([#\1](https://github.com/python-graphblas/python-graphblas/pull/\1))'g"...
Would it be easier to debug if we restore the full matrix of testing (not skipping versions)? Also, I hope the order of the functions (which I changed in the...
I can work on this, however some initial hand-holding might be needed. I will join tomorrow's community call to see if this will work.
Checking the docs on [using mypy with an existing codebase](https://mypy.readthedocs.io/en/stable/existing_code.html) and experimenting a bit locally with `mypy`, there are at least a couple of options: 1. Setup a CI so...
Not sure if I understand correctly, but if you are suggesting that we collect all the typing definitions in one file, that makes a lot of sense. I started placing...
I'm not aware of other projects that do it (not that I looked hard into it). In general, when running testing it feels like there is quite a bit of...
And yes, this won't affect docstrings, so not comprehensive, but at least for doc-specific changes should be faster/more efficient.
I think using dicts is a bit counter-intuitive here. In the spirit of working with matrix representations, wouldn't we want to express this as a matrix operation (via permutation matrix,...
OK, I see now. I misread the example to change the indexes, so for mapping __values__ using dict makes sense.