Skip to main content

IsoSpec

IsoSpec is a fine-structure isotopic distribution calculator for chemical formulas — given a molecule, it computes the masses and probabilities of its isotopologues. It is fast enough to handle large molecules (proteins, oligonucleotides) where the full distribution has astronomically many configurations, and it returns provably-optimal subsets that cover a chosen fraction of the total probability mass.

IsoSpec is primarily used as a library by mass spectrometry software. It is implemented in C++ (src/IsoSpec++/) and shipped with first-class bindings for Python (IsoSpecPy, on PyPI) and R (IsoSpecR, on CRAN).

Installation

Python

pip install IsoSpecPy

The wheel bundles the C++ library — no separate native install required. Compatible with CPython and PyPy on Linux, macOS, Windows, and Cygwin/MinGW. Python ≥ 3.6.

To build from source: pip install . from a checkout. A C++20 compiler is required.

R

install.packages("IsoSpecR")

From source: cd src && R CMD build IsoSpecR && R CMD INSTALL IsoSpecR_*.tar.gz.

C++ library

cd src/IsoSpec++
make            # produces libIsoSpec++.so

Or via CMake from the repo root:

cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
sudo cmake --install build

Requires a C++20 compiler. CMake produces both shared and static libraries and installs headers under ${CMAKE_INSTALL_INCLUDEDIR}/IsoSpec++.

Quick start

The most common usage is IsoTotalProb: ask for the smallest set of isotopologues whose summed probability covers a chosen fraction of the spectrum (typically 0.99–0.9999). The result is a materialized envelope — arrays of masses and probabilities you can read directly.

Python

import IsoSpecPy

# Isotopologues covering at least 99.9% of the probability mass of water.
iso = IsoSpecPy.IsoTotalProb(formula="H2O1", prob_to_cover=0.999)

for mass, prob in zip(iso.masses, iso.probs):
    print(mass, prob)

# From an amino-acid FASTA sequence:
iso = IsoSpecPy.IsoTotalProb(fasta="AAAPPGQAAC", prob_to_cover=0.999)
print(list(zip(iso.masses, iso.probs)))

See Examples/Python/ for radiolabelling, custom elements, binned spectra, and FASTA modifications.

C++

#include "IsoSpec++/isoSpec++.h"
#include "IsoSpec++/fixedEnvelopes.h"

using namespace IsoSpec;

int main() {
    FixedEnvelope iso = FixedEnvelope::FromTotalProb("H2O1", 0.999, true, true);

    for (size_t i = 0; i < iso.confs_no(); ++i) {
        std::cout << iso.mass(i) << '\t' << iso.prob(i) << '\n';
    }
}

Quickest way to build:

clang++ -std=c++20 water.cpp src/IsoSpec++/unity-build.cpp -o water

