Skip to main content

Python wrappers for PICSL GreedyReg Image Registration Tool

This project provides a Python interface for the Greedy tool from the Penn Image Computing and Science Laboratory, developers of ITK-SNAP.

Greedy is a fast tool for affine and deformable registration of 3D (and 2D) medical images. Please see Greedy Documentation for complete documentation.

This project makes it possible to interface with Greedy from Python code. You can execute registration pipelines as you would on the command line, and you pass SimpleITK image objects to and from Greedy as inputs or outputs.

Quick Start

Install the package:

pip install picsl_greedy

Download a pair of images and a binary mask to experiment with

DATAURL=https://github.com/pyushkevich/greedy/raw/master/testing/data
curl -L $DATAURL/phantom01_fixed.nii.gz -o phantom01_fixed.nii.gz
curl -L $DATAURL/phantom01_moving.nii.gz -o phantom01_moving.nii.gz
curl -L $DATAURL/phantom01_mask.nii.gz -o phantom01_mask.nii.gz

Perform rigid registration in Python

from picsl_greedy import Greedy3D

g = Greedy3D()

# Perform rigid registration
g.execute('-i phantom01_fixed.nii.gz phantom01_moving.nii.gz '
          '-gm phantom01_mask.nii.gz '
          '-a -dof 6 -n 40x10 -m NMI '
          '-o phantom01_rigid.mat')
          
# Apply rigid transform to moving image
g.execute('-rf phantom01_fixed.nii.gz '
          '-rm phantom01_moving.nii.gz phantom01_resliced.nii.gz '
          '-r phantom01_rigid.mat')

SimpleITK Interface

You can read/write images from disk using the command line options passed to the execute command. But if you want to mix Python-based image processing pipelines and Greedy pipelines, using the disk to store images creates unnecessary overhead. Instead, it is possible to pass SimpleITK to Greedy as image inputs and outputs. It is also possible to pass NumPy arrays as rigid and affine transformations.

To pass objects already available in your Python environment, you can use arbitrary strings instead of filenames in the Greedy command, and then use keyword arguments to associate these strings with SimpleITK images or NumPy arrays:

img_fixed = sitk.ReadImage('phantom01_fixed.nii.gz')
img_moving = sitk.ReadImage('phantom01_moving.nii.gz')
g.execute('-i my_fixed my_moving '
          '-a -dof 6 -n 40x10 -m NMI '
          '-o phantom01_rigid.mat', 
          my_fixed = img_fixed, my_moving = img_moving)

Conversely, to retrieve an image or transform output by Greedy into the Python envirnonment, you can also replace the filename by a string, and use keyword arguments to assign None to that string. You can then retrieve the output using the [] operator:

g.execute('-i phantom01_fixed.nii.gz phantom01_moving.nii.gz '
          '-gm phantom01_mask.nii.gz '
          '-a -dof 6 -n 40x10 -m NMI '
          '-o my_rigid',
          my_rigid=None)
          
mat_rigid = g['my_rigid']

The example below performs affine and deformable registration and then applies reslicing to the moving image without having Greedy write any files to disk.

from picsl_greedy import Greedy3D
import SimpleITK as sitk
import numpy as np

# Load the images
img_fixed = sitk.ReadImage('phantom01_fixed.nii.gz')
img_moving = sitk.ReadImage('phantom01_moving.nii.gz')
img_mask = sitk.ReadImage('phantom01_mask.nii.gz')

g = Greedy3D()

# Perform affine registration
g.execute('-i my_fixed my_moving '
          '-a -dof 6 -n 40x10 -m NMI '
          '-o my_affine',
          my_fixed = img_fixed, my_moving = img_moving, my_mask = img_mask,
          my_affine = None)

# Report the determinant of the affine transform
print('The affine transform determinant is ', np.linalg.det(g['my_affine']))

# Perform deformable registration
g.execute('-i my_fixed my_moving '
          '-it my_affine -n 40x10 -m NCC 2x2x2 -s 2.0vox 0.5vox '
          '-o my_warp',
          my_warp = None)

