File "/home/endrebak/code/ruranges/benchmark.py", line 9, in <module>
print(gr.to_rle())
~~~~~^^^^^^^^^^^^^
File "/home/endrebak/venvs/ruranges/lib/python3.14/site-packages/pyrle/rledict.py", line 377, in __str__
" ".join(keys[0]),
~~~~~~~~^^^^^^^^^
TypeError: sequence item 0: expected str instance, numpy.int64 found
This is just because the join needs to turn the non-string into a string. Should be a simple fix.
This is just because the join needs to turn the non-string into a string. Should be a simple fix.