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

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. 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.12.tar.gz (98.7 kB view details)

Uploaded Source

Built Distributions

ripser-0.6.12-cp313-cp313-win_amd64.whl (149.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

ripser-0.6.12-cp313-cp313-win32.whl (143.3 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

ripser-0.6.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (821.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

ripser-0.6.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (816.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

ripser-0.6.12-cp313-cp313-macosx_11_0_arm64.whl (157.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

ripser-0.6.12-cp313-cp313-macosx_10_13_x86_64.whl (161.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

ripser-0.6.12-cp312-cp312-win_amd64.whl (151.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

ripser-0.6.12-cp312-cp312-win32.whl (143.9 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

ripser-0.6.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (827.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

ripser-0.6.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (821.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

ripser-0.6.12-cp312-cp312-macosx_11_0_arm64.whl (158.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

ripser-0.6.12-cp312-cp312-macosx_10_13_x86_64.whl (162.5 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

ripser-0.6.12-cp311-cp311-win_amd64.whl (150.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

ripser-0.6.12-cp311-cp311-win32.whl (143.8 kB view details)

Uploaded CPython 3.11 Windows x86

ripser-0.6.12-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

ripser-0.6.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (841.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

ripser-0.6.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (833.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

ripser-0.6.12-cp311-cp311-macosx_11_0_arm64.whl (158.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

ripser-0.6.12-cp311-cp311-macosx_10_9_x86_64.whl (162.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

ripser-0.6.12-cp310-cp310-win_amd64.whl (150.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

ripser-0.6.12-cp310-cp310-win32.whl (143.8 kB view details)

Uploaded CPython 3.10 Windows x86

ripser-0.6.12-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

ripser-0.6.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (834.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

ripser-0.6.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (827.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

ripser-0.6.12-cp310-cp310-macosx_11_0_arm64.whl (158.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

ripser-0.6.12-cp310-cp310-macosx_10_9_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

ripser-0.6.12-cp39-cp39-win_amd64.whl (150.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

ripser-0.6.12-cp39-cp39-win32.whl (143.8 kB view details)

Uploaded CPython 3.9 Windows x86

ripser-0.6.12-cp39-cp39-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

ripser-0.6.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (834.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

ripser-0.6.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (827.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

ripser-0.6.12-cp39-cp39-macosx_11_0_arm64.whl (158.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

ripser-0.6.12-cp39-cp39-macosx_10_9_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

ripser-0.6.12-cp38-cp38-win_amd64.whl (148.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

ripser-0.6.12-cp38-cp38-win32.whl (142.0 kB view details)

Uploaded CPython 3.8 Windows x86

ripser-0.6.12-cp38-cp38-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

ripser-0.6.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (833.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

ripser-0.6.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (827.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

ripser-0.6.12-cp38-cp38-macosx_11_0_arm64.whl (156.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

ripser-0.6.12-cp38-cp38-macosx_10_9_x86_64.whl (160.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ripser-0.6.12.tar.gz
Algorithm Hash digest
SHA256 06a0c4ef15a95541b9b3d3d67a94e474a2876eee67235d2b2b5176b7f29e0411
MD5 f6d3d8ae78b4d9687ccac3f54a00c5b8
BLAKE2b-256 a5a89c8d9fa8eb22a31569e44e78e79d10e1715d5d85517a12cf3b7b0c4e6691

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12.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.12-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a41bdb71780ebe2a943626e1bbabf17365a4d9fd038f1da570665000b326adf
MD5 d1c872707d9fda502e65febf4d776672
BLAKE2b-256 2904dd58160ad89f76db8077799dafe8c6bb38919f6764e0a106decaca4f7211

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 066350d9c638da6f7a864b4cc1506773fc753d16688831b4b0868acfbb0d96f3
MD5 7f23d6b04436fc784ef384c7023b88b8
BLAKE2b-256 b2bb96e897244d73d8aa56040b5da80402d4c8db51991c59b652156e588218d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd190350da36ff248ad9d3bf531744f1aa566245bb08a7b06610b77cb4a5128e
MD5 d11c27348b9d755d25c102f623a0560e
BLAKE2b-256 86ce28af1c02e246fe2b7732aac1637ccfdea098cd3aa56c3a165a6a494c384e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b8735944df3027b7aee923412a95a37d7f11049d804c4ecb2478f7559c6f954f
MD5 1ee5c98d309dbc606e9713d9da42e56f
BLAKE2b-256 8ac07a5eaa5c2a440691a4be68944cd0d0fa1cfd0f9618b0b0aa244fcce5620c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7554f9886817088ba229a53982e125c66fc121ce7a699c7b7752aea2b3d67d25
MD5 0964e3ea540b3561c717ba74d2c32f2a
BLAKE2b-256 4d2bc89cfeabb6e4326e14ad87ec5f1f8f682d82fc07c0776a6b67e2fc58a71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05f6f7f1c6ffc2d8d798122f05e410e9659e1e9729e15d4b0b7c029ad645e60f
MD5 b6a86a90f59ae061caa651597a4f88c7
BLAKE2b-256 b9c7c0528fea98eb4319bd4700f3d5bb21e817f7341534e4bf2a38e214da3a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 298e57a64ce6b6701c4db7ea446d1df17c79be4669d19969577e1425fec7731b
MD5 548d7a21bd913a11607b2f08ca73eea7
BLAKE2b-256 e83d87b6e7b1cfa7b3efa80e44891e4863e32ae7e42ff6e6fa2658ec31be07c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7dc2dd31e4124de664bc43af221f2291599a4c2fedeb6b9ab013b6ce96b6f3c2
MD5 db7e4d5202e0d600ea6b8957d0440328
BLAKE2b-256 120d70aae00572e3b6c0728f7319bec0fc160b23bf5e1712c024eb55992e7ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b17e05a39ff9bfb31017caa39067a4540fc5a33d2a604d9aa313922ff42a4ff5
MD5 d207e544fa01b79158f736e3994d9ad1
BLAKE2b-256 ed85a63b13bf286288ac8e7473d057afd09b692c72322c4b29146a2052416adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 db342b89a189d115fbcbac259460b0296c5612e34d3ebf2b5faf56c67181b7e9
MD5 b6368a1ca062c2ebcbe839f0e976eead
BLAKE2b-256 f91ddafb100c549fe26c3d27433396801c8aa9431cc0b30ade647d38836da8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 783da253766f7a1d55924111f1de2257cbf63690e62eac00913dc943fa9d571f
MD5 aa34b9edf05ff804749a3bd34746e02e
BLAKE2b-256 4ac612f5bac1440a538fb818e58e57b59551804449459dcfc2490160ff22e4b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb763129462ba223f23c5ce43e2044c47eca1681e918f514eb693123967f55ed
MD5 6b18d387c30090fe397990603af97e0c
BLAKE2b-256 b5c353825a1deba8b0df0514c83049f26f3356d0ba66e084281338a613838a2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4860aea7a51f834391d75b89d7742272a898d93957991394b1fe7eef86886763
MD5 e031c67601756e6152070d330ec25e45
BLAKE2b-256 9b85efa6c75c3773f57b879cf4cb00201d5d091b6c50bd3154dbee53c4ffee21

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dd8ada70f81ae77452870ec81243f33ae54daa5aecd062ef8b8e1d80f69ee61
MD5 d1979e8fe2dd7ee5e909719d7ee9a1ae
BLAKE2b-256 fbe3c7d961852d248ee2a3ec0883887a57fde6158735b1e240708215061408fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b86d0eb289d0c5c62bb26517f147ee90a080f68c2cedb0320d09861215028468
MD5 322f65f6bad9f73491850ba6217c9121
BLAKE2b-256 c7741e532c403e05db1cfc36785eeef267c90acfb62dc2b0c720b5ff50c15946

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6dc976925dcc7f21efb24f869586c9cff93df8beaa19c6bed8f347622c52417e
MD5 eca838038fab5e40c6b999a1a1d550ba
BLAKE2b-256 d234746dd6eeada48f04113e86fccffe3ec777229c153868b4f699613991e006

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ae3c5d693a9b19e8c8002cde065743ddcd89d11232e2bc980c556652eb27441
MD5 974b9f15b135429fc9cd79c3dfdf2c7f
BLAKE2b-256 0d9a3ef5e2c8d5e6add906fdf97a06094307ec052acfa254b1f22f582d7afa1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e932ca5acbfb6970e4cfc3f2352291854dee4d579d51686c2c3d67d588f70393
MD5 d3b8e79f42aadd169e49548c5cf43730
BLAKE2b-256 0b478d712b49bd8f08e21d461fad9e078ec3e3ce6172c9f897e29b0bbea96d0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 203af3cf03949be1a78f4c13bf5508a693789d549b5539696ef54e3c91c5b30c
MD5 1a568f1860dfcdbed02af185866481ea
BLAKE2b-256 2cea7fd388ae5ece5faa578b75eb810dbf9d1b573b8fccf8cbc5280bb763d5c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f7e58947d9e5730c11d9d65db7b21a566efb656ad87e27094efd89ea442b1c6
MD5 8a7dd96f1a2a8073be9d0ef63cbef4f4
BLAKE2b-256 05db3c305194b3d552f25b69ffb736e9b5c47f38b541ee18970a4f8da9cf9463

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaa053a001527d8baa7f4cc56e7c374e33589a05bb363f15cf099c597d65f1ea
MD5 073b42904311cd2d738b77846cea701c
BLAKE2b-256 0c3ff39bdd04a95d4243d0d74c9c73c374594eb187a8b7256b3ddc5adcf7ac05

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 042accd74b21d5502802caf9810ee399c3e23e6350064c967554a16391238650
MD5 e070a171e0ceae67d01f8cca32959f21
BLAKE2b-256 64b6214012e1567ffc2bc0b086601638828677a10491f7bf9b1b9c0f03ee9539

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e2ad1a79246f12c762bb254eb9a46c66831eab5809a124a5482df5d52b9b8dd
MD5 7e8b23774c94a9ca102309c0c53da6a6
BLAKE2b-256 4edbe9ef9a81d2ca1c74f315cfa1dc36920e84d98058fbe61b0997e4a1dbada3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c70961cc71b0e12681762fc53f8e62d127c3d8a5153a896a34e01bec0a30eb62
MD5 615288fbb31be0ebe52ecc7ece58506b
BLAKE2b-256 9cd3edd9a9da40855e5d460b7732687f588d541e78df534140fc29f85db96c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 985f33f228cf8997e246fe4774188b1d0a5094b0259c3fdc24a81d0e01e07391
MD5 cc23cdba1ad76e9a93398b372eb717e3
BLAKE2b-256 217b3e10c10713bbbcb5697a3ccd0b244d5a19548633eaaa387bb38527404ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6e4f13514ce315ca1f26177571f54a1893c512f802d8a1e774976f8e67b0c696
MD5 8703c9b2589fc2c2b9821ee2fc2704fd
BLAKE2b-256 7af596be984cf3b31b1be3f575eb22a209ac8c127d1c4ac8145ae61c48b1f529

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07d1814cbfa9cfa84a3971e8db9378c7579de5ba7f9fde9f7a82a2c13b93cf3c
MD5 f2243eb9524210e89a207980da2c525f
BLAKE2b-256 dfb101ee2bceb113580c001080f20ddb50f02e685cbe393336c1fd2db340e790

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b500c9689abe655c10bdc04b127f3c5ae1ea11db25efafe802993a93811a84a
MD5 3fb7004c0ed36ef90ea3a7ffb2a4e629
BLAKE2b-256 627467434c7f8d5106ea51533400ace468b456d08df543fd906fee7345fe8a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cb47dd1af424387e3094d14e497f46b2c687fa9743656be28c46f103ff85a9e
MD5 6cc744fc1ccfdf154bec39ab61fa2749
BLAKE2b-256 d95b6f164c940581d3f84004d0bd78d9ea4cda85ff8d7f81bac99dd8c4b7515f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84957835fd3331ce0dcd2fc72b132fe7fa7bf5c172956abe402c84d6ec6587f9
MD5 e314e74aa3f2037076dafc8736877925
BLAKE2b-256 2cb82a17c85e00e478d4ccc63edf0e4c3efeebf9d27140c496e86963a054e34e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 179b2845e6ea49f87aea15f0e4a7c2c0c5aeb6eda52fb8fe899926743fbed614
MD5 95eca9a57b52263382f432280c2e11c0
BLAKE2b-256 c3a73a554b4255b48e6e8f5e141acc41e874c74a6abc55c5ec853a3f4271ba5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 200db8d24344512c2f12d7e4eb93535d6ab3e997b58dd833a8609566a2ae3253
MD5 12691d80fb510ad265621ad9b2a0a16f
BLAKE2b-256 e4e1ac5522472fc4d69dc981c48d3fa6d35cbff70c07758b6268be8f62e33353

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b918e0dc21c67d7f2413dc24c0f6377823358e7e670f281ffb2177f5c7f9ea05
MD5 c17dce225831f1cc9f6a2d435cb23769
BLAKE2b-256 92479ca6f3bb77dba0ad80fadbf8d73b586be950622674ee9762d0ddf32c0b8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 034fcf9a980f094771f28ad4b1883d2d8d1fdc9413c1c4920b77a3a47efc0ad4
MD5 4f49c66cd13d1314acd49e62c0843da3
BLAKE2b-256 2f0b7052e794591055ebfb6f37746090888078ba2ce75525bc41adb228579d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58144a97e675fb52fabb7a827e0a3cc258de8e4730afec3e19ea781752ff2154
MD5 12f24af52294a5d6f9a04a28ee772bf5
BLAKE2b-256 35fc914852dadf685600dbb889744689c87a58796d502e439c76b632e024fd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6963359caa4068f3e255af3a912bcd01924b9ae410ec32afd4bbcbab547de8ce
MD5 3740526c42eaba90766298ba6134eb78
BLAKE2b-256 8b12dbdcf0e9d7a662d93541c89d4d994a1df775e206ebac4b15b505344e2886

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 376db6549bf00bb0b4e72e052ad62f501bd09b3bf163b3bac4f04eb71798833f
MD5 ecae526f5e1d12194b2f783ce1a95748
BLAKE2b-256 7951baac6cc7af92265b21fa2adee673c0c82cdbf5c2e8ffe519d6082d6ba067

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75debaa4d2d431738b92be62c2fde363b7e665911b5c0dd2870be0a3ca0f8e1b
MD5 fc684d90012bc787efca909f128ea293
BLAKE2b-256 869849caef954dd6622ffd1e63baa631d3f9c42a35c9cfd7bde1695c052f4695

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e35157da79ab96e3de2357b2cac957239a47992768b8ce59c12c3033b351542e
MD5 02b6047a5a3464bc6dd19110f2d27c1e
BLAKE2b-256 734b9300c0971d6309b1752289be4d0dc37480326d04ea31ee2eae6ff6d83a1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a50eea0496a04d2c4a84ded83e639f1571019215e6154d23de8cd70034c4add
MD5 d06fbb0fa3b1c2043d0745d21a0f5505
BLAKE2b-256 d80c43b0b985cab4d21ba92746800f2803a71718d0be09913e2539783ab5bd33

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 79503532fea5cc75fed9cb847660130582a3bd80e1cd1a358e14bfba2d4add04
MD5 1ff6c840146f4864746926ae31d29fa4
BLAKE2b-256 6f3dd16b61e8e1a2263c93720660dce3d544b176bb2c0f8d1d05c3b099e63ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for ripser-0.6.12-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 be6e732c5c3b7a20e37eb2b8b66fb522dfb8c903678bdc9b9aa69bba0936c6ec
MD5 4410ad2dd0cb523eff92ab436ba7919f
BLAKE2b-256 fa20bab271ab2ce122e93f089b6ed36cd42e16d885c4d014714afd5b29dc5b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42874c02ea672aff2002df8001458e574af4ac7482cae41a16d0e8f70a158363
MD5 d21c432e4efa47e5eda99ecc59810305
BLAKE2b-256 81f779e02d4f991c2d422308db7cff3b9ba4f1312280d276a5db73e5ecf7fd83

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8b52c8270afb4fc9875393cd8c36235d83cc1e2c2b04e06e23b06c46fe26ac0
MD5 cb30764231dbe784866677c7242aaac2
BLAKE2b-256 f25085f2374fba41e6f1ca90a039ac618764c1f62d2def21da1714cf10af5568

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70d0815eeb2c81fef896b6c3c6a93c0daf5d4e561de53d9edf7e142b2835d99c
MD5 fa6fcc604216d7c64d02cae629e975c3
BLAKE2b-256 2c8ac8d5ff36e1c828c1929ec8b5067da00afb9f1c68a1c5697d629f753e2aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7679d31e91279ac3aaad129045b202b8878874410dab8d64e3c445ab97dff945
MD5 29e108f140cf0f3bc5da48123d4616ec
BLAKE2b-256 33a6185d81538d22659d5a8c5f529462d3df952a31a71af1fe3a25845d379a89

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_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.12-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7edfe4308f2c7cc4f066640b4999eaa83f9af02a05f732e4971cc8e413d606d7
MD5 b63d953d5276952c7778ca4c93a60ba9
BLAKE2b-256 b5a3d9ae45d3662ea1254d36c02be8c7ce8e47d85d07b2407d0ef6d28689ec60

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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.12-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ripser-0.6.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c73563e52dad6f3e7c03695e2c66c3569ef2aae9cffecaf1b3f65102feb947c7
MD5 112ed61a183b543802dba2074a5918e2
BLAKE2b-256 3c4fdaf16f35239fbecb9486c328247bc95efb1e04e220f460e46e83c966f0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ripser-0.6.12-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page