# Apply the transforms to the moving image
g.execute('-rf my_fixed -rm my_moving my_resliced '
          '-r my_warp my_affine',
          my_resliced = None)

# Save the resliced image
sitk.WriteImage(g['my_resliced'], 'phantom01_warped.nii.gz')

Metric Log

If you would like to access the optimization metric value across iterations, use the method metric_log().

from picsl_greedy import Greedy3D
import SimpleITK as sitk
import numpy as np
import matplotlib.pyplot as plt

# Load the images
img_fixed = sitk.ReadImage('phantom01_fixed.nii.gz')
img_moving = sitk.ReadImage('phantom01_moving.nii.gz')
img_mask = sitk.ReadImage('phantom01_mask.nii.gz')

g = Greedy3D()

# Perform affine registration
g.execute('-i my_fixed my_moving '
          '-a -dof 6 -n 40x10 -m NMI '
          '-o my_affine',
          my_fixed = img_fixed, my_moving = img_moving, my_mask = img_mask,
          my_affine = None)

# Report metric value
ml = g.metric_log()
plt.plot(ml[0]["TotalPerPixelMetric"], label='Coarse')
plt.plot(ml[1]["TotalPerPixelMetric"], label='Fine')
plt.legend()
plt.title('Metric value')
plt.savefig('metric.png')

Propagation

The Propagation tool warps a 3D segmentation from a reference time point to all target time points in a 4D image. This is useful for generating 4D segmentation from sparse 3D segmentation.

Basic Usage (Files on Disk)

from picsl_greedy import Propagation

p = Propagation()

# Propagate segmentation from time point 5 to other time points
p.run('-i img4d.nii.gz '
      '-sr3 seg_tp05.nii.gz '
      '-tpr 5 '
      '-tpt 1,2,3,4,6,7,8,9 '
      '-o /path/to/output '
      '-n 100x100 -m SSD -s 3mm 1.5mm')

Using SimpleITK Images

You can pass SimpleITK images directly to avoid disk I/O overhead. Use arbitrary strings as placeholders and pass the actual images as keyword arguments:

from picsl_greedy import Propagation
import SimpleITK as sitk

# Load images
img4d = sitk.ReadImage('img4d.nii.gz')
seg3d = sitk.ReadImage('seg_tp05.nii.gz')

p = Propagation()

# Run propagation with in-memory images
p.run('-i my_img4d '
      '-sr3 my_seg3d '
      '-tpr 5 '
      '-tpt 1,2,3,4,6,7,8,9 '
      '-n 100x100 -m SSD -s 3mm 1.5mm',
      my_img4d=img4d, my_seg3d=seg3d)

# Retrieve 4D segmentation output
seg4d_out = p['seg4d']
sitk.WriteImage(seg4d_out, 'seg4d_propagated.nii.gz')

# Retrieve 3D segmentation for a specific time point
seg_tp03 = p['seg_03']
sitk.WriteImage(seg_tp03, 'seg_tp03.nii.gz')

# Get list of processed time points
time_points = p.get_time_points()
print(f'Processed time points: {time_points}')

Using 4D Segmentation Input

If your reference segmentation is already embedded in a 4D image, use -sr4 instead of -sr3:

from picsl_greedy import Propagation
import SimpleITK as sitk

img4d = sitk.ReadImage('img4d.nii.gz')
seg4d_sparse = sitk.ReadImage('seg4d_sparse.nii.gz')  # Only time point 5 has segmentation

p = Propagation()

p.run('-i my_img4d '
      '-sr4 my_seg4d '
      '-tpr 5 '
      '-tpt 1,2,3,4,6,7,8,9 '
      '-n 100x100 -m SSD',
      my_img4d=img4d, my_seg4d=seg4d_sparse)

# Get complete 4D segmentation
seg4d_complete = p['seg4d']

Command Line Options

Option Description
-i <image> 4D input image
-sr3 <image> 3D reference segmentation at reference time point
-sr4 <image> 4D reference segmentation (only reference time point used)
-tpr <int> Reference time point
-tpt <list> Target time points (comma-separated)
-o <dir> Output directory (for file-based output)
-sr-op <pattern> Output filename pattern, e.g., Seg_%02d.nii.gz
-n <schedule> Multi-resolution schedule (default: 100x100)
-m <metric> Registration metric: SSD, NCC, NMI (default: SSD)
-s <sigmas> Smoothing kernels (default: 3mm 1.5mm)
-dof <int> Affine degrees of freedom (default: 12)
-threads <int> Number of threads
-V <0|1|2> Verbosity level

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

