Skip to main content

Spatial algorithms for napari project, compiled for performance

Project description

napari bermuda

License Supported Python versions Python package index Python package index download statistics Conda Version Development Status Wheels

Rust backend for napari contains code to speed up triangulation.

Usage

Currently, this package exports three functions:

  • triangulate_path_edge – path triangulation
  • triangulate_polygons_face – polygon face triangulation
  • triangulate_polygons_with_edge – polygon face and border path triangulation

All functions accept only numpy arrays with data type float32.

Below are signatures with docstrings for document API.

from typing import Literal
import numpy as np
import numpy.typing as npt


def triangulate_path_edge(
        path: npt.NDArray[tuple[int, Literal[2]], np.float32],
        closed: bool = False,
        limit: float = 3.0,
        bevel: bool = False,
) -> tuple[
    npt.NDArray[tuple[int, Literal[2]], np.float32],
    npt.NDArray[tuple[int, Literal[2]], np.float32],
    npt.NDArray[tuple[int, Literal[3]], np.uint32],
]:
    """Determines the triangulation of a path in 2D.

    The resulting `offsets`
    can be multiplied by a `width` scalar and be added to the resulting
    `centers` to generate the vertices of the triangles for the triangulation,
    i.e. `vertices = centers + width*offsets`. By using the `centers` and
    `offsets` representation, the computed triangulation can be
    independent of the line width.

    Parameters
    ----------
    path : np.ndarray
        Nx2 array of central coordinates of path to be triangulated
    closed : bool
        Bool which determines if the path is closed or not
    limit : float
        Miter limit which determines when to switch from a miter join to a
        bevel join
    bevel : bool
        Bool flag to enforce bevel join. If False
        a bevel join will only be used when the miter limit is exceeded

    Returns
    -------
    centers : np.ndarray
        Mx2 array central coordinates of path triangles.
    offsets : np.ndarray
        Mx2 array of the offsets to the central coordinates that need to
        be scaled by the line width and then added to the centers to
        generate the actual vertices of the triangulation
    triangles : np.ndarray
        (M-2)x3 array of the indices of the vertices that will form the
        triangles of the triangulation
    """
    ...


def triangulate_polygons_face(
        polygons: list[npt.NDArray[tuple[int, Literal[2]], np.float32]],
) -> tuple[
    npt.NDArray[tuple[int, Literal[3]], np.uint32],
    npt.NDArray[tuple[int, Literal[2]], np.float32],
]:
    """Triangulate multiple polygons using a sweeping line algorithm.
 
    This function performs triangulation of one or more 2D polygons, handling
    self-intersecting edges and repeated vertices. It returns both the triangulation
    indices and the vertex coordinates used in the triangulation.
 
    Parameters
    ----------
    polygons : list[numpy.ndarray]
        List of polygon vertex arrays. Each array should be Nx2 float32 array
        containing (x, y) coordinates of polygon vertices in counter-clockwise order.
        The polygons can be non-convex and can contain holes.
 
    Returns
    -------
    triangles : numpy.ndarray
        Kx3 uint32 array where each row contains three indices defining a triangle
        in the triangulation. The indices reference points in the returned points array.
    points : numpy.ndarray
        Lx2 float32 array containing (x, y) coordinates of vertices used in the
        triangulation. This includes original vertices and may contain additional points
        created at polygon intersections.
 
    Notes
    -----
    - The function automatically handles self-intersecting edges by splitting them
      at intersection points
    - Duplicate vertices are removed from the output
    - Input polygons must be oriented counter-clockwise
    - All coordinates must be finite (no NaN or infinite values)
    - Zero-area segments should be avoided
 
    Examples
    --------
    >>> # Simple square
    >>> polygon = np.array([[0, 0], [1, 0], [1, 1], [0, 1]], dtype=np.float32)
    >>> triangles, points = triangulate_polygons_face([polygon])
 
    >>> # Multiple polygons
    >>> poly1 = np.array([[0, 0], [2, 0], [2, 2], [0, 2]], dtype=np.float32)
    >>> poly2 = np.array([[0.5, 0.5], [1.5, 0.5], [1, 1.5]], dtype=np.float32)
    >>> triangles, points = triangulate_polygons_face([poly1, poly2])
    """
    ...