(unity-build.cpp is a single translation unit that #includes every source file — see Examples/C++/COMPILING.)

R

library(IsoSpecR)
water <- c(H = 2, O = 1)
IsoSpecify(molecule = water, stopCondition = 0.999)

See Examples/R/ for radiolabelling and full-spectrum extraction.

Advanced features

  • Alternative algorithms — for cases where IsoTotalProb isn't the right shape:
    • IsoThreshold — all isotopologues with probability above a fixed threshold.
    • IsoStochastic — simulate a measured spectrum by sampling integer ion counts.
    • IsoBinned — histogram-style envelope at a chosen bin width.
  • FASTA support — build an Iso directly from an amino-acid sequence; optionally include the N/C-terminal water.
  • Custom isotopic tables — override natural abundances per element (e.g. for radio- or stable-isotope labelling). See Examples/*/radiolabelling.*.
  • Fixed-envelope arithmetic — addition, normalization, convolution, Wasserstein distance.
  • Nominal-mass mode — compute distributions over nucleon counts instead of real masses.
  • Streaming generators (for performance) — the tabulated functions above materialize the full envelope into arrays. For large molecules where that uses too much memory, or for pipelines that consume one configuration at a time (e.g. binning on the fly), use the generator classes instead: IsoThresholdGenerator, IsoLayeredGenerator, IsoOrderedGenerator, IsoStochasticGenerator. They yield one isotopologue per call to advanceToNextConfiguration() without ever storing the full set. IsoOrderedGenerator additionally streams in strict order of decreasing probability.

Algorithmic details are in the papers cited below; the Supporting Information of each is the better starting point for implementation specifics.

Repository layout

src/IsoSpec++/    C++ core library (the algorithms live here)
src/IsoSpecPy/    Python binding, loaded via cffi
src/IsoSpecR/     R binding, via Rcpp
Examples/         Working examples in each language
tests/            C, C++, and Python test suites
skbuild/          scikit-build-core entry point used when installing the Python wheel

Citation

If IsoSpec is useful in your research, please cite:

The Supporting Information of each paper has the algorithmic detail.

License

2-clause BSD (see LICENCE). If you need different licensing terms, contact the authors. The authors appreciate (but do not require) being told when IsoSpec is used in other software.

Download files

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

Source Distribution

isospecpy-2.4.0.tar.gz (125.7 kB view details)

Uploaded Source

Built Distributions

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

isospecpy-2.4.0-pp311-pypy311_pp73-win_amd64.whl (159.7 kB view details)

Uploaded PyPyWindows x86-64

isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.8 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

Uploaded PyPymanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

isospecpy-2.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

isospecpy-2.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (546.4 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

isospecpy-2.4.0-cp315-cp315t-win_arm64.whl (154.2 kB view details)

Uploaded CPython 3.15tWindows ARM64

isospecpy-2.4.0-cp315-cp315t-win_amd64.whl (161.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

isospecpy-2.4.0-cp315-cp315t-win32.whl (155.2 kB view details)

Uploaded CPython 3.15tWindows x86

isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.8 kB view details)

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

isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp315-cp315t-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

isospecpy-2.4.0-cp315-cp315t-macosx_10_15_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

isospecpy-2.4.0-cp315-cp315-win_arm64.whl (154.2 kB view details)

Uploaded CPython 3.15Windows ARM64

isospecpy-2.4.0-cp315-cp315-win_amd64.whl (161.8 kB view details)

Uploaded CPython 3.15Windows x86-64

isospecpy-2.4.0-cp315-cp315-win32.whl (155.2 kB view details)

Uploaded CPython 3.15Windows x86

isospecpy-2.4.0-cp315-cp315-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp315-cp315-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp315-cp315-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

isospecpy-2.4.0-cp315-cp315-macosx_10_15_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

isospecpy-2.4.0-cp314-cp314t-win_arm64.whl (154.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

isospecpy-2.4.0-cp314-cp314t-win_amd64.whl (161.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

isospecpy-2.4.0-cp314-cp314t-win32.whl (155.2 kB view details)

Uploaded CPython 3.14tWindows x86

isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.8 kB view details)

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

isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

isospecpy-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

isospecpy-2.4.0-cp314-cp314-win_arm64.whl (154.2 kB view details)

Uploaded CPython 3.14Windows ARM64

isospecpy-2.4.0-cp314-cp314-win_amd64.whl (161.8 kB view details)

Uploaded CPython 3.14Windows x86-64

isospecpy-2.4.0-cp314-cp314-win32.whl (155.2 kB view details)

Uploaded CPython 3.14Windows x86

isospecpy-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp314-cp314-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

isospecpy-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl (546.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

isospecpy-2.4.0-cp313-cp313-win_arm64.whl (152.5 kB view details)

Uploaded CPython 3.13Windows ARM64

isospecpy-2.4.0-cp313-cp313-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.13Windows x86-64

isospecpy-2.4.0-cp313-cp313-win32.whl (153.7 kB view details)

Uploaded CPython 3.13Windows x86

isospecpy-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp313-cp313-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

isospecpy-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl (546.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

isospecpy-2.4.0-cp312-cp312-win_arm64.whl (152.5 kB view details)

Uploaded CPython 3.12Windows ARM64

isospecpy-2.4.0-cp312-cp312-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.12Windows x86-64

isospecpy-2.4.0-cp312-cp312-win32.whl (153.7 kB view details)

Uploaded CPython 3.12Windows x86

isospecpy-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

isospecpy-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl (546.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

isospecpy-2.4.0-cp311-cp311-win_arm64.whl (152.5 kB view details)

Uploaded CPython 3.11Windows ARM64

isospecpy-2.4.0-cp311-cp311-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.11Windows x86-64

isospecpy-2.4.0-cp311-cp311-win32.whl (153.7 kB view details)

Uploaded CPython 3.11Windows x86

isospecpy-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

isospecpy-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl (546.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

isospecpy-2.4.0-cp310-cp310-win_arm64.whl (152.5 kB view details)

Uploaded CPython 3.10Windows ARM64

isospecpy-2.4.0-cp310-cp310-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.10Windows x86-64

isospecpy-2.4.0-cp310-cp310-win32.whl (153.7 kB view details)

Uploaded CPython 3.10Windows x86

isospecpy-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp310-cp310-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

isospecpy-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl (546.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

isospecpy-2.4.0-cp39-cp39-win_arm64.whl (152.5 kB view details)

Uploaded CPython 3.9Windows ARM64

isospecpy-2.4.0-cp39-cp39-win_amd64.whl (159.7 kB view details)

Uploaded CPython 3.9Windows x86-64

isospecpy-2.4.0-cp39-cp39-win32.whl (153.7 kB view details)

Uploaded CPython 3.9Windows x86

isospecpy-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

isospecpy-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

isospecpy-2.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (196.7 kB view details)

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

isospecpy-2.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (184.1 kB view details)

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

isospecpy-2.4.0-cp39-cp39-macosx_11_0_arm64.whl (506.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

isospecpy-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl (546.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file isospecpy-2.4.0.tar.gz.

File metadata

  • Download URL: isospecpy-2.4.0.tar.gz
  • Upload date:
  • Size: 125.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0.tar.gz
Algorithm Hash digest
SHA256 2aea43884fce5da77694c8f51fbed7dd663129d92e677055a56fd1206878861e
MD5 052c68b52e4eade6e094577c058126e2
BLAKE2b-256 ab6e3501a15a36db7f4d1802f44fde39422d9318adfebe6ada0ec8a9aebdc536

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0.tar.gz:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a35825eb8c11e06bf7e6d7b09fc9868ecfc42a7a2548db1bb5eece47a02f5b00
MD5 9efba13ea7bf232c9f712667595d7b3f
BLAKE2b-256 1a260a1a019ef31bd5cb89db441c6f9aefff337f1f2c8ed2ddc492a2420f33da

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0cfa7cb0fc3931b6420cc28d347abd680464446e1fcd5d216c9119c2ea617cb0
MD5 fbcd09458be5c21a8fee021601110bd8
BLAKE2b-256 b1a613b0ff8a2cb7b927cb5ef18303cd2222085c000c250f2973ef8a65f0adfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7769a57507008849508dabb7aa6d22b5b22e6573967f325dc5bd2fba74571653
MD5 b11469206f1826ee0e45ad57a762c16e
BLAKE2b-256 4a2d73d491fadda22283de9e51d0473e05a68fc70c9bea164a5860a5914f1612

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5915c09590d9bf3ab3dfacdb788bc857d076a8a7179d89aa67768e86883afb7
MD5 b82d2144fe6e36194d3f2ef37fd157d1
BLAKE2b-256 a89ec4e394c99b92987f3ae96abf75854fd5ea7d3154c7e347916b686f557595

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cef371ac1cb0a61d7125279c1c6010ae0f81e4e8b46c1c62fc74e4806b98ba61
MD5 b1f2048c374d4138c3b8daacb86f27fe
BLAKE2b-256 46c5c951d4510131ef298628dce8305ea14b9b8d727f6007d4b67f42dfb25f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 154.2 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 319a85d86fac6ec57d12aa482b25aee7ba5ee2c2aa89edd47b113cd304d732a5
MD5 76981b9c37e1b14ad3dd3e400b7e2633
BLAKE2b-256 03437d33fc1c3bccd3dd1011c13a16ae08301a40ec682a347ec6ebf5be01d482

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 161.8 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 166ba775205d8981ad8601eead7f494823d37a08cde199719226a9983c8b20bf
MD5 25257d2faa04281ee6a71535718beeb8
BLAKE2b-256 277e2af54e4439d57f48e64dc1e6eaf41a59d60f6a393fa2628b1553e6a22a34

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9f8adf2c0ac73ba985ef8556a0fd27639377a229a8bc2cdc595201a3ea3449b6
MD5 812a9298bcb004695e8597958494beb0
BLAKE2b-256 b2cbf036cc6bb6389105876162856ac94f4708bdd183a61706168eb9e368e978

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fb2a1f84c054cbf00dbedcd6204533e0b021144c98767b1581c9b22461ad1e1
MD5 2e66b2d6ed2de29a84adc2bd244f7b8b
BLAKE2b-256 36a1e1f251292f67d4ff80f501b5925b28163694104a240764d1ae4b45763284

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d97802ddb5a6445ce160e5db357bfa511a176309dc56e0de67e15891dbf182b
MD5 4f3ad48774aafe1e4c14d3b45765c1e6
BLAKE2b-256 0a878d16bb8b67501c2b547b49eff143ba790ebec1ac6f3ab9e8b8442dd97a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8bb87bf0e41fbc2176d8d49b6990d9b2cc28053bdbbfc99e181ff0b972170681
MD5 8f444f1b07b742f0a96cbd6473e5e849
BLAKE2b-256 fa3b46a68d84cbe24e6dc1df886419dd08fede34e59508af231f48d607f44c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a69ec1d191e7558cd62173cbc98e673412e7ea83d86ce175b489f5a70fb1fbd7
MD5 acc55da95dd4a356340602dd1bf6a26c
BLAKE2b-256 2a829c2ba03cc6ca8c5afdc5bdd5aaee81115c5d3e7bb4899ddb78403d023f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08a2074f2834d088a5648bee3c443616be71fd2b3e1b10dbeb47afcd8c39eb27
MD5 7fdd3bebb1761d7f3a47780c422cee93
BLAKE2b-256 3396a433dbaba91b82140e5fa1183fda7d99a8bb5a6e3d9175dfa58a59432f26

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 77462af87255c873d85deb2401fdf68947350a63c838a7bf15f3b0bf2a2ba6c2
MD5 e631ccb46db3228438c7b764a0d14908
BLAKE2b-256 6ecdbdb515273da4ae464453599ae35bbb6b84668f1bf8fa7f15328409bcba24

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 154.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 005ae201e44b5ee96e24121e632a107fc9fbea72a8696bbc0e8e0e22be5e96a2
MD5 08f741d05ded6c8d698a580c63ee8416
BLAKE2b-256 c2214833a9752cd67e1f7f692d4807d4cefc6c3c29864e5e79dbeb6a39a16990

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 161.8 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 6a554ecf3e5ef78b9ab12f9313cc5947b834876f1e5f9d2934cfc4cf36753b8a
MD5 7b2aa38c5a2c13b50b3c61237c6c0013
BLAKE2b-256 57b4f890a8f5b46120a65d3cae9af9241824e4846d2caa1d9dc3b411a7a66174

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 b6ea3bf962e0dd1492123b13ddb5008c01618d18a716b2fe8602dd90feac2c80
MD5 cd3c00067bc6059420670ff644e99014
BLAKE2b-256 006d7fa6b398c608aa5c3c2ca9ba4f35ad67fff07d10c6efa40cefb0ecb1f4d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ca9c6f200a219694c1225e001eb3c612a588742dce1f645535d49a1b78b6f6e
MD5 4bc672c4d3d82cd581fd60c4621f52cf
BLAKE2b-256 48625bbccb14cbcac537ff78d59e47756f2a80fd598d94569e19b56bc59b6c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ac7a9302e11b528220c3eb89df6dfaefbbaa064e05f813d2593489580c8bb7a
MD5 679deae9743e04d76b3023985252f835
BLAKE2b-256 34c4b6f78dd7017399843bd0933f3d9d5839d7c8db947619a488361376819dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32eb98d79c0bd5e3d5625cdf663f8a8c76b9f2bce34cf877ee8d158e103fd6ed
MD5 2d286aa96b3ff849d38c656d32d9ee9d
BLAKE2b-256 b0df0bff3cdc66231afae8c6beb83365e031b062c7a2a474655141408aadc2f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e23d4f661c445358c16c43cf3b2e9478e3900fad7c5343e9086fc0ddd5e98bdb
MD5 c95c34f3147c5dc37c5335d67d04a023
BLAKE2b-256 d2450039930b91481996ec7c654ffecf874f7828302acf1fa0987bca7e70dcbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67c4f2c520790b13d50dd9a0de6fc30b3d5550bccabf7acc8d3d61d15ed08fec
MD5 51270c60769cae69df93a2cb31bfaa7c
BLAKE2b-256 2dcfafcb3581398fc253ade9e2dafd0f2c282ae61797e802ed01013cd0102da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d913c8526351b5f15d7cbd4fac102493775eb9f2abed6bc3d19ed8842d64d54f
MD5 f16a112a6f906a56bb151ca2d38c99c6
BLAKE2b-256 5a8217d97fe406e440e4f05706ff30f064fa7e1a71d1cb124df061916cb37f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 154.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7fe3e478eb8f349edfb94e8dac514a4018390c9c55820225e9c781db992b50ea
MD5 ef609e9eb587871ddbbcbb7cc06ff518
BLAKE2b-256 2bd55cd47c38e31323e47384c2a67c9718870bd741547798b1a816cd81245dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 161.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 de2de3867d0d177a8806a39d23d40dad81a30b1994f7c144b19ffc77cc737193
MD5 76acbd4fe4d430570e971778350d9d7d
BLAKE2b-256 321b836aa5959179e2bc23c82542e9e5042fae2e2c066a8bc270b31b9ee2648b

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9bc85f4538ee0d87322af99bdf1a465655678fd6a73894306b2a08c42d5ad37c
MD5 d537d48c5bb0cf0120d7f4f2f92aea75
BLAKE2b-256 44a68ca327ab9d7d896627b2ec39f5b3e7f8b2f1d7145249969af3de77ee5fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92a2d11586a8b0dcb34f0c83d7baf25fa7100cfcea3e4b08e0c07faec4b6d233
MD5 b1dd25d08bc9f5f7f5bd1efc56f2bcdc
BLAKE2b-256 e7a51c16033c544298d200a08acc1403b7e0b0a40655dcd151d78f2676166234

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a559e77884e2f09d1f0e9a80b930821589d73bf1fac4f2b387240ccf3e761d56
MD5 2c83c4b028696f1e11748a836c0cbc4e
BLAKE2b-256 7caae9d3717b482fb5e04a39bee29ecc8cd61cc495298433b7bac4309b336486

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f9e26fcb144bcda50375ecef27b1efda84061fd4616a0d4b8f01c3adb275642
MD5 1709ae3df587a8f2cfb8db35a3afb94e
BLAKE2b-256 30a19e8b075d47b66998f620309e725ff103e93095a0cfa3b1c9354ab404794f

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a1e866f2960766831048e7c6db87182f4e6bbfb4037ab6987a26c0cb9470315
MD5 e9a13ea8cd9bbe30e30bb60e900e9c6f
BLAKE2b-256 d267998a6234857a021ee762544496cddf60302ef4d9ffa7d6d51aff27f5e6ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0ea53de11e94c2d0745eee1471a37d7b9f84344b5aac505ada4a2b6780fe6ec
MD5 10bab9295f02a20fa9bea3b4135518c1
BLAKE2b-256 bd11babb27a4116b9e2ecf52b6703ccb83b70ede9deb3a7a436f548b39ee5cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bca966ddb816d8e1cff37330f61a91c3de6cf773635f2d1fc84d9ce060e518f8
MD5 08e8c475eb7e772749e3f1626a25d055
BLAKE2b-256 52679ea0d0726a86f0c2d25971e8e54650690e3f3f03b4a88dcd9f8ceab81e01

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 154.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a9cfe9e91c33365130f7e88ad608282734326e9816eff10f61ac7b815cbc354e
MD5 7e6603f34eca0844e044c4ff8ecd9b80
BLAKE2b-256 e33fc0a44dabcf8183d48f2883a183a94db137d0994a838938b6393ddecf5801

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 161.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7912a9fdd16dab64b9106abfbae3af3cb6d456abf96b44db743981fb0d6f6a2a
MD5 3263d87d5ee9a424e5c0666a388d8371
BLAKE2b-256 419f56b2f604e78169289056e7dc8a6a949582d179e8e171981b1119aa14f169

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 155.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0dc67da183d9c6b461c8684d8de981ea40a0ae59475a46afc0e1698e8e3769fc
MD5 44cc75948e149cf70c0a90bf6b3887c7
BLAKE2b-256 b3edea79f3356ed5ba1d018956175b3df5aef5abb80e9193025913908711bf8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad618dbfd97271e67ab6bf0f05fe851f54fc7d3be1a4c8431303af0131c8a3f3
MD5 d4f368b94ebb6acecc84522e3e0d5fd3
BLAKE2b-256 80e078b217dffda489155add73949646f37569df7f9fa3b93f667b8b9359fd31

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f85e2735cd7b03f6f3f3c4403e925702ebd4a01148985c793906226e7677fc55
MD5 6a98940df42405b9f243f03e3be8c35e
BLAKE2b-256 e3eb68afc1248e0ecb154be2dd12ce6561337048532d86e4cb836bae5c64a175

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a1a331332fe2c7c8e4dcec6b07a72f2aad09212999af72cc4a59068e7347e3f
MD5 ac2fed89cdeb531536a9a759d646f304
BLAKE2b-256 770e76a9b7d988bcd39797dcee6dd42b3b3fd32b83496d43538ce883bc9a790f

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a19bdf2c3a74d9644bc777f531af95f52e513614dc56846942571186258a6d3
MD5 0720c5661ba03d39b0bbf398c3c434af
BLAKE2b-256 9052437b95de14b77745dd725a5aeec646694587147109200fede65fa5312a03

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb855578f14ca45ceb17e5613a912361bae37b00a4d0632fa7d5372b9e0bf12
MD5 82387534ae9fbbee4ed67e22c0454b4b
BLAKE2b-256 7d463219afcccbb0b1d5699335d0738ae16d17703311353ece0412e7b6ded0fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 55fbde0f899c82138ec50a4f02275fffd01c114a07257f39da04591304627938
MD5 fc55ab5164da94d8848c2b989153453f
BLAKE2b-256 a77bae0c1e33c693fa4ff8e944ad8c20f3984d0efa421359f7364bdb82dbccf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 152.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 062b7822ea87a5a293e45d3d319b70a12fd82eae9bd0d593759d66267bf316fd
MD5 adfb485368cbed9ce7e95538c5c4c2de
BLAKE2b-256 9ff8bc613de39d66d827dee922d306ba4c2fd7f3d6cf7edb3d694a2abb7ff0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 159.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05ba173856c377d70bfac65c8d32464036053b445558ef463b5bd3335750fa6d
MD5 3c95c167f440332062757d61c6adb309
BLAKE2b-256 3e628c5eaa7fa9da73d20fc8f524087a6bcbe46f15b0d1c03ddf95ae196d5c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3a6aabef90019b31ee265a176885f9d1b169422879f07f42d8a1249720a62f22
MD5 d2a6767afa26f06d32ffab71ca9cdab6
BLAKE2b-256 7af18aaf775a458af3fef6fd6110615dbe0605572cbfef111b91d6bf5f965775

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 866e25421676c6afaf6c2df93061e9c32bd61ad58e3da0f7fbc9093b9898e153
MD5 1d305c55d7fd7ed65ee9a8836d133390
BLAKE2b-256 1693d2afdac43fcf8f6bdb86a8b4da58c4e9552d8bbfd0531b30b112e60b4668

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72408dc4407008ce7162fc991c287649a82fcc8b7504cfd3a7ad954c7224e080
MD5 97f03dd4c065b5b4a20b2c083ab139c8
BLAKE2b-256 4fbd01871e700f538d21c47de9614140c7ad9e65620168387dc208aa5dc3911f

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89dc7389adf4ba471ce88d79a2a372c2f0767cb81938775092322bcd25a01625
MD5 9e59dcd607fae132c5547d49bb5d99ed
BLAKE2b-256 7ba5d6933cb7633a531681590e5f0eda6b606b122c904f45fd5f39d9f8987055

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfc75120ebd4d44c855e64928b36eaf1ef98e80a07cc2a9c7a48928318799feb
MD5 019ba417b8b576567c636dbfe3fcdcd1
BLAKE2b-256 f30cd8098a3e091bd2a698ac07118f8fbdf9afbe7572f2ac6a432f959e2bbb06

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e10681a4c37e39e943440c7016def59a5ed20c83130f0ebc83a303b0f052376c
MD5 f90c361446b9947b1208c642d874db34
BLAKE2b-256 0d2d2cdaaeca25e827a35a224ad27484438402c6fec8f3528cca34030d866050

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 685f592f9f92d5fec2e182389292a858d9bac2870c18d5f3d7b283d4549766a1
MD5 0ff98566518f2b18f7a89120188c8c05
BLAKE2b-256 5372ef6791d9aaa72c711a25e40669d0787407e4390647fb3106943ba679669a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 152.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c99e77e8d62db5377ff2680e53b277dfc6ee97710a61677ce2760722f13b1174
MD5 2a377adbbf15502c91441d6fa2b9f296
BLAKE2b-256 4dee593ef47208e054ff0ac31572ceb662e1f88c010cc8f93f9b43253290263a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 159.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 81c775afb7a4e828d23ff3352c3928226964cb1e41e5a472a218959f22bff7ba
MD5 66b9ddce4a6c94108163e53b0df5dd31
BLAKE2b-256 540abb1b0e312680f1d6a977b98139f86c2198f90660ec31f6c3b3c5b4af6599

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 45dae10874a6dc5bfd5c786a3cfe6216ed5a3d379154663bca9b020640e4bdca
MD5 578bef09987dbda752b5b589a7958eec
BLAKE2b-256 a960ed41e84f92354c654a94de5ec95301072fae7f19f5b42c862f157adf3841

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 282afd8c9a3e70a3f09ff445fa961d6b54080144148a405a38fc9da1900b797b
MD5 c83efcc057f073f184f389356b8f16f2
BLAKE2b-256 87a89501bc02d1a9681b5acc4db4cf5c9ed7eb6b83fb6f4b04eabd82e858f562

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d054a51e642d2614c7f09980335f72198e87e57f0a69f056c621093159c843a9
MD5 231214999a75ac9e712be3f5eb599bd3
BLAKE2b-256 c60ae660068574064264343126f155696507e61608572eb2ad688f40d53af680

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2a2efbd25cff82e9f31c45886cfa7e5e211248a93bf7c3de84fe0841cb762c7
MD5 c48311ed159d0375f820f8ae648bed0c
BLAKE2b-256 a65ebb30f26d82df9b9b18c146bfc16a326f0dd53f73ff8e9794c152fafc82df

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24a07bce75a099ae564e5a7bde2e0108a43d0b8dfa2e1232cd2e62ec4c7a1a46
MD5 ef4257f1d54675b6567131d7f5d91acf
BLAKE2b-256 9a18ef7521eb9d3e198cfd122774fede744680f568cffe294a19d0da22bc1530

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a6cadfdbf2686fce7e74de3780716d2c3f382ada3f9b3e8d6b9063fd62ec847
MD5 43a5659fed90ce145630ba122f5bae1a
BLAKE2b-256 85bb98e89a727ed481be1137e272a063a4a8d8a02e7cfc580f877c4ac60437cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b4ef8ef0a9b8c78cd5d3f7e919f50ecae4cc3506e274d656175b092da1d78ff
MD5 2b0837ce2208f0c4cb7f7fe9411c7739
BLAKE2b-256 7e35e679bf0e275037dc5ef5798f9c08de11e81daed37083bacb10e8284bd3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 152.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ee56266865ea25fe9b81d29bf410f9cd119e440d201ee70cb3f57507ea999bf9
MD5 f47e7dc287e83e92c713a26b6c352985
BLAKE2b-256 827d92e3a14261ee187b81bab38cf97d6264643aec941bba734b971d28c239d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 159.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46b571348e557e0bf695d9ac55b5001c8f8a4a243fe8e2dab85b4d0780b13fda
MD5 13e98750f83fb509dc4a9406d63321ae
BLAKE2b-256 dc7c6d0a43802b437168d9589bed1edf7eb02d6de8f0e23aa58b504d3937c4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0978547691ac135c385fc9c922ae75467b6c4d96c42178026fe3e1131ee5b1b7
MD5 fbd40e49772ce83361fae0a8be583def
BLAKE2b-256 0460c0cfe256c6eb034ba1fc65448451592c32550c03102c544cacf1757d506f

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6702b3d31577a6b230aa4a401a464b454d2f7e3f10c6b96e73edefa6d3ee5d54
MD5 6474ab25ade4e2e5bd748fb24042dd87
BLAKE2b-256 402f2b611b0cca09e381ec75fc08a4abd738be3583b0d4eb8428b8d31edd17a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7ed3da6c32406e15eae7445288bac2255df15eb5913ff3e26add2c1ec3a781c
MD5 e510dd4bd6795d2029064a00413fdc6a
BLAKE2b-256 7e57418b714d3935c0a2e13a35eb2fcdbee5aec1535948f3fbceb201a0bd66a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfdcfb39bd9ab41a10c4b73fc7b17c0c361baa4d35ed9d745133be8ee1dec3be
MD5 662407a69c083e28d6a6f8e68cf16279
BLAKE2b-256 72644ada568e0f931d3f676506c032b2d0cf7043f7ca80f5d7a72e5d6adad754

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b4823275b538ba10ac3d469a3bc0c5b9d7c6e7163a3aa3181cfa17f3952fda5
MD5 37796552a8a570f90fa42621bdf02332
BLAKE2b-256 99a10559d210d2be990540a437a8ac47014753382a0cc7879e7aa0fd8bbfa9cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f44ceafdbc9ccab50eb16cf24ef30d6f0c4b3e1fa1f3fe5854534e29b39d4ab7
MD5 bea00ee2a89bb0cf0dbd2ee0b651af69
BLAKE2b-256 6d57c555abd70513c972e8b6210cba9dba1faff3f99342594062d25810293ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce785bf1908928b76d79f621ae687bc1dfcf2ed154926d7559dc9b7a6578cae7
MD5 1ab126955ba5f61e58cd26364bf29840
BLAKE2b-256 a3636aa3e39ddd8836cc5c0e6e535b06b3125ffa706f9ca572623387fe18589d

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 152.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c4314c1a42bdd4fe06c75b44ae2f6267d11e5280110835ddc3fa23a164a8c40b
MD5 020e731b57316f6f2fbaa51c0e175222
BLAKE2b-256 6a293743bd5a5d21d214e7544acf5e6e62cfc46bfb664595d48990a9375e1433

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 159.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 831ce11001fc254b7e0361ade9e89957eea4553ad605f5c8c87536ca33e46089
MD5 2eb5c0c0b8cde5361dd6f89a2f66a302
BLAKE2b-256 9801e5a4771f7b10aefca20c0b5d1caf9b823abb608ca5dfadd80d99e37d3a75

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dbaa3a5212068821d7edfa4139c12770a9a08420cb8cfee4d54a31ae592d4050
MD5 c2b47e085ba1866e573ac7f35b2d73e2
BLAKE2b-256 033df2316d5050541ee622a29ca2b185e0c042fd839bc7297969f3ca3570c59a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bc45bf4b3c86f9f0983dad6b41832aa0ab42bda0913cc6b02461819625ebfc9
MD5 a14872581dec45dbf63dd3bb6f513d76
BLAKE2b-256 a402c6f5dd2fdd5f7d0d12ef848611385457f01f32f3f4bf7c79f7bc778defb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8af34d04992ed0f2f75cfe15809a6c67ec844ca913534e0d8e7f5627e6071fd
MD5 ed6f5c6feb0dd375bc62beb2037592cb
BLAKE2b-256 f9235c8f9902022140c66f03e53181245453b1bf670ecf3bf3cc9a17e577d277

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98c1696239a13824b8ae3e8dbd39fd77c24f4a8f8995d3086742dc56a33a1a9e
MD5 fc5956a60d92a6af475fa64a6a3758ee
BLAKE2b-256 32e93a25b4bb9c7ffd0762e52bcd3b43b5a9998468351a64ba68cecb15cf3000

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2db550a55b51a998b7630794a507480e325bf6cd7c4602f564a6678c8cb4bf2
MD5 a01a584e21c48b3c99a23b0e72abeae1
BLAKE2b-256 6be46ffa9075f8cf7a6d69c75965b88309d705a0b93f2f56a0dcd155028fbd4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13578d33cc7c7739560534395ed4e1b5f882023ef5ff6204b5bc04db2df96bf0
MD5 04a05235c6e310710f28b7434a611b92
BLAKE2b-256 774270c08b890ebece73a9f83e8614df239229587f924ed17dcb56219d77e513

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3d6280328477ea2cec011d4ad5ed392a3945ccae8399bc3a09d1034bddcc0a61
MD5 fd851f214418442d4af5120065b86055
BLAKE2b-256 10c634ec9905de7f474c23e8fe5a11b8c67ea3773108e304b485f5c2b1b37157

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 152.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 29c22bd5cf4f5cd0bcba8e9875f4ae3ae819152a0cc039955fddbd68ef88b873
MD5 df01c0609db8b1f9f9f39cafde67bb66
BLAKE2b-256 5c27e4db465146341e85d1e3946db4286eb3d6a44eb5f84e88c44a5406de5241

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-win_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 159.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc20a734368627893da39392e493299718401fc8ca82f9ea961f44ff99e51ecd
MD5 35eaf590d9adf168c4f78b65bc934f97
BLAKE2b-256 eb2952444a7ff124e20229c837f8ff8da0c1c41f11d87b476d432b9a036c2f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: isospecpy-2.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 153.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6bd7b5326231ab5e0c38cbd33c5c2974304102267da0a30863d2f6f870465c16
MD5 30ad2d57c27790974a1ce1856943e21d
BLAKE2b-256 81b538d6aba443c95c8a4b9075eade050d5f5bf1793a2279604fff92cea949f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 117ea0251eb28de0b4662e7bf21baf09908f4d9a461c4b814ba34aea22aac8e6
MD5 98caa9cb768675f8bed895ba6c9f5964
BLAKE2b-256 e2922d6da0732c6202fbee12faa24dd4251cd2fd4859c303f59a8ef7a62c0323

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b32f86899ed0ca5f2bed1e7fd501ae3ac7ca685ac7c38144ce790712687fb9c8
MD5 dcf059e451fd88d5f344ca245761770f
BLAKE2b-256 952f7fd1dfc1a1810aceb1d158a6bcb5dca323388e4249669e3784a47e4b33f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f260c636dc474ee71943fe3c794b43bd8c027dfc857c647703da839281bb4eab
MD5 ec4effb86200bd5da04090be75a86fce
BLAKE2b-256 7d4db2dab50d4cf608bba220567edb1dceec67a8339d6b4fc7928d3bfa74ece0

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d8ed2acb1bee859e5a52ca8dcfbff898d4d380b5f8bb95ad4e164da13bb0d04
MD5 c8d98ebce5e1581300d2fdbb4702ca6d
BLAKE2b-256 5f966430517e04a8d6511b28b59a6824803fd1d6e75c9d1188e04af31ec0a47d

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ad1a268759f8973220654dd006c715650987f6caf82f2dc03cd9e45b9465c67
MD5 64a7e6d92bf8323cbcaac166e5838bef
BLAKE2b-256 dc4bc25a05c1135f95f05919c2c85b76794bbd3827d13b57ba455727287bcff7

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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

File details

Details for the file isospecpy-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for isospecpy-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e33cacacbe963c7a3cb1832b0a584562fb1ac3784d86e99a00d9166c5a50d04
MD5 db2c939f5cef386695ca8273704119e3
BLAKE2b-256 dca3a893afeddb14fa89ab866ad06500e72a0fc195f6f3843e1f71c188c1bab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for isospecpy-2.4.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MatteoLacki/IsoSpec

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 Sentry Error logging StatusPage Status page