picsl_greedy-1.4.0.1-cp315-cp315t-win_amd64.whl (19.1 MB view details)

Uploaded CPython 3.15tWindows x86-64

picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp315-cp315t-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp315-cp315t-macosx_10_15_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

picsl_greedy-1.4.0.1-cp315-cp315-win_amd64.whl (19.1 MB view details)

Uploaded CPython 3.15Windows x86-64

picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp315-cp315-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp315-cp315-macosx_10_15_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

picsl_greedy-1.4.0.1-cp314-cp314t-win_amd64.whl (19.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp314-cp314t-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

picsl_greedy-1.4.0.1-cp314-cp314-win_amd64.whl (19.1 MB view details)

Uploaded CPython 3.14Windows x86-64

picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp314-cp314-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp314-cp314-macosx_10_15_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

picsl_greedy-1.4.0.1-cp313-cp313-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.13Windows x86-64

picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp313-cp313-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp313-cp313-macosx_10_13_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

picsl_greedy-1.4.0.1-cp312-cp312-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.12Windows x86-64

picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp312-cp312-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp312-cp312-macosx_10_13_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

picsl_greedy-1.4.0.1-cp311-cp311-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.11Windows x86-64

picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp311-cp311-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp311-cp311-macosx_10_13_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

picsl_greedy-1.4.0.1-cp310-cp310-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.10Windows x86-64

picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp310-cp310-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp310-cp310-macosx_10_13_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

picsl_greedy-1.4.0.1-cp39-cp39-win_amd64.whl (18.5 MB view details)

Uploaded CPython 3.9Windows x86-64

picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_x86_64.whl (39.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_aarch64.whl (17.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

picsl_greedy-1.4.0.1-cp39-cp39-macosx_11_0_arm64.whl (28.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

picsl_greedy-1.4.0.1-cp39-cp39-macosx_10_13_x86_64.whl (34.5 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 eb86cd9097d192ebcfe1bd734217ef44c3e866d51c338ae7f9ccd0564df0efe1
MD5 9027cd95065394b238338ba1b9ae29b1
BLAKE2b-256 3f37ee8993052c826923efa6631efed69235430677bdfa4cc13e4e3bb7c3783f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315t-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f8721c7d315968228ff27577e1b6232d4f6316cdbaec39ac43cf5e8389da18c
MD5 04ea0e95c8485b3cf4d05420b3e984e2
BLAKE2b-256 bda2eef500e429c9d5f83ca2d3e8ddaabe6b3c86cc581b4651682409c25d2bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb112f4c12af5617bf209e62a2565f35e0fe4d4954badc06d64f179dd60b8359
MD5 3fa0c6e81a3c0220196d1ffa1b432849
BLAKE2b-256 b8a2705222d1f632e06f4ef772dc3b0976b3dfa2a511c15807c1727f13dd88ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315t-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60acad514ffd34540856087e72e034aa4e04ed9606ebd614044a7dd8bec4758d
MD5 4c6ca078583ec0eaadc7ae31729a6396
BLAKE2b-256 b944c893c9f11150395c580d7622141a605061057601c9da5d82d36f9ce4318b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af2ddaa3a721a26fe27a9662bf7d2a9a7ed2702acc137329e021b29da9536592
MD5 ba3798fd213813c291d4073778d96d09
BLAKE2b-256 29cc8107d09c10495855944dc10bb156c90cb974b4f48acacac974538b937d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 e803be0e432730eb052d1ccba951b31e217af29e26bd29b140ace5ebe95065c1
MD5 c5258c89c1ff2708ae42d5d6edb77b5a
BLAKE2b-256 1e62089fb5affffb388dee576bb6143a0f51ce2a9a1ba768979b9138c25cd753

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e601ee236749035685378ce768a47ff4b058b195c32abf12d61264104c78acec
MD5 5eb51bcd5ec4bbabd30e0895b75011a3
BLAKE2b-256 a0b410ef438cef1c7041bddcb50a90b0f3696fde20bfe52894e170f051a6a481

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 991f4896738753563d3d01323679b76686118ee6615711f45e721873975f4fb3
MD5 8a2c9664d7b4538cf3e6e43d71b48c75
BLAKE2b-256 4e9ac2cda1103a868f3072605ac476293a87e6540def1f6e267c51ccd070d525

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aec6e58446990b380031dc2a2bf390ce51c0293c4ec8d83e01d16e1c479224dc
MD5 29c186edee800b3dcdad200a5575ce32
BLAKE2b-256 e8001a6eb52e9594bcc90389e3af98c23e637785eb783df238629c016bb1435c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a70a4280ffbfad23022d1e38965fbdd8f692a64dee81d597581db03e16ad77fd
MD5 369ba9dae147e89ad2ee439794650160
BLAKE2b-256 b2bf59ab29b7ef7df9cfb9b367b305b82a487329f8e092912e70ec72932a466b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0c4e17620b1ef18552003325b8cebcb6bddf49d1951bda1c6af0d6cd47dbd72a
MD5 8606cc26c004e688de9f4d2a30c0d16c
BLAKE2b-256 6e7ff349ce17b768a680aaf918417b175643402ace0e053568e7ac0be0fddfff

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd2d957cfdac420e198007db1b83a8363e885adc00f605fc3cebc7b4db855a0b
MD5 bc53884dfa4843ff5bb73ff140864484
BLAKE2b-256 23aa0729569d66966115014672fe61954e358d6d9c994b031142f787167e6e6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0cb8df600343c483585e3b51696f75430a8aaa2b6f429424fe585f5801f3091
MD5 29bb61b43690f3c2dbac0f529f11c4f1
BLAKE2b-256 09cd10c290717f7fc105c3f5404f89770f0c1e306c894fdcb341e757b628ef1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f201411a746f255a678d53e9bfebf130fd442cb6836dbada7cfe118aa0fcb68
MD5 06c54886475c56eed14d5ea81b0532c0
BLAKE2b-256 86d67d4ed25f81a70ca03b98fa82dfd2ab9989638b80ef269e4239977b5263f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1e17e5a6a41ed471d9f9e9e1ba49a7e813cbcbd473f16d271f724bfd184e413
MD5 b07e91e66ad8b236f834ae87ab6968c1
BLAKE2b-256 71b1b28c8b28e77b69b4b71d4f55ad6c0d3769a2c8d51c606762a4798cd1322c

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7ee1e0a4ad762237f4ba463fbeff0383953ebe7912461cb4440e9b59c43ba015
MD5 564b9718f78250ac84b01e1ac3d462cd
BLAKE2b-256 3c7e59a4477602d0c8a3cb9f732777764e06a6010383f1660c1c645b78547467

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a020cf2d2ed5c34664ec33ffceccbb039b9380291018bd177b17419ccb5682a3
MD5 628f246bd3efd9f320d6d8a8c06e0847
BLAKE2b-256 bcd997079c366f3d069ae6e171cfe079be508a6216315712f5c1b8c0e98acdc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32b44c8707448a1d6d3a83a314b1a748a1ed8639430381ccc8d5ee8e8af6138c
MD5 7dbf1ea747e4ff260bde0e3a92db5308
BLAKE2b-256 912af51b5d387575e0526469119e019bcf3bc093f111e155c832154cb114575f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81f2de5201b1978bfb5a887bff4fc56e5d0ded814adcce77a3a8836f421c51e2
MD5 827a38b9a5ca7d33f1ecc374b4371437
BLAKE2b-256 19137c395f3d82b24a042da84621df9e3a9ed3717cc874929df451af6efb5ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4b49baa2d958ff7921c87a871e18010f2128338520d95043e0b0896d9bdec29c
MD5 842e709554f6295842102cc03b30210f
BLAKE2b-256 649c93348126726bd45c24683d365365f913745cd0a222d63636f6d9baddcdd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92b9516c8d7225a6c73dd10924467ea6c535822a3ce5d7507292378f200b23fc
MD5 874569d010e21bdee0ced8ab8429a5a1
BLAKE2b-256 e76ed2a92f7ebfeeeeb3b99dd9cca2d68a6a8b32b2d067492d997bc8803b81c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fd82a82437a4061fea7648177af587b2c2b0f0adfd5059162ec99b6e77fd5d4
MD5 ac56037da0f60408e654c29381bd5bea
BLAKE2b-256 f606db7081952423eb6b8369b6aff05146e8fd09ee49deb61e1ef87d4a0d4f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6feb4db4a715ade74bdf4bf092cbd172944b52035a3b4b9a451febda26bf264a
MD5 038f5ddd6543b4ac6215add87ebe95fa
BLAKE2b-256 8f60a946fe46de4ab5833a0162bbba62916ba96e5e2e2c752ccd15d9024e115d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a9495ed52b4260c06620a4bb934167ba3b1ae593686a0c8455b236e73558342
MD5 aaa02efa483a1c3b52426788bba5a69f
BLAKE2b-256 ca16d1016e15561cfca8055896fa56cf565d83d8c0af829269177e41239f8d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f0ddcdddfd21f91624cdfdfef4845ad9eaeecfd6a72a5cc09b4a82b9454aa37
MD5 6493af3c86bb8a65738e14b9582c295e
BLAKE2b-256 27d4e96d5fd28bfe6e4daccd8d682d0579dc14067b9128ef5ef1c34a2c880603

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ab7baf773f39e8f45bef002ba54cf28e27847be2eb90bc5107b7a06344bd174
MD5 0cc84d3e31f55e8f12b677ca13044702
BLAKE2b-256 0447654dc94969a8a5aec796ce664cfa72345635790928d0b5882210c952ffbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8bd059e7bd7c5a24f03aec06392cfaf24a09c149c34525a2373391fdfcaaa96
MD5 b46638b2a17b744c56fd0fc9e74f0612
BLAKE2b-256 6264984c0753cfce00ef7e779fdef3637dc94af98ba6d64b740c63e0fe564943

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac87abb50928c40ff8f3bb4fbf0225ac04e1e1b5083f8efb3c193111b61aac03
MD5 c6ff20ac3ee20eb163b674909e5a436d
BLAKE2b-256 4cd78abbef1c10dfaa39c853209e22b6177451fc012620d325d150c27f57b90b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ccca051bacac0d87238bc419ec1ea60aa3b07027c38f6bb0fd7ae827b9118ad
MD5 9e03e4468d5bae1239956ecefb0c54e0
BLAKE2b-256 7a0b5950514427b7899dca9a7e3fdc019657551b74e7864f25f3671fcb6105f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6fbe97faa5d8be52b9bd257509d9d23c5a8612b05d4a3c7b86556a5ce3bccf04
MD5 ff4dd7fb4f5c99bb94fafb3ec06679ff
BLAKE2b-256 c29834f16e016e1bc77f912eed6a7333959e78cfbb65732a18684082466c8b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d5cf33b17d316f5eec4c000953f7f645d23b06f7f28ec817b9668dd3a59a265c
MD5 4e73d9094a1e2b44115d6c1cfbaa5c1a
BLAKE2b-256 1eb11862bce2600255265bd7247af3fd5ae30283f184680658d0179ee0774ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20d99162ded8f6534e5c23f43895b5ac024ca8512a45c665d0ac11fe47810591
MD5 ab6508903a9c7c9045d4cf5a8f5adb1f
BLAKE2b-256 75c0299c214629ee88b96f138822c5fd79411145b7575110fccb6637caeaa6d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8dea167c95cd2a7307fa670850d536d467bdbf83932feeb361dacb5c0e1b3a9
MD5 4941b16bd7aa13b22360192c35b4adfd
BLAKE2b-256 3327eaede782b866000537469c01179d67bbdd9f1be0d276dd5783d2f741b011

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bc8601b7bf4a0e319c2d86b05657be439b4a2bd58d21e4f2a5e32b8d63c0890
MD5 a7391f36d5a98b06583eb66f4b9fabd7
BLAKE2b-256 06369357ff9e4d184d1a8cecc1b50170be44e6227c85570c8fdc19e4b683815b

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 40f0a50fe7dd6020d2e3da31fc6a0c7379d1061f4332928ee811d56f2a57e971
MD5 d2411ac74673c4912fe83fe46c4e0608
BLAKE2b-256 84316f3038be6b27e75e0a6bca7a887619d9240f53e2e918c3bb8d5e8f5be12f

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6957aba67a154d31620da32bdf153a8acb65fad769085debe65069c7a9464e0c
MD5 e4b0931c9d0d7bae2b3ab0b5ef5f2dc2
BLAKE2b-256 cb1024b494a12d7bb5bac3a017c7081ce5f699bb439bfeb04a1ddfccbf1fdf41

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9551a706cec215a88f7907bf8d54c8c865f44b0ee13c108c51acd3845cda1ebd
MD5 cecdcbb9ee2fc8e5bfca6a48ea66549c
BLAKE2b-256 92f485e22018d611a4e1c8daf8835d31b48c27d9152d25b0db2ecd4fa5a98028

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a5cf10dedbf2d0a99447dfc8361b7c46e8d0987d327e67bfd8228c2df1724ee
MD5 8f35304f8482eae6ba0b92bb1d6f2a93
BLAKE2b-256 9962f34623626c9330d863dfe7a3b7264767a26c4d460aaf38b848fd4e6e1935

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d20af3e283511daee1a91580ec68e5e0fb85c9783f4d9a9aadc7895655ac6db3
MD5 0c49323a5ca5358b0f3e14ba7f2ee835
BLAKE2b-256 ae1652399ff35d7a34ce03ab7483c5fd7b671ca1c9e0d6b0ca6e5149cd223e52

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 737905b813a0cdd082a156f64b24b68eab14d0411db300b1ce6cacb6149f9028
MD5 e3e2d27cbc53c130f526470189400947
BLAKE2b-256 3ccce6565784522d16641de08cdcf592e92c9c811ea1f39d15a91e1b69ecba38

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb9e0695dfc5909ac37cb18e367e09c3ce3e610065045216c33469a8ab726c76
MD5 d5eff006483130930e8f58462478f7d4
BLAKE2b-256 73376c9158158efdbb2bc264dcf484e8494dde6b8edcd211998757e5e9f363fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35740f9afc785399a0cec7d6cd8bd1d798ff888bf33f70d23b8bec05405a15d7
MD5 7103a1e8cb8eef32074afb733aab2260
BLAKE2b-256 c12990845e1bec7152c47e16ec17aaa5342881d3288e167b560b10e34fe309d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ae5c61155efc64add7b948bd260bb638e0cbd173e81a2f354c8e5683da50b14
MD5 c260cf658195da6adf68c90b49d8a456
BLAKE2b-256 2f27d315816a51e4ead8859812a9baadab03c3c01f59e443311d5a2896529618

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 584bd99ef675e561e8e3ee81565cdbf7aebbdbd56d676f55615f4d0e0ae71129
MD5 f89feab59d9f04e77de5fccb7ce4a6e5
BLAKE2b-256 7a2bb9d7491464964eb3a6f5ce5859a7969d12ffc3762b602bdc017461e25fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

File details

Details for the file picsl_greedy-1.4.0.1-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for picsl_greedy-1.4.0.1-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19e5c66db568b03f2be3cd58821378822ce6f25d2bc851074c657d5ec18e225b
MD5 bfd395062aa06dacb0be160bb8658ac1
BLAKE2b-256 c64f8572b0914b1b3027db878d5b93234c83c9ee038fd56016d91a6d01bcdb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for picsl_greedy-1.4.0.1-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on pyushkevich/greedy_python

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

Release history Release notifications | RSS feed

1.4.0.3

45 files

This release

1.4.0.1 This release

45 files

1.4.0

36 files

0.0.12

36 files

0.0.11

36 files

0.0.9

21 files

0.0.6

27 files

0.0.5

27 files

0.0.4

27 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page