Lars Grüter
Lars Grüter
@stefanv, let me know if I shall revert the deprecation of `lookfor` here as well (see https://github.com/scikit-image/scikit-image/pull/7288#discussion_r1499643081).
> works fine In https://github.com/scikit-image/scikit-image/pull/7288#discussion_r1455646928 it was mentioned that there might be some issues. But I agree that's probably not a reason enough to change the status quo. I'll revert...
Hey @aymuos15, thanks for the suggestion. I am a bit confused why you get the TypeError. `rng` is a new argument that replaces the deprecated `seed`. Google doesn't allow me...
Ideally we could have both. It seems we don't use explicit seeds in a lot of gallery examples. ``` $ grep "default_rng" -r doc/examples/ doc/examples/filters/plot_inpaint.py:rstate = np.random.default_rng(0) doc/examples/filters/plot_entropy.py:rng = np.random.default_rng()...
@aymuos15, do you want to update the PR or make a new one according @mkcor's suggestion? :)
Hey @franciskasara, welcome! Your suggestions seems sensible. I'd support and review a pull request. :+1: Do you want to try making one? :)
Can we close this now that #6581 is merged? Or should we wait until we've actually released 3.11 wheels?
We have been meaning to release version 0.20 a few weeks ago but it got stalled. I'm not expecting much to happen before the new year but hope that we...
Hey @sebwr, we are working on a release candidate 0.20.0rc1 right now. It's currently blocked by #6667 but after that is resolved, the proper release shouldn't be far away.
I'll be honest, I'm having trouble following the implementation. :see_no_evil: Perhaps it's easier to go with a simple example. ```python import numpy as np import skimage as ski S =...