Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 7, 2021

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
scikit-image ==0.17.2==0.26.0 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

scikit-image/scikit-image (scikit-image)

v0.26.0

Compare Source

scikit-image 0.26.0

We're happy to announce the release of scikit-image 0.26.0!

New Features

  • Add new parameter max_step_cost to skimage.graph.MCP.find_costs which allows limiting the maximal stepping cost between points (#​7625).
  • In skimage.transform, add the identity class constructor to all geometric transforms. For example, you can now use skimage.transform.PolynomialTransform(dimensionality=2) (#​7754).
  • Add new property intensity_median to skimage.measure.regionprops (#​7745).
  • binary_blobs now supports a mode parameter for the Gaussian filter, allowing periodic boundary conditions with mode="wrap" (#​7909).

API Changes

  • In skimage.morphology, deprecate binary_erosion, binary_dilation, binary_opening, and binary_closing in favor of erosion, dilation, opening, and closing respectively. The binary versions weren't actually significantly faster than their non-binary counterparts and sometimes significantly slower. In the future, we might add optimizations internally to the remaining (general, non-binary) functions for when they're used with binary inputs (#​7665).
  • Deprecate parameter max_cost in skimage.graph.MCP.find_costs which previously did nothing. Use the new parameter max_step_cost instead (#​7625).
  • Deprecate parameter max_cumulative_cost in skimage.graph.MCP.find_costs which did nothing (#​7625).
  • In skimage.morphology.remove_small_objects, deprecate the min_size parameter in favor of the new max_size parameter to make API and behavior clearer. This new threshold removes objects smaller than or equal to its value, while the previous parameter only removed smaller ones (#​7739).
  • In skimage.morphology.remove_small_holes, deprecate the area_threshold parameter in favor of the new max_size parameter to make API and behavior clearer. This new threshold removes holes smaller than or equal to its value, while the previous parameter only removed smaller ones (#​7739).
  • In skimage.transform, deprecate the use of scalar scale, with dimensionality=3 where this can be passed to a geometric transform contructor. This allows us to generalize the use of the constructors to the case where the parameters must specify the dimensionality, unless you mean to construct an identity transform (#​7754).
  • In skimage.transform, turn all input parameters to transform constructors keyword-only (other than matrix). This avoids confusion due to the positional parameter order being different from the order by which they are applied in AffineTransform (#​7754).
  • Deprecate parameter num_threads in skimage.restoration.rolling_ball; use workers instead (#​7302).
  • Deprecate parameter num_workers in skimage.restoration.cycle_spin; use workers instead (#​7302).
  • Officially deprecate old properties in skimage.measure.regionprops and related functions. While we removed the documentation for these some time ago, they where still accessible as keys (via __get_item__) or attributes. Going forward, using deprecated keys or attributes, will emit an appropriate warning (#​7778).
  • In skimage.measure, add a new class method and constructor from_estimate for LineModelND, CircleModel, and EllipseModel. This replaces the old API—the now deprecated estimate method—which required initalizing a model with undefined parameters before calling estimate (#​7771).
  • In skimage.transform, add a new class method and constructor from_estimate for AffineTransform, EssentialMatrixTransform, EuclideanTransform, FundamentalMatrixTransform, PiecewiseAffineTransform, PolynomialTransform, ProjectiveTransform, SimilarityTransform, and ThinPlateSplineTransform. This replaces the old API—the now deprecated estimate method—which required initializing an undefined transform before calling estimate (#​7771).
  • Deprecate skimage.measure.fit.BaseModel; after we expire the other *Model* deprecations, there is no work for an ancestor class to do (#​7789).
  • In skimage.measure, deprecate .params attributes of the models CircleModel, EllipseModel, and LineModelND. Instead set model-specific attributes: origin, direction for LineModelND; center, radius for CircleModel, center, ax_lens, theta for EllipseModel (#​7789).
  • In skimage.measure, deprecate use of model constructor calls without arguments leaving an uninitialized instance (for example CircleModel()). This applies to CircleModel, EllipseModel, and LineModelND. Instead prefer input arguments to define instances (for example CircleModel(center, radius)). This follows on from prior deprecation of the estimate method, which had implied the need for the no-argument constructor, of form cm = CircleMoldel(); cm.estimate(data) (#​7789).
  • In skimage.measure, deprecate use of params arguments to predict* calls of model objects. This applies to CircleModel, EllipseModel, and LineModelND. We now ask instead that the user provide initialization equivalent to the params content in the class construction. For example, prefer cm = CircleModel((2, 3), 4); x = cm.predict_x(t) to cm = CircleMoldel(); x = cm.predict_x(t, params=(2, 3, 4))) (#​7789).

Enhancements

  • Raise a ValueError instead of a TypeError in CircleModel, EllipseModel, and LineModelND in skimage.measure. This applies when failing to pass a value for params (or passing params=None) to predict methods of an uninitialized transform (#​7789).
  • In skimage.measure, the RegionProperties class that is returned by regionprops, now has a formatted string representation (__repr__). This representation includes the label of the region and its bounding box (#​7887).

Performance

  • Use greedy einsum optimization in skimage.measure.moments_central (#​7947).
  • Add lazy loading to skimage.segmentation (#​7035).

Bug Fixes

  • Make deconvolution example scientifically sensible (#​7589).
  • In skimage.filters.sobel/scharr/prewitt/farid, when mode="constant" is used ensure that cval has an effect. It didn't previously (#​7826).
  • Ensure skimage.graph.cut_normalized is deterministic when seeded with the rng parameter and when SciPy 1.17.0.dev0 or newer is installed. With earlier SciPy versions the internally used function scipy.linalg.eigsh is not deterministic and can lead to different results (#​7912).
  • Avoid potential integer overflow in skimage.morphology.reconstruction (#​7938).
  • Handle negative axis lengths due to numerical errors in axis_major_length and axis_minor_length properties of skimage.measure.regionprops (#​7916).
  • In skimage.util.random_noise, ensure that clip argument is handled consistently for various modes (#​7924).
  • Apparent fix for Hough transform stray j (#​7974).

Documentation

  • Reflect deprecation of I/O plugin infrastructure in user guide (#​7710).
  • Display code blocks with a caption and extra indentation (#​7706).
  • Edit gallery examples on segmentation to comply with matplotlib's object-oriented style (#​7531).
  • Add link to 2.0 TODO (#​7716).
  • Denote changes in Frangi filter explicitly (#​7721).
  • Add SPEC badges (#​7737).
  • Fix math equations in docstrings for manders_coloc_coeff and normalized_mutual_information (#​7517).
  • Use the import convention import skimage as ski in the docstrings of ski.measure.euler_number, ski.measure.perimeter and ski.measure.perimeter_crofton (#​7741).
  • Fix the definition of entropy in the docstring of skimage.metrics.normalized_mutual_information (#​7750).
  • DOC: document use of environment.yml in installation guide (#​7760).
  • Further document use of regionprops function and fix terms (#​7518).
  • Display actual threshold value in Global Otsu plot (#​7780).
  • DOC: Include missing gain parameter in adjust_gamma equation (#​7763).
  • Document output dtype for transform.resize (#​7792).
  • Use consistent wording in property description (#​7804).
  • Draft migration guide for skimage2 (#​7785).
  • Update import convention in certain gallery examples (#​7764).
  • Document some parameters (#​7753).
  • Make call to skimage.measure.ransac in the gallery example "Assemble images with simple image stitching" deterministic. This avoids random non-deterministic failures (#​7851).
  • Improve docstring for Wiener restoration function (#​7523).
  • Describe custom warning-strategy in migration guide (#​7857).
  • Normalize spelling of normalize (#​7865).
  • Restore fast page navigation with in page anchors (#​7899).
  • In skimage.feature, clarify the description of the parameter num_sigma in blob_log and blob_doh (#​7774).
  • Use correct CSS selector to override scroll-behavior (#​7928).
  • Mention image readers other than skimage.io in getting_started docs (#​7929).
  • doc: replace git checkout with git switch (#​7910).
  • Avoid doctest error for -0 vs 0 (#​7950).
  • Update contributing guide to de-emphasize rebasing (#​7953).
  • Update git commands in contributing guide (#​7956).
  • Add Linux Foundation Health Score badge to README (#​7907).
  • Remove contributor docs section on pushing to another contributor's branch (#​7957).
  • Clarify non-native support for masked array in the documentation (#​7968).
  • Designate 0.26.0rc2 release (#​7987).
  • Clarify RELEASE.txt after v0.26.0rc2 (#​7990).

Infrastructure

  • Add experimental infrastructure for dispatching to a backend (#​7520).
  • Build conda environment.yml from pyproject.toml (#​7758).
  • Report failures on main via issue (#​7752).
  • Make doctest-plus work with spin (#​7786).
  • Temporarily pin to pyodide-build==0.30.0, and ensure that the correct xbuildenvs are used (#​7788).
  • Use cibuildwheel to build WASM/Pyodide wheels for scikit-image, push nightlies to Anaconda.org (#​7440).
  • CI: Update pypa/gh-action-pypi-publish to v1.12.4 for attestations on PyPI (#​7793).
  • Do not report failure in wheels sub-recipe (#​7806).
  • Temporary fix for Visual Studio & Clang incompatibility in Windows image (#​7835).
  • Setup stub creation with docstub in CI (#​7802).
  • Capture docstub output, but retain error (#​7852).
  • Add dynamic date / git hash to dev version (#​7870).
  • Add dependabot configuration (#​7882).
  • Use pytest's summary over pytest-pretty's table-based one (#​7905).
  • Bump the actions group across 1 directory with 14 updates (#​7895).
  • Add 14 day cooldown for dependabot (#​7915).
  • Skip Cython 3.2.* and address other issues in wheel building CI (#​7901).
  • Simplify build wheel configuration by using of pyproject.toml configuration (#​7877).
  • Report failures on nightly wheel build, test, or upload (#​7807).
  • Require pytest >=8.3 which hides tracebacks for xfailures (#​7937).
  • Note how to deal with automatic CI failure notifications / issues (#​7940).
  • CI: Add support for building wheels for Windows on ARM (#​7847).
  • Avoid building on macos-13 (#​7949).
  • Revert "Refactor names in Pyodide workflow (#​7959)" (#​7963).
  • Avoid uploading unsupported wasm wheels to PyPI (#​7969).
  • Test on macOS intel in CI again (#​7965).
  • Wheels: add option to exclude v2 namespace (#​7958).
  • Refactor Pyodide workflow with matrix (#​7962).
  • Build wheels on Windows & Python 3.14t (#​7978).

Maintenance

  • Bump to Pyodide 0.27.2 stable and install available optional dependencies for WASM tests (#​7646).
  • Drop Python 3.10 support (#​7673).
  • Remove outdated TODO (#​7713).
  • Remove deprecated shift parameters (#​7714).
  • Bump to Pyodide 0.27.3 (#​7712).
  • Update build (#​7715).
  • Remove deprecated image2 param (#​7719).
  • Update MacOS min versions (#​7720).
  • Cut down runtime of rolling-ball gallery example (#​7705).
  • Pin JasonEtco/create-an-issue action to SHA for v2.9.2 (#​7787).
  • Remove unused & obsolete legacy_datasets, legacy_registry vars (#​7677).
  • Address deprecations in Pillow 11.3 (#​7828).
  • Only report failure on main branch once (#​7839).
  • Remove superfluous mask argument in _generic_edge_filter (#​7827).
  • In skimage.transform.FundamentalMatrixTransform, refactor scaling calculation to make algorithm clearer, and allow original Hartley algorithm if preferred (#​7767).
  • Skip doctest with random component (#​7854).
  • Remove MANIFEST.in, that is no longer needed with Meson (#​7855).
  • Fix simple errors reported by docstub (I) (#​7853).
  • Add package version to skimage2 (#​7871).
  • Use data files from GitLab repo (#​7875).
  • Fix test to not fetch data already presented in test directory, fix tests on Python 3.14 and macos arm (#​7881).
  • Update TODO to check test precision on macOS ARM (#​7884).
  • Add information about time of execution of test on each file (#​7874).
  • Remove np.testing from skimage._shared.utils (#​7891).
  • MAINT: some dependency version consistency cleanups (#​7894).
  • Add forgotten pytest-pretty to Pyodide wheel recipe too (#​7898).
  • Address ResourceWarning in _built_utils/version.py (#​7904).
  • Mark test_rag.py::test_reproducibility as flaky for current versions of SciPy (< 1.17.0.dev0) (#​7912).
  • Use divmod in montage index computation (#​7914).
  • Test fixes and improvmement from cibuldwheel PR (#​7922).
  • Allow Cython 3.2.0 again (#​7927).
  • Move away from numpy.fix in favor of numpy.trunc (#​7933).
  • Bump the Pyodide version for testing to the latest available (0.29) (#​7931).
  • Fix ResourceWarning in CI (#​7930).
  • Switch back to using Cython wheels from PyPI (#​7932).
  • moments_hu doctest should ignore tiny differences (#​7944).
  • Relax constraints of regionprops multichannel test on MacOS with NumPy & "Accelerate" (#​7942).
  • Refactor names in Pyodide workflow (#​7959).
  • Use doctest_requires instead of inline importorskip (#​7966).
  • Mark test_wrap_around as xfail on macOS until 2026-02-01 (#​7985).

Contributors

39 authors added to this release (alphabetically):

25 reviewers added to this release (alphabetically):

These lists are automatically generated, and may not be complete or may contain duplicates.

v0.25.2

Compare Source

scikit-image 0.25.2

We're happy to announce the release of scikit-image 0.25.2!

Bug Fixes

  • Handle random degenerate case in skimage.graph.cut_normalized gracefully (#​7675).
  • In skimage.feature.BRIEF, copy keypoints if necessary to preserve contiguity (#​7692).
  • Revert a previous fix to skimage.segmentation.watershed that unintentionally changed the algorithm's behavior for markers placed at maxima in the image. We decided that the behavior originally reported as a bug (gh-6632), is not actually one (#​7702).

Documentation

  • Improve docstring of skimage.restoration.rolling_ball (#​7682).

Infrastructure

  • Only run the job if the PR got merged (vs merely closed) (#​7679).
  • Fix typo in GH workflow (#​7681).
  • Refactor GitHub's CI config and helper scripts (#​7672).
  • Use pytest config in pyproject.toml in CI (#​7555).
  • Lower CI build verbosity (#​7688).
  • Port testing on Windows from Azure CI to GitHub's CI (#​7687).
  • CI cleanup (#​7693).
  • Simultaneously resolve all dependencies; add pip caching (#​7690).
  • Reenable graph reproducibility test (#​7694).
  • Give milestone labeler necessary permissions (#​7695).
  • Milestone labeler permission not needed (#​7696).
  • Fix 313t wheel build (#​7699).

Maintenance

  • Include a missing image in meson.build so they are included in the wheel (#​7660).
  • Add zizmor to pre-commit; address GH workflow issues raised (#​7662).

Contributors

6 authors added to this release (alphabetically):

8 reviewers added to this release (alphabetically):

These lists are automatically generated, and may not be complete or may contain duplicates.

v0.25.1

Compare Source

scikit-image 0.25.1

We're happy to announce the release of scikit-image 0.25.1!

Bug Fixes

  • Include centroid in __all__ of the PYI file in skimage.measure (#​7652).
  • Improve numerical stability of blur_effect (#​7643).
  • Because under-determined fits are unreliable, skimage.measure.EllipseModel will now warn and return False (no fit) when fewer than 5 data points are provided (#​7648).
  • Explicitly upcast data with dtype float16 to float32 in skimage.segmentation.random_walker; this fixes passing float16 on NumPy 1.26 (#​7655).

Documentation

  • Don't use removed QuadContourSet.collections in gallery example (#​7638).
  • Change old import convention in the gallery examples (#​7630).

Infrastructure

  • Make apigen.py work with editable hooks (#​7647).
  • Build Linux ARM wheels natively (#​7664).

Maintenance

  • Infer floating point type for sigma parameter (#​7637).
  • In skimage.segmentation.active_contour, change the type of the default argument for w_line to indicate it is a float (#​7645).
  • Temporarily disable parallel building of gallery (#​7656).
  • [pre-commit.ci] pre-commit autoupdate (#​7649).
  • Skip flaky test on azure (#​7669).

Contributors

8 authors added to this release (alphabetically):

8 reviewers added to this release (alphabetically):

These lists are automatically generated, and may not be complete or may contain duplicates.

v0.25.0

Compare Source

scikit-image 0.25.0

We're happy to announce the release of scikit-image 0.25.0!

New Features

  • Add the new Gray-Level Co-occurrence Matrix (GLCM) properties "mean", "variance", "standard deviation" and "entropy" to skimage.feature.texture.graycoprops (#​7375).
  • Add the new skimage.morphology.footprint_rectangle supporting generation of rectangular or hyper-rectangular footprints in one function (#​7566).

API Changes

  • Complete the deprecation of and remove skimage.feature.plot_matches. Use skimage.feature.plot_matched_features going forward (#​7487).
  • Deprecate skimage.io.imshow, skimage.io.imshow_collection and skimage.io.show. Please use matplotlib, napari, etc. to visualize images (#​7508).
  • Remove deprecated skimage.morphology.skeletonize_3d; use skimage.morphology.skeletonize instead (#​7572).
  • Deprecate skimage.io plugin infrastructure (#​7353).
  • Switched to using the scipy.sparse array interface. For more details, see the note about the new scipy.sparse array interface here (#​7576).
  • Deprecate skimage.morphology.rectangle in favor of the new function skimage.morphology.footprint_rectangle (#​7566).
  • Deprecate skimage.morphology.square in favor of the new function skimage.morphology.footprint_rectangle (#​7566).
  • Deprecate skimage.morphology.cube in favor of the new function skimage.morphology.footprint_rectangle (#​7566).

Enhancements

  • Improve numerical stability of skimage.morphology.local_minima for extremely small floats (#​7534).
  • Make sure that skimage.feature.plot_matched_features uses the same random colors, if matches_color isn't provided explicitly (#​7541).
  • Allow passing a sequence of colors to the parameter matches_color in skimage.feature.plot_matched_features (#​7541).

Performance

  • skimage.feature.peak_local_max will now skip unnecessary distance computations in the case of min_distance=1. This results in performance improvements to functions like skimage.feature.blob_dog, skimage.feature.blob_log, skimage.feature.blob_doh and skimage.feature.corner_peaks that call peak_local_max internally (#​7548).
  • In skimage.featurepeak_local_max, skip unnecessary check for cases where min_distance > 1 is passed (#​7548).

Bug Fixes

  • Ensure that skimage.morphology.remove_objects_by_distance doesn't fail if the given integer dtype cannot be safely cast to the architecture specific size of intp, e.g. on i386 architectures (#​7453).
  • Fix degeneracy in skimage.draw.ellipsoid_stats when all semi-axes have the same length (#​7473).
  • Prevent skimage.morphology.thin from accidentally modifying the input image in case it is of dtype uint8 (#​7469).
  • Fix numerical precision error in skimage.measure.ransac. In some cases, ransac was stopping at the first iteration (#​7065).
  • Fix numerical precision error in skimage.measure.ransac; very small probabilities lead to -0 number of max trials (#​7496).
  • Ensure that RegionProperties objects returned by skimage.measure.regionprops can be deserialized with pickle (#​7569).
  • Fix edge case where setting watershed_lines=True in skimage.segmentation.watershed resulted in an incorrect solution (#​7071).
  • Fix the behavior of skimage.segmentation.watershed when the markers don't align with local minima by making sure every marker is evaluated before successive pixels (#​7071).
  • Fix dtype promotion in skimage.segmentation.join_segmentations if numpy.uint is used with NumPy<2 (#​7292).

Documentation

  • In skimage.morphology.skeletonize, clarify the expected image dtypes and how objects of different intensities are handled (#​7456).
  • Fix example section in docstring of skimage.feature.graycomatrix (#​7297).
  • Use conda-forge consistently in instructions for setting up the development environment (#​7483).
  • Use new CITATION.cff instead of CITATION.bib (#​7505).
  • Use correct spin test --coverage in contribution guide (#​7515).
  • Tweak advice to new developers; remove AI warning (#​7522).
  • Rework installation instructions (#​7434).
  • Improve the description of the image parameter in skimage.restoration.richardson_lucy (#​7477).
  • Account for empty arrays when counting segments per contour level in gallery example "Segment human cells (in mitosis)" (#​7551).
  • Fix typo in morphology doc (#​7606).
  • Change type description of parameter radius in skimage.morphology.ball from int to float (#​7627).

Infrastructure

  • Fix CI tests with minimal dependencies and make dependency resolution more robust (#​7462).
  • Add CI to test scikit-image against free-threaded Python 3.13 (#​7463).
  • Address autosummary.import_cycle warning (#​7486).
  • Temporarily exclude Dask 2024.8.0 to fix CI (#​7493).
  • Uncomment currentmodule directive again (#​7492).
  • Add CI to release nightly free-threaded wheels (#​7481).
  • Update deprecated configuration (#​7501).
  • Bump spin version to 0.11 (#​7507).
  • Ensure only a single type: label is present in PRs (#​7512).
  • Update pydata-sphinx-theme (#​7511).
  • Fix OpenBLAS s_cmp unresolved symbol error, update Emscripten CI testing (#​7525).
  • Render paragraphs in dormant message (#​7549).
  • Build sphinx documentation with parallel jobs (#​7579).
  • Don't check test coverage in CI (#​7594).
  • Explicitly setup conda on macos for wheel building (#​7608).

Maintenance

  • Verify all artifacts that have been attested by looping over them in CI (#​7447).
  • Update circleci-artifacts-redirector-action that moved to the Scientific Python org (#​7446).
  • Use NumPy 2.0 stable to build packages (#​7451).
  • FIX Use python3 in Meson version script shebang (#​7482).
  • Refactored tests for skeletonize (#​7459).
  • Remove unused and deprecated dependency pytest-runner (#​7495).
  • Exclude imageio 2.35.0 that forces numpy downgrade (#​7502).
  • Don't test thresholding funcs for Dask compatibility (#​7509).
  • Fix build dependency (#​7510).
  • Add sdist check to spin sdist (#​7438).
  • Reorder items in TODO list (#​7519).
  • Use Rotation.from_euler to compute 3D rotation matrix (#​7503).
  • Update spin (0.12) (#​7532).
  • Import lazy_loader as private symbol in top-level namespaces (#​7540).
  • Set -DNPY_NO_DEPRECATED_API=NPY_1_23_API_VERSION on build (#​7538).
  • Update up/download artifact version (#​7545).
  • Don't use deprecated io.show and io.imshow (#​7556).
  • Hide traceback inside assert_stacklevel (#​7558).
  • Update pre-commit versions (#​7560).
  • Drop Python 3.9 support (#​7561).
  • Update minimum dependencies (SPEC 0) (#​7562).
  • Remove unused PYX files in io/_plugins (#​7557).
  • Support Python 3.13 (#​7565).
  • During deprecation cycles, preserve the value of deprecated parameters that don't have a new parameter as a replacement (#​7552).
  • Fix missing minigalleries by using full names in directives (#​7567).
  • Build Python 3.13 wheels (#​7571).
  • Update TODO (#​7573).
  • Remove deprecated gaussian output parameter (#​7574).
  • Test Py3.13 on windows (#​7578).
  • Update ruff linter / formatter (#​7580).
  • Fix formatting issues (#​7581).
  • CI: bump macos image pin from 12 to 13 (#​7582).
  • Update build dependencies (#​7587).
  • Update minimum supported pyamg (#​7586).
  • Update documentation dependencies (#​7590).
  • Bump changelist to v0.5 (#​7601).
  • Pin kaleido to 0.2.1 (#​7612).
  • Update upload-nightly-action (#​7609).
  • Update pillow (#​7615).
  • Remove Python 2.7 cruft (#​7616).
  • Use intersphinx_registry package in conf.py to keep intersphinx urls up to date. This means that building docs now requires the intersphinx-registry package (#​7611).
  • Update build dependencies (#​7614).
  • Update file extension and reformat Markdown file (#​7617).
  • Add forgotten TODO about deprecated square, cube & rectangle (#​7624).
  • Upgrade to spin 0.13 (#​7622).
  • Lazy load legacy imports in skimage top module (#​6892).
  • CI pre-commit fix (#​7631).

Contributors

30 authors added to this release (alphabetically):

25 reviewers added to this release (alphabetically):


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 249b6de to 78fd6b1 Compare October 20, 2021 06:39
@renovate renovate bot changed the title Update dependency scikit-image to v0.18.1 Update dependency scikit-image to v0.18.3 Oct 20, 2021
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 78fd6b1 to f43e36b Compare March 7, 2022 17:47
@renovate renovate bot changed the title Update dependency scikit-image to v0.18.3 Update dependency scikit-image to v0.19.2 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from f43e36b to 483602b Compare June 18, 2022 21:28
@renovate renovate bot changed the title Update dependency scikit-image to v0.19.2 Update dependency scikit-image to v0.19.3 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 483602b to 3e2f4c7 Compare March 18, 2023 12:04
@renovate renovate bot changed the title Update dependency scikit-image to v0.19.3 Update dependency scikit-image to v0.20.0 Mar 18, 2023
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 3e2f4c7 to ea4c25c Compare June 2, 2023 07:55
@renovate renovate bot changed the title Update dependency scikit-image to v0.20.0 Update dependency scikit-image to v0.21.0 Jun 2, 2023
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from ea4c25c to 75d05bf Compare October 4, 2023 00:35
@renovate renovate bot changed the title Update dependency scikit-image to v0.21.0 Update dependency scikit-image to v0.22.0 Oct 4, 2023
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 75d05bf to 0ca9195 Compare April 10, 2024 21:03
@renovate renovate bot changed the title Update dependency scikit-image to v0.22.0 Update dependency scikit-image to v0.23.1 Apr 10, 2024
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 0ca9195 to 767cdf7 Compare April 20, 2024 22:31
@renovate renovate bot changed the title Update dependency scikit-image to v0.23.1 Update dependency scikit-image to v0.23.2 Apr 20, 2024
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 767cdf7 to d01c6e4 Compare June 18, 2024 20:07
@renovate renovate bot changed the title Update dependency scikit-image to v0.23.2 Update dependency scikit-image to v0.24.0 Jun 18, 2024
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from d01c6e4 to 57277d0 Compare December 13, 2024 22:27
@renovate renovate bot changed the title Update dependency scikit-image to v0.24.0 Update dependency scikit-image to v0.25.0 Dec 13, 2024
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 57277d0 to f082ee3 Compare January 26, 2025 21:15
@renovate renovate bot changed the title Update dependency scikit-image to v0.25.0 Update dependency scikit-image to v0.25.1 Jan 26, 2025
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from f082ee3 to 6553d3f Compare February 18, 2025 19:15
@renovate renovate bot changed the title Update dependency scikit-image to v0.25.1 Update dependency scikit-image to v0.25.2 Feb 18, 2025
@renovate renovate bot force-pushed the renovate/scikit-image-0.x branch from 6553d3f to 3e0fdea Compare December 20, 2025 17:44
@renovate renovate bot changed the title Update dependency scikit-image to v0.25.2 Update dependency scikit-image to v0.26.0 Dec 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant