Skip to main content

A Lean Persistent Homology Library for Python

Project description

DOI PyPI version Downloads Conda Version Conda Downloads

Build status codecov License: MIT Ruff

Ripser.py

Ripser.py is a lean persistent homology package for Python. Building on the blazing fast C++ Ripser package as the core computational engine, Ripser.py provides an intuitive interface for

  • computing persistence cohomology of sparse and dense data sets,
  • visualizing persistence diagrams,
  • computing lowerstar filtrations on images, and
  • computing representative cochains.

Additionally, through extensive testing and continuous integration, Ripser.py is easy to install on Mac, Linux, and Windows platforms.

To aid your use of the package, we've put together a large set of notebooks that demonstrate many of the features available. Complete documentation about the package can be found at ripser.scikit-tda.org.

Related Projects

If you're looking for the original C++ library, you can find it at Ripser/ripser.

If you're looking for a GPU-accelerated version of Ripser, you can find it at Ripser++

Setup

Ripser.py is available on pypi with wheels for all major platforms. To install, type the following command into your environment:

pip install ripser

Local build

If the above command fails or if you want to develop and contribute to ripser.py, you can build ripser.py locally. To do so, clone this repository. From within the cloned repository, execute pip install . to build locally, or pip install -e . for a local, editable build. Either of the above two commands will install all required dependencies. Explicitly, the dependencies of ripser.py are

  • Cython,
  • numpy,
  • scipy,
  • scikit-learn,
  • persim,

and their required dependencies.

Windows users: If you are using a Windows machine, you may also need to install MinGW on your system.

Mac users: Updating your Xcode and Xcode command line tools will probably fix any issues you have with installation.

Optional dependency

Ripser.py when compiled from source can have a steroid1 shot by replacing the standard unordered_map from the STL by one of the fastest implementation available: robin_hood. Benchmarking of Ripser.py using the robin_hood implementation showed speed-ups up to 30%.

To be able to use robin_hood instead of STL, you only need to clone the repository containing the implementation:

# Run this command at the root of the project
git clone https://github.com/martinus/robin-hood-hashing robinhood

After cloning robinhood with the above command, install ripser.py with

pip install -v .

This will install a local version of ripser.py with verbose output. In the verbose output, you will see confirmation that robinhood was found or not.

1 The Python package is already compiled with robin_hood by default.

If you are having trouble installing, please let us know!

Usage

The interface is as simple as can be:

import numpy as np
from ripser import ripser
from persim import plot_diagrams

data = np.random.random((100,2))
diagrams = ripser(data)['dgms']
plot_diagrams(diagrams, show=True)

We also supply a Scikit-learn transformer style object if you would prefer to use that:

import numpy as np
from ripser import Rips

rips = Rips()
data = np.random.random((100,2))
diagrams = rips.fit_transform(data)
rips.plot(diagrams)
Ripser.py output persistence diagram

Contributions

We welcome all kinds of contributions! Please get in touch if you would like to help out. Everything from code to notebooks to examples and documentation are all equally valuable so please don't feel you can't contribute. To contribute please fork the project make your changes and submit a pull request. See scikit-tda's contributing docs for more detailed information. We will do our best to work through any issues with you and get your code merged into the main branch.

If you found a bug, have questions, or are just having trouble with the library, please open an issue in our issue tracker and we'll try to help resolve the concern.

License

Ripser.py is available under an MIT license! The core C++ code is derived from Ripser, which is also available under an MIT license and copyright to Ulrich Bauer. The modifications, Python code, and documentation is copyright to Christopher Tralie and Nathaniel Saul.

Citing

If you use this package, please site the JoSS paper found here DOI and the JACT paper about Ripser found here DOI:10.1007/s41468-021-00071-5.

You can use the following bibtex entries:

@article{ctralie2018ripser,
  doi = {10.21105/joss.00925},
  url = {https://doi.org/10.21105/joss.00925},
  year  = {2018},
  month = {Sep},
  publisher = {The Open Journal},
  volume = {3},
  number = {29},
  pages = {925},
  author = {Christopher Tralie and Nathaniel Saul and Rann Bar-On},
  title = {{Ripser.py}: A Lean Persistent Homology Library for Python},
  journal = {The Journal of Open Source Software}
}

@article{Bauer2021Ripser,
    AUTHOR = {Bauer, Ulrich},
     TITLE = {Ripser: efficient computation of {V}ietoris-{R}ips persistence
              barcodes},
   JOURNAL = {J. Appl. Comput. Topol.},
  FJOURNAL = {Journal of Applied and Computational Topology},
    VOLUME = {5},
      YEAR = {2021},
    NUMBER = {3},
     PAGES = {391--423},
      ISSN = {2367-1726},
   MRCLASS = {55N31 (55-04)},
  MRNUMBER = {4298669},
       DOI = {10.1007/s41468-021-00071-5},
       URL = {https://doi.org/10.1007/s41468-021-00071-5},
}

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

ripser-0.6.15.tar.gz (114.7 kB view details)

Uploaded Source

Built Distributions

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

ripser-0.6.15-cp314-cp314t-win_amd64.whl (172.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

ripser-0.6.15-cp314-cp314t-win32.whl (164.6 kB view details)

Uploaded CPython 3.14tWindows x86

ripser-0.6.15-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

ripser-0.6.15-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

ripser-0.6.15-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (849.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (845.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp314-cp314t-macosx_11_0_arm64.whl (175.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

ripser-0.6.15-cp314-cp314t-macosx_10_15_x86_64.whl (180.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

ripser-0.6.15-cp314-cp314-win_amd64.whl (169.0 kB view details)

Uploaded CPython 3.14Windows x86-64

ripser-0.6.15-cp314-cp314-win32.whl (161.6 kB view details)

Uploaded CPython 3.14Windows x86

ripser-0.6.15-cp314-cp314-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp314-cp314-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (842.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (834.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp314-cp314-macosx_11_0_arm64.whl (172.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

ripser-0.6.15-cp314-cp314-macosx_10_15_x86_64.whl (178.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

ripser-0.6.15-cp313-cp313-win_amd64.whl (166.4 kB view details)

Uploaded CPython 3.13Windows x86-64

ripser-0.6.15-cp313-cp313-win32.whl (158.8 kB view details)

Uploaded CPython 3.13Windows x86

ripser-0.6.15-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (842.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (833.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp313-cp313-macosx_11_0_arm64.whl (171.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ripser-0.6.15-cp313-cp313-macosx_10_13_x86_64.whl (177.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ripser-0.6.15-cp312-cp312-win_amd64.whl (166.4 kB view details)

Uploaded CPython 3.12Windows x86-64

ripser-0.6.15-cp312-cp312-win32.whl (158.9 kB view details)

Uploaded CPython 3.12Windows x86

ripser-0.6.15-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (843.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (834.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp312-cp312-macosx_11_0_arm64.whl (171.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ripser-0.6.15-cp312-cp312-macosx_10_13_x86_64.whl (177.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ripser-0.6.15-cp311-cp311-win_amd64.whl (166.0 kB view details)

Uploaded CPython 3.11Windows x86-64

ripser-0.6.15-cp311-cp311-win32.whl (158.4 kB view details)

Uploaded CPython 3.11Windows x86

ripser-0.6.15-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (833.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (826.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp311-cp311-macosx_11_0_arm64.whl (171.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ripser-0.6.15-cp311-cp311-macosx_10_9_x86_64.whl (176.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ripser-0.6.15-cp310-cp310-win_amd64.whl (165.8 kB view details)

Uploaded CPython 3.10Windows x86-64

ripser-0.6.15-cp310-cp310-win32.whl (158.5 kB view details)

Uploaded CPython 3.10Windows x86

ripser-0.6.15-cp310-cp310-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (828.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (820.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp310-cp310-macosx_11_0_arm64.whl (171.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ripser-0.6.15-cp310-cp310-macosx_10_9_x86_64.whl (177.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ripser-0.6.15-cp39-cp39-win_amd64.whl (166.1 kB view details)

Uploaded CPython 3.9Windows x86-64

ripser-0.6.15-cp39-cp39-win32.whl (158.7 kB view details)

Uploaded CPython 3.9Windows x86

ripser-0.6.15-cp39-cp39-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (829.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (819.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp39-cp39-macosx_11_0_arm64.whl (171.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ripser-0.6.15-cp39-cp39-macosx_10_9_x86_64.whl (177.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ripser-0.6.15-cp38-cp38-win_amd64.whl (164.5 kB view details)

Uploaded CPython 3.8Windows x86-64

ripser-0.6.15-cp38-cp38-win32.whl (157.3 kB view details)

Uploaded CPython 3.8Windows x86

ripser-0.6.15-cp38-cp38-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

ripser-0.6.15-cp38-cp38-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

ripser-0.6.15-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (833.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

ripser-0.6.15-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (824.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

ripser-0.6.15-cp38-cp38-macosx_11_0_arm64.whl (170.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ripser-0.6.15-cp38-cp38-macosx_10_9_x86_64.whl (175.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file ripser-0.6.15.tar.gz.

File metadata

  • Download URL: ripser-0.6.15.tar.gz
  • Upload date:
  • Size: 114.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15.tar.gz
Algorithm Hash digest
SHA256 bc0e340f778df0fc6a6e85ac081d2073db1af109a729bc81821af7214da15af4
MD5 b74a46fb4b2ba35068149a5d5651b940
BLAKE2b-256 043c36632e25429a6f1242c46f11c4a5444a05b0a790b0748fbccbe7b08c3e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15.tar.gz:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 65a890329c7089e895b85f83ca5afe1101741cbfb892db5efae0d047236a9058
MD5 6d43aa4bc5892d8cfafbb81d04da26b1
BLAKE2b-256 b58ab4b2822fa985e2752c8208d967d5d0e7907229de54cfee686a48f72072b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 164.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 14374ceb7ad7c91e4c75171b4fdb7f95b14b9d2266b0de6b42335c3f16b982d9
MD5 02bc9e0309900843b499f1ae2ff27a59
BLAKE2b-256 0f4b5b6f365c8702a63e22423488a17efd5d560f1291c9c89babafec2f45bc6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 632cf69b16bbe5ddc889342475c80b69b58592e7832cbac16419287ac6b23628
MD5 3fbf7950d295d16c1ed9c781e98bc39a
BLAKE2b-256 cdf7e37c185ed23ae88006f313f820edad28e4a2b86da1c927c6e42c02b12874

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dce598b67d6adf8e23dd091a11c3c7e89f3a9dfc379e3306d254e0b221f8658b
MD5 caaa8df7a0d85838bc0ae2c85ab72592
BLAKE2b-256 7c2d1b1f4ed9349045ad37f0efacbf692a6e5fc7c7420c7ee0ffed426123cc27

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46efaf5a333680c8ebe7bd7c3fb3d43cf03e67ee07fb93d5bbfb66b79aca75d0
MD5 79079043bf9df25e794441af9936648e
BLAKE2b-256 a9850c1693af45db259d55482b7cd888ed7a03f75d9d8a15a916271542100dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dae6cabc5cb07792dd08b3eec6186c3258e2954a55dcdb755b5b8d1d11ec81eb
MD5 d620616c1ae34f57a658ae8fb464fea0
BLAKE2b-256 6908108e8450ffba8bdf24c67b3b0d3634c8dd27305cd99b1296a29fd353ffa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8365b83458339143c2ad43760fdde2886586f40caf096aaa187af51c6599e83
MD5 f32fc9b7f51165873cc45dd5806dc37e
BLAKE2b-256 987ec043d93c07fa88013e593398383e6b330e84fcf2548ac2c7147ea43d1420

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a97bdc0fcfa1d19f336131222a24ff1739704c2cafca26ad39de0cc2c218ae7
MD5 45b11555f0c74069d6ad47b6ea02bb63
BLAKE2b-256 816c0fe3caf97d41848be656219dbbe76bb2ce3b47c3b7c180ecbcae580de36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 169.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fcf64ee0fc1f6a1c39bd5f93df819df597603507a698e4b7ed3a6558db982edf
MD5 4237979608c40ee207f43077ca52008d
BLAKE2b-256 0584b5e1825f490ca3af40403d84bc21313b25041ecdd3366fc4d9280173e653

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp314-cp314-win32.whl
  • Upload date:
  • Size: 161.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ae911142e0c00ee0f96fab2b3b8509803f61474ba1b51d93a209aa3ca71d3601
MD5 82017b724c1a19f7dce3b0f97157b43a
BLAKE2b-256 a1d2ccda7563780667d42df170185f0e1cfe52e6418106f8c2399b0851fa0d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b251aeaff94438da18cceef2a37d85f6f6611487b814a8fd1c94610de37715c2
MD5 c74e7c9c72c0d4e2a5eb64bc71a0dace
BLAKE2b-256 1abbd916cae3d4086330eb09d2d834b5d197a4435e0c4bf818862b29906d1da2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2575620707c0767c5dc9f6df5ffd316c2408d7b03b59b74b12884306abc487f0
MD5 d6873d40a0f9fe8336429254f9d2ee9a
BLAKE2b-256 cffd1e01edfccb625a2b7dd2b279e703094839840ebf67f0b13cbe6418d20b5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6eaceec2f090d277c164dc000913384c46d61f8e8a51fe5752d5a981fa6edbfb
MD5 ed35eab933958ccfe7d294bbc4c2618c
BLAKE2b-256 767c10b70924fafea5e9cced244e36419e6a65858f40fb6b1d2c973f94dc6f0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5eff63520c9bab0abefa4431df2c9bd7aae4371f2b6b8cf9072f5c5f67a9dbf
MD5 6a4b410a548e587f23168f40e33db846
BLAKE2b-256 2ff3f996c2885f0c6f5955333b235597dbbe50452bfba688891205eb124753ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e3e7162d2fe7965977358f2df01ee5b288116098d627d32318b92670a4e9433
MD5 6880e3ee0dc4e9e02452de7e3439fbf5
BLAKE2b-256 1b043858c4c7fb73dc8789cef5c54f272bcf7d296cb8a33dbe075508dfec09ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13aa8ca37269a9810fc774c898c5a43d5ca552dce46cf138c9dd9ebe7a0200f0
MD5 5605e98b9a06e1540fc0d870700c2c4c
BLAKE2b-256 88f58ab1e90d2ac3643a15dbdb245e52df196956cc3f0b1395aae70dd39e7210

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 166.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f585722ae3d18d5fad294088979f5311d89b4a284229144fddeb449179288b56
MD5 1d8404039ea0613403b51de4c9d2d1d3
BLAKE2b-256 6ed12d885681c7762f3371af173dd031fad732eb5d00110fab80a1ca6f2b2608

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp313-cp313-win32.whl
  • Upload date:
  • Size: 158.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1b61d6d1bcf9bb2aa91faed1c2511c08ada0d800b9177a4de5be525d9b765c98
MD5 e638a08d874c6cdf2ee936821be6eded
BLAKE2b-256 c2f1cd9227f4563ac822e44a6c5b3c16ca51895589bf4946fc96257f5d1ce62c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 432edfef38445134dba8594fe8999f2f2b4cbdbb530194a859701dbb793abce6
MD5 7892de3d1490a44e1f5126439af07387
BLAKE2b-256 98db170049d86b66fba564234a33c2349b68b9afa5436c430bc3b9a185d3b974

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7de34f70b7cc0492e8cf7a551f43a8bd3f2de611e108337b933933326b4973ff
MD5 2a04cdefcabd182ab7ea09a7189d8f9c
BLAKE2b-256 e66e9b0c6aa6190687c5aa2d16758e606eb52abd5a7f3ef55f359c33f2f68594

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0efd75b9896dbc5fe3cb995c44678a80b5789f1eeed22e448222f40672a35921
MD5 92bae0e689f171a8f5c88830b00f288d
BLAKE2b-256 6364b47061c2271f1f4b8cab1ce3159524feb5a72827e97ecccd6bfd5193e939

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e078825e7031822cb11f6f7eec53df5d0ea7e5f99847b0113eb4298e09bf13e7
MD5 9fc19d1fc1da50e90bc37864af400c00
BLAKE2b-256 7910b8e6316cb07e8bb77827ec5d02f996662f188cfad687592c183ff540da00

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 164cf8e0e9008255b5f72f01483c5d3aa023f65609c38c30ae14d7b7d68c96f0
MD5 a99c6277a8a0101a7b92f22a196ba5bb
BLAKE2b-256 e8087285008918f93ffb47dd3829513850404347e1cb3d6bdf746beae98d112d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 438972295a04761e774abef03fb4cdf4e8973ab20ee67c5a6fa478a5f506e429
MD5 ff25dd9f0877a7687992e4e1f0937755
BLAKE2b-256 2d1cf3d6b98c0ea1c916ea8514bdf600706237b479ec6ce09447754dd2d401a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 166.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2d2c6d576357259ded7e98a6b8978cab7c06e77635cc4bc893697a854a9f6419
MD5 593228db62f244d4ccbaa2a4b5d00feb
BLAKE2b-256 56c380858e5a856cefe87bb9e99ff47e03f204e5a660c1547e6320db627e4c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp312-cp312-win32.whl
  • Upload date:
  • Size: 158.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8279abbbe66b82c0116bea5700afd0e7a129be5dab97078eacd8db1f643bf065
MD5 632a736b98aeaab106f7ad10aa47f2af
BLAKE2b-256 d960364bccc5a024261a17ef7af0141dbaed2d890698f41e88a306dd9df8fecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c89392af9f3d3ab4894c6e70547a6721dc61c2accf810d5a6381d9d1343e888d
MD5 861cf7652eb37774077157848182cd73
BLAKE2b-256 68e5e14ebd552dcbd8341e788db8f52e9ca96848bd46106db22878c7d1a6b9b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a071ce6fcaa5bf4ce7000cb3677a07860ddfc887df6003c7e7ef532062a6b308
MD5 c6cc7fe8a77683841a4fd77f89e850da
BLAKE2b-256 7b439263408ff7701b1c37a9d0c43e39821c02b2c4c7f196f12765c8c3767158

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9804f51f7ebb3f9385ce2ac47e0e17b145e58de6c207b960e03964e2eb269c6e
MD5 9b4b7ca5f3c77709642f7b02c51ad2b9
BLAKE2b-256 2157c33a502c5dad29a13dd8e50e089abebb2ef5f62d7e6f735a69b87359b52d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed82bd71076d832f7bd500b05f167548f8b72ee4fa1e9671dce22b82ee97368a
MD5 a3b8daf49f46dd62f86f68d6236cbb76
BLAKE2b-256 e08a06add3ef24fc408446b102e2d85b67a3138c6123d28ebdd9b3989e9d9c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bb4cf6048d8102fb05d9bddd5ee70e4c4786450baa721a66917503bda26278f
MD5 173af480c09fc7dd5f77fede999c2431
BLAKE2b-256 f0dd82de671f79be8afd68775758ae92cc3c752799979162b559d9af54a0cb1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65ceb0a3a0abc471fd55703c3ff31d06810ffb2c80190693c4005582269fef07
MD5 4086422c7aadd3df43c72408770d76f2
BLAKE2b-256 0417f08ad2093e84af9007af1b7aa9507d835c65622841cb3c724a13b223099d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 be4f5bd0f154c49795992bf99bcf43733d4e2de228fc579bd86855ef36f64a67
MD5 3eff4810fe6702a2418068b0e7c99181
BLAKE2b-256 9d2cf559024695ec76bef56f840c4f1cca53a6863b52041863f9515eb5682e63

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp311-cp311-win32.whl
  • Upload date:
  • Size: 158.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dc30a85c2fd29d7b309273662e7faa1315b1e1d2a5cacc1dc1031660495b7e10
MD5 9865c489289b170d997b0237e1b8d397
BLAKE2b-256 c16ce3e8432182f796e83c917e4fadc35e601e00bc00be480e08b328847e0f39

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54537c5e9db641d52795519a84fcd136c76ffbcf9f3742127400e841d820d1f4
MD5 b3e7733296bdd4c967dd1882b93984e7
BLAKE2b-256 6300b4af0eeded802b728c326025647dc3bdaf19d0ba88cc5713cff2f0cf481a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b4a44b85657014f036a99b50fabfaad5b98bf20f588fc560b0d8ea4fb3fca96
MD5 90da165a2e07182ca729af7a9d63d593
BLAKE2b-256 150ce44a7bcbee01e781ccbb3ec45ef017046afa2158023de8eb0f2d50079f58

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a71ffb93d36e20ea60c743919496481c41a5fc456f8b8d341dd766a06786422d
MD5 d69a2df5935a567ffeef38f624790374
BLAKE2b-256 4cc113d63643a0c2797293e3dc71e13183a96568a70dbea8ff1033bf9dd569c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 942cdd43e23f08cd558f735a3670bdaab9cd3511f214d13bb4b7285c21803c4d
MD5 4ef45219c1150978e68c8c5442c252a4
BLAKE2b-256 cf738163883408cc43f962ef2222fffa62d73b7e27497987a6c35baec9bd8f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9aef4e00491ce4b0a0bcb149f54a4aa9e3bcbd994e0cf924424fc8349e9a122
MD5 90d823793beb9a4f388f91a51229d503
BLAKE2b-256 7496b454981475d7740afc1fd2b788ecc49d0c1c42dfe38f0c050a058209d36f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba5341d0a24f53bb8619ec6c088583d52ec4395c5690627306aa502b9e19a6f3
MD5 ad3ba0602a251ded9cb37062d26ec22f
BLAKE2b-256 3525246b0df8dfd949315c1a2b2355dad137d9588280bac9c19dfca3710b8a63

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 165.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68aa46ac9704ae007ff862c79adaa3eb315cfeaf5794ee1ce922902971991a40
MD5 4562a4528e422f3d77b6c4148ca4ee61
BLAKE2b-256 7926dc57053703a3c98e6e841e11c34008d20ec9219e165e8810850be84b2bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp310-cp310-win32.whl
  • Upload date:
  • Size: 158.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 478387baeceebe626f661547dfecca88571fbba716425af07521d8c2039aed35
MD5 e16cd5c5a273153528941d139c5b7f40
BLAKE2b-256 1fbc6084ed2fd0637bf15184dff6f43534f072cc8209f0f177a0da4b203a8096

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1a031f518b31b3420180b46f40be29fc0f6306244995f8336507ef2efad9c1d
MD5 83d79eace967c74346a07b8709331b9e
BLAKE2b-256 4e57a94c43de2b5e6aad1380114631405a1e5c12fdea7121cd0471b328b63219

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a30e9fd3fff7f43c30b41e1070342290574b15fd7fe4d118816d7e0fed326d5c
MD5 3ee96694537c54b281e43ef522ce408e
BLAKE2b-256 c86f313ff218b4ae36ebb7078459efd45dc8de5f4a772534fb7a20bfd1dd0abb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e688ed6f3bf3c6f0e8c0072f6130c8311c0642809bb88c8a45ecec24bdd5385
MD5 3182f15043b2a60dd2ad8bd57b96cfbd
BLAKE2b-256 58c155d45c82d464ec72692fefd920d3518a86875424b01ada179f0264fb5e79

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e1bd82464632771a1e021c5eceb553215905f578a808cb714ef071eeb972380
MD5 19bbdd361b9d5f82fc574c55a5181098
BLAKE2b-256 681943a6815e637473518566e84a51d66863d471f9cd5016947a5b9322794d88

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ccf72be375e77952a30c2657ff0b3c9254337fa287e5cda865a3e44f450c173f
MD5 3829966a4579179a00cc202cd767848e
BLAKE2b-256 c96f0a654dc3e0428472c837e1c0e681f8df0009a383da5da786bc93cbf50c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d66353f14c1bf525618d0455ae5b88e5dbdda9349211d5314603bd16b545a700
MD5 86abc20087271b79f48968b7abd7e93b
BLAKE2b-256 1a1dfb2486d2d7d6b528ba103e87c1c8c078a952952677ea85664799b8d461ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 166.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 72969cca4f834ab7e1d7d02b0c5d4b172317abd78ac08da9e3d449d2b5b09f86
MD5 90f0bc517ea79b4b3e0f5f5a896de7fe
BLAKE2b-256 3f7eb4c8e3834d6e02563095178665287ab9e930bcf10dccc753f6c7c2e6cb6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp39-cp39-win32.whl
  • Upload date:
  • Size: 158.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 df35a7d26c2d348695be9b6ca1778c8672a572c292670dbdafe392e274c17cd1
MD5 95210520498ade581d59a36e47f355e4
BLAKE2b-256 7db5c3238be071a067475f28d643f8d539a605d554b6926c9469df3aeffbe8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4939b40dba98413b895b885e47e135773627099f6ac4107e54d09f2b6a0b43f
MD5 40d72c4cb9fb941bf06189742f9a50e3
BLAKE2b-256 677cf9e599d5873743720596f52f4bbce8f9dd0522dffe71c8bc468b5de064f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e547873092d096532235711f776efc841739cbae08c2142f9c8a96c59338b16
MD5 0e7ff642f1a0d654f97fe8c55355c4d9
BLAKE2b-256 8f7021b5a6444018d3357c8d0fa3e27f39addcc50a33921e71ebb2960754b60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64778b1c0cf0ba39e5883e6dc32685dfb3e6f3e6ca663ee658f98ef4be7eb3e7
MD5 94951c285fd6624d02b6634264fd5488
BLAKE2b-256 b8813a0798105a74db9482964f9713e3d59c8b66f93f5abcc72697c881d07ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e24f16f65fa7f87a8fba668489d4e048d894576c03d3a7e1f3082add05844c7
MD5 5326678883c5e98c0e3627f406f66f63
BLAKE2b-256 74d28a57eb377212374bbdfc86dc4b11a3d91ffd2d12663bbac92fd379b923b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7d49de3862c97c87c03033f60f66f68863f81b363e167b844b6f02e638ccdc9
MD5 4c6f9aaf65c6c1cee5df3e6902991510
BLAKE2b-256 66fbc7f7025e240783a5af8383a7aa46afbf06132e61e52d931dcdb53ddeb797

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b60b8cea0aa689bfb479570445f411c2a6b74c0b7af4225c9a7ab85573ed8620
MD5 b1b8e071a659e2c14671e64d31a34340
BLAKE2b-256 433530b90fb8ff13eb40ceb99338c1f7676917be954b402369fdbf49cad8af2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ripser-0.6.15-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 164.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9f4e1c9b8d68ee2edf8619f05c58ba46d25a958a4a0ca1558cc2629a6db3b224
MD5 4736447c7cd70dc9f9ef49b626296b9d
BLAKE2b-256 79b420c1abe6f20cb4e3bad25f33e3b312882fe4313b75d2867c659af60e391b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-win_amd64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-win32.whl.

File metadata

  • Download URL: ripser-0.6.15-cp38-cp38-win32.whl
  • Upload date:
  • Size: 157.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ripser-0.6.15-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e4422937b215a4c54740bc9d340f38d0661a9b6f5c4340782cf9e6e7648c24da
MD5 53bdc2f115b04fc394dfd8cc0faf7a0d
BLAKE2b-256 4a308e396944b27c42090a50ebcad25aa082b65cc94688aa24d762312ba0c7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-win32.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99f2db247db44a0ca400a6d07cbd33a3568b7c67fcf5d660cf79df17c9208f41
MD5 cf789dce81fe9aaaf6e852ad284cb0ae
BLAKE2b-256 bd48762bf4fe0cdc3138c97e0abd21f0d363e6c0539cb4595d6480f9979eb1be

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bc0fc3c957711dd209fc4fa0a59eb94f4a07f59b6fff1e17175663990c2bf85
MD5 dbb71a1acbea8de2eaf48f582e909559
BLAKE2b-256 fe372a207354c4c7ea5daf3ae9d119eeb9eb64d9b18e39c02fb708e81cb25f67

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51f86a1d47fbbdd18adea46b9cd9d13d6ee09f14ebe03d194ed7442a7759a786
MD5 b612781fcf1a0238bee345507cc018b1
BLAKE2b-256 8476328389c9bc09c33d2cfea6ce597240f5b7d09f9095cebcdded240d799c4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1518d1384dc41048a81f1b28a7542f91c112e9c47ffde12a7800a6105a4526a7
MD5 79cd590922b10aca002eec27a63d4aa7
BLAKE2b-256 59adfece8ebb125d9a84d0f93991ebcf2e63c5515b361b266af025d005d4d743

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f31aa5f1b2009dac9fd956fabaca91744e71cf434fd8c74de0758b28525b8df8
MD5 4f95ee7f448af8b0020f347bcc50680f
BLAKE2b-256 633dd5fcb9700b60f2d77e239445afc84eb2c1d921dbbb67998909606b74c8c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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

File details

Details for the file ripser-0.6.15-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.15-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccfb3ea5cfba705aa4fd85fd81e0903fd5bd7cc1b344075d9cd2f3b5c869e140
MD5 41d8c728f63b894a99d0617b9afcb652
BLAKE2b-256 ba61bf9a414b9210b2f76282461f50bad9aa177dfea1a4797a3e762a58d139e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.15-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_and_deploy.yml on scikit-tda/ripser.py

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