def triangulate_polygons_with_edge(
        polygons: list[npt.NDArray[tuple[int, Literal[2]], np.float32]],
) -> tuple[
    tuple[
        npt.NDArray[tuple[int, Literal[2]], np.float32],
        npt.NDArray[tuple[int, Literal[2]], np.float32],
        npt.NDArray[tuple[int, Literal[3]], np.uint32],
    ],
    tuple[
        npt.NDArray[tuple[int, Literal[3]], np.uint32],
        npt.NDArray[tuple[int, Literal[2]], np.float32],
    ],
]:
    """Triangulate multiple polygons generating both face and edge triangulations.
    
    This function performs two types of triangulation:
    1. Face triangulation of the polygon interiors using a sweeping line algorithm
    2. Edge triangulation of the polygon boundaries with miter joins
    
    Parameters
    ----------
    polygons : list[numpy.ndarray]
       List of polygon vertex arrays. Each array should be Nx2 float32 array
       containing (x, y) coordinates in counter-clockwise order. The polygons
       can be non-convex and can contain holes.
    
    Returns
    -------
    face_triangulation : tuple
       A tuple containing face triangulation data:
       - triangles : numpy.ndarray
           Mx3 uint32 array of vertex indices forming triangles for polygon faces
       - points : numpy.ndarray
           Px2 float32 array of vertex coordinates used in face triangulation
    edge_triangulation : tuple
       A tuple containing edge triangulation data:
       - centers : numpy.ndarray
           Qx2 float32 array of central coordinates for edge triangles
       - offsets : numpy.ndarray
           Qx2 float32 array of offset vectors for edge vertices
       - triangles : numpy.ndarray
           Rx3 uint32 array of vertex indices for edge triangles
    
    Notes
    -----
    - Handles self-intersecting edges by splitting them at intersection points
    - Removes duplicate vertices from the output
    - Uses fixed parameters for edge triangulation:
       * Treats polygons as closed
       * Miter limit = 3.0
       * Uses miter joins (no beveling)
    - Input polygons must be oriented counter-clockwise
    - All coordinates must be finite (no NaN or infinite values)
    
    Examples
    --------
    >>> # Single square polygon
    >>> square = np.array([[0, 0], [1, 0], [1, 1], [0, 1]], dtype=np.float32)
    >>> face_tris, edge_tris = triangulate_polygons_with_edge([square])
    
    >>> # Polygon with a hole
    >>> outer = np.array([[0, 0], [2, 0], [2, 2], [0, 2]], dtype=np.float32)
    >>> inner = np.array([[0.5, 0.5], [1.5, 0.5], [1, 1.5]], dtype=np.float32)
    >>> face_tris, edge_tris = triangulate_polygons_with_edge([outer, inner])
    """
    ...

Development setup

  1. Install rust. This includes cargo packaging and build tool and the rustc compiler.
  2. cargo build compiles the source code and builds an executable.
  3. cargo test runs tests.
  4. cargo doc --open builds and serves docs (auto-generated from code).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bermuda-0.1.7.tar.gz (125.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bermuda-0.1.7-pp311-pypy311_pp73-win_amd64.whl (247.3 kB view details)

Uploaded PyPyWindows x86-64

bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (408.1 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (384.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

bermuda-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl (349.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bermuda-0.1.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (370.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

bermuda-0.1.7-cp314-cp314t-win_arm64.whl (237.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

bermuda-0.1.7-cp314-cp314t-win_amd64.whl (253.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

bermuda-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl (474.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl (449.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp314-cp314t-manylinux_2_28_x86_64.whl (406.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp314-cp314t-manylinux_2_28_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl (343.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bermuda-0.1.7-cp314-cp314t-macosx_10_15_x86_64.whl (364.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

bermuda-0.1.7-cp314-cp314-win_arm64.whl (238.3 kB view details)

Uploaded CPython 3.14Windows ARM64

bermuda-0.1.7-cp314-cp314-win_amd64.whl (253.8 kB view details)

Uploaded CPython 3.14Windows x86-64

bermuda-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl (475.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl (450.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl (407.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp314-cp314-manylinux_2_28_aarch64.whl (384.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (344.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bermuda-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

bermuda-0.1.7-cp313-cp313t-win_arm64.whl (228.2 kB view details)

Uploaded CPython 3.13tWindows ARM64

bermuda-0.1.7-cp313-cp313t-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

bermuda-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl (473.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl (448.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp313-cp313t-manylinux_2_28_x86_64.whl (406.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp313-cp313t-manylinux_2_28_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp313-cp313t-macosx_11_0_arm64.whl (342.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

bermuda-0.1.7-cp313-cp313t-macosx_10_13_x86_64.whl (363.9 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

bermuda-0.1.7-cp313-cp313-win_arm64.whl (229.4 kB view details)

Uploaded CPython 3.13Windows ARM64

bermuda-0.1.7-cp313-cp313-win_amd64.whl (246.5 kB view details)

Uploaded CPython 3.13Windows x86-64

bermuda-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (474.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl (449.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl (407.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp313-cp313-manylinux_2_28_aarch64.whl (384.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (344.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bermuda-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl (365.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bermuda-0.1.7-cp312-cp312-win_arm64.whl (230.1 kB view details)

Uploaded CPython 3.12Windows ARM64

bermuda-0.1.7-cp312-cp312-win_amd64.whl (246.6 kB view details)

Uploaded CPython 3.12Windows x86-64

bermuda-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (475.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (450.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl (407.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp312-cp312-manylinux_2_28_aarch64.whl (384.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (344.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bermuda-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl (365.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bermuda-0.1.7-cp311-cp311-win_arm64.whl (230.2 kB view details)

Uploaded CPython 3.11Windows ARM64

bermuda-0.1.7-cp311-cp311-win_amd64.whl (246.5 kB view details)

Uploaded CPython 3.11Windows x86-64

bermuda-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (475.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (450.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl (407.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp311-cp311-manylinux_2_28_aarch64.whl (383.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (348.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bermuda-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (368.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

bermuda-0.1.7-cp310-cp310-win_amd64.whl (246.2 kB view details)

Uploaded CPython 3.10Windows x86-64

bermuda-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (475.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (450.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl (407.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp310-cp310-manylinux_2_28_aarch64.whl (383.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp310-cp310-macosx_11_0_arm64.whl (348.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bermuda-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl (369.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

bermuda-0.1.7-cp39-cp39-win_amd64.whl (248.1 kB view details)

Uploaded CPython 3.9Windows x86-64

bermuda-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl (477.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bermuda-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl (451.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bermuda-0.1.7-cp39-cp39-manylinux_2_28_x86_64.whl (408.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

bermuda-0.1.7-cp39-cp39-manylinux_2_28_aarch64.whl (385.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

bermuda-0.1.7-cp39-cp39-macosx_11_0_arm64.whl (349.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bermuda-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl (370.7 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file bermuda-0.1.7.tar.gz.

File metadata

  • Download URL: bermuda-0.1.7.tar.gz
  • Upload date:
  • Size: 125.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7.tar.gz
Algorithm Hash digest
SHA256 a1a506e1425e099d405cb40f8d176260c594dd9bcc9cb97d24d674b93b660d74
MD5 229cd82eea8a310d7f75d6e7526fb861
BLAKE2b-256 50ef1ea989c334b59946e289ac580e8508a707fe6386095aaa294423f6563699

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7.tar.gz:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d29bae03d360ab5db7ff18f029371ce5600a06173d56b91c2ea400533dbc0156
MD5 186796b3dddcb826ce3686ee5758e234
BLAKE2b-256 75d5dcd84b7641d9524547c13afa7a378722ff45302eda6d41b2eeb2f3154335

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-pp311-pypy311_pp73-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59a836681e84fcb712a77f359862396f069cc72ccc16805a33abf1bd73959385
MD5 69ce491a7828caa040f5967638b7d65f
BLAKE2b-256 011179d2790388bbdfbc7594f8340e3a35f9da92977642e8fa2d57eeb5de1326

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de0902d970a60d175c22755cf8efad279b823ffea30665e2fc74cd9256f36455
MD5 f5c5a881cf4ea25a23fa7ff9741e6ce8
BLAKE2b-256 ecc1aacff1334189600ef83ecc2a24ca96aa2c6b657d55bd05f0b3c94e076714

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b999c419c35350da005ba437fb7036d22d7ee62a63899a307392d92de6e65c
MD5 99577bbd4c0045ea61abd553efce77fb
BLAKE2b-256 e08710ba73924e7d8e734fab13a62faa067383eb5acfdf392ad836ea186f2ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 add8530f2156508cb41965a1dfab42a90c6e89d501af0527e20b5895e5d081bf
MD5 3ffd2daca55315ffec4ccfd8be88091d
BLAKE2b-256 3538ee01890c3f8d7e00a7a7d41fb8dfb2a8a522f63ffd86a7055207c2ed5d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 237.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3fda8c579220263cc97a5597f2a5c1a5340a58a515a793d963c3a1b7cef5e557
MD5 1caebf2abe917e7529489af27fe2a6ce
BLAKE2b-256 ae5d35f108f41a05a14f2e3c7443485f0c0935784fbaa8111591e7b60e2e1928

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-win_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 253.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5c74120e239f78dd33073bc0db7110a10cce3112d5c2fc554a0ecfd5f07cb54f
MD5 b7cbda24bcbcd37657938bc5aa1bee4e
BLAKE2b-256 719280b58f358bdc972e2dd825ae5da9dcf36aca5c187e94f1f398e72250387a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5f797d81b60d476776418cd5e84960c041a624948c2534316c9b33559802ce9
MD5 117998540dbff34a192059e182dcfb7e
BLAKE2b-256 0003483c105a59ac0e4047a2811bb1e1917e45fd7667c208a37b3f7b3cb2fb46

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71f355c5e507789a13a162f06afc7b8e2f971591fbc78e6a7c74be6d6b3e9f45
MD5 f461efb8d29a58d019b98e1c678dec86
BLAKE2b-256 d280ebf16585bfedc851247611e569863e162489e600b52dd4348ee8b5dd198a

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4780e8ae7b6fa5bb407062290ea6bc55321b48ec7a5c6caea32025642b0d9ce2
MD5 b4e209ac8394b7898e37d9ee3f47c91e
BLAKE2b-256 4aa9c2dea05995b26e43a6aa4ed4fbeb4f44c520648b4f997f3388ac28ca4ab3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4934c0f62c34fc28e4a83bb749c6b2809b3b8bc24c45cc3f94889d04b82348a
MD5 d69c4f7dddd4599243cfaab30915642c
BLAKE2b-256 8039a37886448b80d2491b9874e864908a0d0750e712abd57fcd402d2b39e862

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43a3defbe2d32c4be049c26705367c611375e237d5ac786afdb6c986082ad578
MD5 168ae6009073e15b152f4d1ca05fff2b
BLAKE2b-256 1ebca9b8c069869793f688bfcb99dd5308c34295ad4430554b4a29addabf676e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0cb7a7e70d7155ecf522dde2ef24aadeba6838b48c3ef7750674c7352ea9d718
MD5 a90d423961b2130c09fa164e7ff9e50f
BLAKE2b-256 44c6b5c2c07c823c1d0b5f98eefb60651496f997aa31557eeb6481b4a46e2e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 238.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c2f3d9be9d4608031090e45b8847924de84a851a14554f8efa5c82c6e553d9f5
MD5 c7647d1d7e41dd71f2875e4f918887f3
BLAKE2b-256 5b41d9c86b61e84b6985745de94778df9d7dfb60ba47372ae4025bb1e0a0fb08

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-win_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 253.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2304aa15ff7c5b436732a26d9ff566e65ea1e5f9bba4c170648324ccc6289f4f
MD5 348e6aacaeb43c520080ca6898726949
BLAKE2b-256 c2c652de82d8b07df696774e7792fda2bde466369660dde842879c3e60e7874c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 804635d306538244a6536dd0b89ffc65fb627e0113fddf9cbe3439b380418e1a
MD5 af0f5cb94f06de9353fc3d2abbc19809
BLAKE2b-256 f4c52d61045ce90a6941bda1519f1bc142853ae30772138091dc1354e5b778fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47d0bece5c07a5e161d900d874bf27e604edb658087eb29b2bcda37a0d48ad18
MD5 06af98e85cc85b1b8cba980713b4ceb7
BLAKE2b-256 4183b34866cd4bc21a6d09d4fe3757ca6159488f5a9e7d260430f00a80c9ee68

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f89f7a8b775c52fadb1dcf76d92292feeddac4e6f64e7bb7117afc4e13ef4d2
MD5 70494c1d174034754f30347499c951f1
BLAKE2b-256 a535730bc6f399a85c9e60003bfbcb438b16a72239d43455722ea4af2bafdc34

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1a058d77bc6ea9fdfad2114ec43f5609190a45415019b0cc5a48df315c9bac3
MD5 e45caf883d4724bfdfd05f740e6c7c8b
BLAKE2b-256 fd76f11cb89bcd392f8f3fac639f1e41b0a83a1db165de05b3cd225b75a505c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e7be6d370f89b8b5402608ca54976847e9179a1e06de30d6266e4d701d4f78
MD5 477071394c9aa2456e4dda0e3a61b684
BLAKE2b-256 e71abfdba4470b4927c35c24cd0155fef90c991ba6df790bd5091787124098e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 958a78c21dabaa1ad9fb683282c84083745a9c4c779862dcbb72023fe1280f9e
MD5 84d3c58c66a1e8202969e2f2dacaec54
BLAKE2b-256 2e92f2ef46a4cf4de782d8c25a2524c92cee9bbbc019c70ac6aa3572963d2b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 228.2 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 b2166875ebb3ac468a4473ceccbf7f087257aaa2d3034b5ab3ec3a85285ae49a
MD5 efc4b9530df49ca2d63e851148e92be6
BLAKE2b-256 5c4fddc880f9b5a33e99ae7c98a5f6cc18034164973408742ac3decb7f87d1ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-win_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 245.6 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e69522074d4a96c521e212fcde59af9eeabd7d8b50dff4eba87c78c87dc47d2c
MD5 1f9693e9b37a1db082cc9295d179d90b
BLAKE2b-256 d4451bcee97727803f55e1ca88c4373dbc63351d69fda6f402a21b7398fb6129

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e36607e4f871e2a6ae463b06cff7cf3bfe3372e264f967fc5b89d55eaa98c8b
MD5 44d2ee2514251aa1453734afb6007704
BLAKE2b-256 82bab4d1dfb134206bb42b74c734f3322edc22a736e300222121f0c9782256cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa2c047c57d201ee427d5b3d1f51bff255dc72234e0f2bed8ae710fd7008ddee
MD5 9f1ad7f3279c528eab4654867b2daafd
BLAKE2b-256 53bd001e386f9427725aa5434121d0bf9a24afb042adc48e6703c6e5c28f2930

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea2378084f8fc98b99c23c3053026d380df41618888980dd6184bd7f47ed1b27
MD5 24ae90132fd47f3d82d136a1eb07c757
BLAKE2b-256 f7ada6f5e0ca121e564a9b9090118a0ac06e9b81ec55f862abddf60e3303f428

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae4ad6bc773edadf53c56fba887badb61284a8a71819b5f6e651cdb33dc7a159
MD5 0ecc8795bd5786ddfecfb67ba9d3f717
BLAKE2b-256 95c5f9c80c3fa9a5486c2aee21463f27d1264a5687c753cf8f93354133f50a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0090181319264f07e82141a62d34327ca845ae82765c3cc6e7058b7b7b9be43a
MD5 59e71a5bfe2337facf01c44ad5b56b0e
BLAKE2b-256 94eeef6984410afcf1719462994c2137d84c1b451463d0bc4cef41b262f3b7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9f63acc9e526ac326c45687a16c09992af609ac29550ff036cfe9efc770fb4d
MD5 2b377476b778fec8e3914b7fe85837bb
BLAKE2b-256 b2c80edd8cdfc5899c5f42ad90500e6b780d0c0831f68f0f9eb070a0fabe0943

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 229.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 463352b94985626545343971718e3cdd075ff133151d7b7f6f301616b30a8747
MD5 db8e5bdd79987f0a2b10360f7836150b
BLAKE2b-256 f604bad2d472c038172a5800c99cd31565a74cc3eb518b8f18071eb06cbb841d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-win_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 246.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 decd3499ed123618266e2d2e53e2f4b4aa80ab48ff565f21580a200d29d92ea8
MD5 53fd1aabacfbeea2d394b0ef66e27e8f
BLAKE2b-256 96627bf19c90cfade2af6b563453c3ef9f19aec3e0adaddd86d9ec747ac41027

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7403a997c06962d1f1f8292bcb7929136f71eac00bbfb8b279c3ea691bddc997
MD5 8116665f98e6193d02f4e4bbdfebc56d
BLAKE2b-256 2f4af921994db853741cba7c88c7e7a66609439a803be4af5b1c1e221acd9d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30e8e37559245a83840fc429a2ea7d9affc818f1c0e2c600ea60bfc5b9353db2
MD5 16aa1b90caa9806130e3cf054c8ea75b
BLAKE2b-256 b05f5a5dccac218ed93ea749c46014673457d0593ec1f123f4ec6bbad4f1e135

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05b8a9a03c114f03c6107c6af7b3a04a20c8efe2e2b875d6dc23e89bd0df803b
MD5 2ddd5c6427bdebe663e1ae7a75ece931
BLAKE2b-256 d36a3a7f300eb7a71f3e03f811ef18ec4422870dc9f739ce8348248926500fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e695cdf5023889ce22f936a18ae9b47eb16f222f98125330716fb91236b30909
MD5 81fedc177a353f28abedfc14780c7f19
BLAKE2b-256 c00da05d168c0a7d68434d807848fb6bd6ad193e413d456d0a48a2f286eaf022

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92a2f9280793b2d09560dec2781437f7c82e0e402c0924e8030a6bc9c0c51a6f
MD5 91e05c52744f9c53fc210bfa49180335
BLAKE2b-256 2d51a14286d5bf6fe1b4f738bbf0bc3c404a83e71b0023941023bd076222b871

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 277db38796318fdd63fae992d776835955180dfb0567e00225905305fe0c69fe
MD5 1d2a3c00c6d2d1bc2434c3d167a8b83d
BLAKE2b-256 678f9879dad2f34fa0807a5c33f7326e877bfc74074e14e6e87790a9039ce632

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 230.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b7d6e4ac6abc4a53f3e42e07e4648b2e127ea3388e8980d679a5b96de1d919ee
MD5 2b736312b7e4442305fab5dfd8d8597b
BLAKE2b-256 c19f1d6bfbf58d5a3401108e46d43f36fe37679671dd7a51cd2afe3feaa386e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-win_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 246.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a557c4de911380a952f6431c0794dd670787c53185d1e3c68a36fe8c497d8ba
MD5 cc175ab98abd5d9b1df72b3e375985af
BLAKE2b-256 87c2286e485d1d948a6b36bed0a5bbae41115995fafc7520430e51f077d2fb0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efdfdb33b5e183671983ad5209df4ed1d08bfb5249cf94cf0b2148e9ec01c310
MD5 8e0d1ad7294b9f55e3fdc7c49cc3661e
BLAKE2b-256 08ab3657558a84d528d596a7778b5357bddc4f151eefce554ce6b5e397321375

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 559abe71ca6fdca38ca07a514362667fcbf777d90b5393cd404ecac4c1cdec97
MD5 f992f593ef77d6ffe5e919956f508d7c
BLAKE2b-256 618899376d51af55a819496d2517d9ff76f6815460afabb5ea9c554220b58054

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90fe45f4d525bf7229f6b8cecd1e41a3f67cb695a758e1b1f6aaea254dd65532
MD5 54b1389e531c5ba26a8a68e54b4c1dfa
BLAKE2b-256 b5bd73f124b35e5003dfe7a053e058270857e1d43cf05c0a4a0ca720905e3ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b20479e480a7d1ad0824eb8235e975df88130455c0ead03b21ef6d4e5dea6416
MD5 41e58b5a1e9e5a3299fa53743f8ded05
BLAKE2b-256 9923bb89766549a7a4175fef6b5ba7b5c02ce80b49fba4e18dd41835655d9e26

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa2f9853bc8428eae6251bbc31805dde694b40015cd9ba54368d1861d4ca1e18
MD5 ef21f8942623525153378b970d2ffa47
BLAKE2b-256 d349c456562a9bb30cb4cc6e6cf526e6fcce10bb733af490a1a30c068b192177

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c4cd5710c30ab6bbf1243acc34b5994ca7c773b94b2186418cf3706c9ec80ec
MD5 144afcbdb70228df63e777e922539ebd
BLAKE2b-256 be8f4d63432358a1fa5bca63c028d459be227a111ad1345004f0d0fc4ca2fcf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 230.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 71f987008acb4f9f60bc6e69a5fb3d253e683c6d9647b44fcb440363c0ecf5ce
MD5 d19b67b7a839afc4c37e53936cc79714
BLAKE2b-256 c8d898c3277ff1813e3551ebc6b5196daa9c39d4d8ef427a78884ea8501c7297

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-win_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 246.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ef705f5c1d4f57fd826f2754ec147317f52a397122e34c33b8853bff3020c5e7
MD5 6161ef9b35ee93e89f8c274254cd7b7e
BLAKE2b-256 b17f2f97febfb90e235615dd6d9c86cb01ea774a31ae9238cee42570a2a97231

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0818a389ac3f5eab6697b83fd13f065b378dd73a086aed2d81333a50351c6538
MD5 8c2190538096f24be34b2be0c5588dab
BLAKE2b-256 b26d4695702a5d27c38a4e63311295acd18baca1d0891a6de0a0a145e76b9839

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e3b27808859a2952a19d1ffbb897d19e87dc1d08cbac09455c3d23a4f538fca
MD5 416a072ae6e890a5a4fc29d1b9e01add
BLAKE2b-256 9380a2d5c5ab70182561ffce8a759a635a2c9f5e55b5f2fbebe6f83748f1f37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c453bf122aef2685daf8562fe7fa620d0ec33f7aef7acd6b84614159798c4d75
MD5 2b3d1f79160c08bba2b88e58dac4bf0d
BLAKE2b-256 d41addf29519db0654be1533eab821be4134d85171763c215d36755431e29f3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9189f44e6ffdfbcfd308751b720cfaed34b2b938a67422758fdf74287e48b6ab
MD5 c56dc8b246255ac6e160b8ee5245aee4
BLAKE2b-256 4d235b905c87750cf1c94fcd6e56a1c41e06d73dc5ab7bfe11bb9831bba76f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f89e31392efddfb81dcfbf02afbdda44782d152be38c585ed90b28fa4ace69de
MD5 cbbfe88bd2a570a1708ae1d8e8f50936
BLAKE2b-256 2e678276c279b47e76288ffebaf5b1a69f06454c3a44241ea491165722bb0069

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f29feed52119a132b66bb6deef47dd4d9052b45ace3ba44c66ccc35eb89a069
MD5 701bc4c2d90829b1a771de860c19840c
BLAKE2b-256 863d79a8c5ec0d0f0d7d0dcdea904689a9cea7937e665b1ea43e13c2a70c9aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 246.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 23eb99c92fcb09a5d20e47fdf87b957cf98743ea6485c3b0325eeda0e6ffb33b
MD5 e175e7afc2af1d89db3e9483d26ee688
BLAKE2b-256 46e625c472244883d8e07a844b19ed25f0bec294d8ef11ad3f0ca20f5c3ff16e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55f9f420b17476fc37b5dfe731c9071f0a586cd554d3496a224775f8ef9679ad
MD5 60b3c5900fccfaf3dcff5bac462799d9
BLAKE2b-256 b7781cd4f6237eaf4d249605bb776112ef357ac511e1582b042dc62106dd356e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee1659dab1e496b6ba5cc0c7114eaa8166e822e07dd51687568fe69a51c0b715
MD5 9212acba4fad313745ca7d611af32fce
BLAKE2b-256 8836e3702ced577059cab2f8214ad15f6cb7d93d8251ac8e15584dd562b7e11d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae9213311c5c5e7d2e4799e01a6b16ff9375526767b6ff539d9231a02953b69b
MD5 e37c1d8b5589c3938e942eb4ce58de4b
BLAKE2b-256 6e4bf0c42b39e6cec05fb6b9a496dee75cbc9ac1b2e5161567b108b3f9fabade

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8818e5dbe7f044c50b7ba72526d88d2871101f07da55aff8b132682a829f509
MD5 fc7e138be12f9b10fd19bbc19cac8e37
BLAKE2b-256 483e54163974dc30ce12b4c053766cd80d367ef5a38bc4062d3b83e3a53b0532

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3ddc2e93a94f0bb4b97429ee99339ca34b991074ebdeec6bc5ade940f674b5b
MD5 ca9353cd8c33b3a8dbd7672c0f59c4b7
BLAKE2b-256 f7f18b7a95152ca37717647688991efbe58b2f45c88528f0ef6bf1775de92f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 064e6031ef8800087eb57ea22d39a7ddf613b14b76c68c1ec043d8a8a484c20e
MD5 a04179bd9eaad03245d7b81d623b522c
BLAKE2b-256 54af695e32bc4f94ed66dee91f168af6e0a6d470ed1cc6b44fa294b46e965928

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bermuda-0.1.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 248.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c74f103338c8b7ce6ce5c7e6289b44b7dd9934490b6421c3afdf3b765ee32cc7
MD5 60e0cb81df7b0c015b17ccb8f06a8387
BLAKE2b-256 ab1f2357c22ab3c84c8a94ce3211e722405856c58b2f32c30b0a65777f2d1174

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f258c4162d7631ef20136ed3e54042cedcfed41fd3eafdd5c4391ac1096bb531
MD5 c045b0c782dd7af7a563c4418ef78671
BLAKE2b-256 ba87d5a9284439afad038a3d596a07daf8632f809cbeb6acd12cfa032b679b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 214e063d0b7d4a482934169087fd4098b0b9564bf5f1b9b9d0b46738429abed6
MD5 f7465fc1753f542d4fbf89a3ad103d2e
BLAKE2b-256 d5146bd4bfcaf569f65a628be48c9078b52fadd109f24fa1e967e39c7e17cdb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f25291b7d4ba378b7223f2d946c4e0412710e0b9616a1d992843bc86320d6f6a
MD5 1c507dde3cc1e5163098dc235ddad275
BLAKE2b-256 6b49158eb27f32e503c22c858faff63cdec399eaab369cc5dfae8e27b9283074

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d95aaca7450e2e8bf68767af214896ab64ccd38d56b5d4e790c2de35dde7365
MD5 54c2e695e5774846422f457437c58fb9
BLAKE2b-256 35308ac6934c4a71110133fd961e702e37887f15904086041a1c08fa996e4841

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03c8a6183cca3b18748219e5aee68a19a55a3e14228ef1020d502826fd66e4cb
MD5 1f03256f2b694eab36934c1587e574b2
BLAKE2b-256 e296b50d9b67569e11c54df1031c1502c4917ca2c41615a4aa00ba3e288b4428

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bermuda-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bermuda-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9838fc07e11b6d386e18df196f2ccb7dd353aa5468e8fa84cf22fc08a90c8f9
MD5 bd882ae11e1c3dbad20b247c646b7af5
BLAKE2b-256 dfe5185b0da7925f66d3380db2467caae12f5451fee01465e232aa1b7ed4181f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bermuda-0.1.7-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on napari/bermuda

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page