Skip to main content

Wavelet Matrix

CI codecov PyPI - Version PyPI - License PyPI - PythonVersion PyPI - Implementation PyPI - Types PyPI Downloads PyPI - Format Rust Unsafe GitHub Repo stars

High-performance Wavelet Matrix implementation powered by Rust,
supporting fast rank / select / range queries over indexed sequences

Features:

  • Fast rank, select, quantile
  • Rich range queries (freq / sum / top-k / min / max)
  • Optional disk-backed storage for static WaveletMatrix (on_disk=True)
  • Optional dynamic updates (insert / remove / update)
  • Safe Rust (no unsafe)

Installation

pip install wavelet-matrix

WaveletMatrix

WaveletMatrix indexes a static sequence of integers,
enabling fast queries where runtime depends on bit-width, not data size.

from wavelet_matrix import WaveletMatrix

data = [5, 4, 5, 5, 2, 1, 5, 6, 1, 3, 5, 0]
wm = WaveletMatrix(data)

WaveletMatrix also supports disk-backed storage for large static sequences.
Set on_disk=True to keep its internal data on disk instead of holding it all in memory.

wm = WaveletMatrix(data, on_disk=True)

Frequency Queries

Count occurrences (rank)

wm.rank(value=5, end=9)
# 4

Find position (select)

wm.select(value=5, kth=4)
# 6

Order Statistics

k-th smallest value (quantile)

wm.quantile(start=2, end=12, kth=8)
# 5

Range Aggregation

Sum values (range_sum)

wm.range_sum(start=2, end=8)
# 24

Count values in [lower, upper) (range_freq)

wm.range_freq(start=1, end=9, lower=4, upper=6)
# 4

List values with counts (range_list)

wm.range_list(start=1, end=9, lower=4, upper=6)
# [{'value': 4, 'count': 1}, {'value': 5, 'count': 3}]

Top-K Queries

Most frequent values (topk)

wm.topk(start=1, end=10, k=2)
# [{'value': 5, 'count': 3}, {'value': 1, 'count': 2}]

Extreme values (range_maxk / range_mink)

wm.range_maxk(start=1, end=9, k=2)
# [{'value': 6, 'count': 1}, {'value': 5, 'count': 3}]
wm.range_mink(start=1, end=9, k=2)
# [{'value': 1, 'count': 2}, {'value': 2, 'count': 1}]

Boundary Queries

wm.prev_value(start=1, end=9, upper=7)
# 6
wm.next_value(start=1, end=9, lower=4)
# 4

DynamicWaveletMatrix

DynamicWaveletMatrix supports mutable sequences with insert/remove/update.

Trade-off:

  • Higher overhead
  • Values must fit within max_bit
from wavelet_matrix import DynamicWaveletMatrix

dwm = DynamicWaveletMatrix(data, max_bit=4)

Insert

dwm.insert(index=4, value=8)

Remove

dwm.remove(index=4)

Update

dwm.update(index=4, value=5)
# or dwm[4] = 5

Safety

  • Powered by safe Rust
  • Memory-safe by design

Development

Running Tests

pip install -e ".[test]"
cargo test --all --release
pytest

Formating Code

pip install -e ".[dev]"
cargo fmt
ruff format

Generating Docs

pdoc wavelet_matrix \
      --output-directory docs \
      --no-search \
      --docformat markdown \
      --template-directory pdoc_templates

References

  • Francisco Claude, Gonzalo Navarro, Alberto Ordóñez,
    The wavelet matrix: An efficient wavelet tree for large alphabets,
    Information Systems,
    Volume 47,
    2015,
    Pages 15-32,
    ISSN 0306-4379,
    https://doi.org/10.1016/j.is.2014.06.002.

Download files

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

Source Distribution

wavelet_matrix-2.2.1.tar.gz (69.9 kB view details)

Uploaded Source

Built Distributions

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

wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (914.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (931.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (909.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (920.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (934.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (879.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp314-cp314-win_amd64.whl (612.5 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.2.1-cp314-cp314-win32.whl (597.3 kB view details)

Uploaded CPython 3.14Windows x86

wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (909.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (928.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (999.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (872.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp314-cp314-macosx_11_0_arm64.whl (817.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.2.1-cp314-cp314-macosx_10_12_x86_64.whl (867.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.2.1-cp313-cp313-win_amd64.whl (612.0 kB view details)

Uploaded CPython 3.13Windows x86-64

wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (909.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (928.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (995.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (872.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp313-cp313-macosx_11_0_arm64.whl (816.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.2.1-cp313-cp313-macosx_10_12_x86_64.whl (867.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.2.1-cp312-cp312-win_amd64.whl (612.2 kB view details)

Uploaded CPython 3.12Windows x86-64

wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (909.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (927.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (996.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (872.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp312-cp312-macosx_11_0_arm64.whl (816.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl (867.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.2.1-cp311-cp311-win_amd64.whl (612.9 kB view details)

Uploaded CPython 3.11Windows x86-64

wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (914.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (928.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (876.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp311-cp311-macosx_11_0_arm64.whl (822.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl (874.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.2.1-cp310-cp310-win_amd64.whl (612.8 kB view details)

Uploaded CPython 3.10Windows x86-64

wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (914.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (928.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (876.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (917.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (932.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (881.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

Details for the file wavelet_matrix-2.2.1.tar.gz.

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.1.tar.gz
Algorithm Hash digest
SHA256 6f18fcfacafbd8e2f13aa1a7ce027f2e37d4b7bf5f6de295cc2cc11f9b15cf17
MD5 2ac0bb23cf12883453ca328d6403cc12
BLAKE2b-256 7fc1f7a8ac2b0c272ebf69e8043fc5e8e9ce8fb094b62ed7a57876495e122ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1.tar.gz:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06a19460f14a56784802639325158a9ba73fc8f776564cf9d30fb96e4059a6e8
MD5 86500a435ed1d73dcce071f98177456c
BLAKE2b-256 f78dcf1225726bcf2acbd8d1b6699b68fb8e6b64f7775c6b421da6cd29e918e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aad1a1f90b6b7995e9765b4a2bb4d90543f58bf0b6d581ab25c9c70afea5e91d
MD5 1a061f45eaa40950fdf5c5d26e7c871d
BLAKE2b-256 f73a59dd1185e067c36e4b4da5cc7c4e7c0c12e0d7a98c4a4101081d8bfe0bfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d492376140b51d9b6881b34dc5cdd0ee24c5c0f2d3bf4679f3c682090834702f
MD5 fcc4114f5df0c57b3c58b04409504213
BLAKE2b-256 e588833cdf767971bbce2ad61b8818b3985367362f9db4c0718bf82e94b5f08f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dc16eb3ed8f1d4fe9f135601756cd7ffd60d109cd47045a574c8c17cb237ed1
MD5 cf350b69ced4292d915a4e513e89ea7b
BLAKE2b-256 998e01d62feca990a00e1b8e725951f1ef69a9adb7393f7ea490bcb04e6bafe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8fd312a5b6179f4cfbfd5add261d88dded33838525e3a80a70a4b6a8306fc53
MD5 793fe8e154d986a6d09085af13e4c7ee
BLAKE2b-256 589ec8dc63abdebd94d799f6e6845f29b9799f4beaeaca151ba2ea4b4b3f3265

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf9ef4134331f2462049b3dc096400ba3aa47fdd157cc467d62f1717844048f2
MD5 60f297ae5e58dd72d4f721aef11d8efe
BLAKE2b-256 74b986a67215532d231c17653e4f7e59ac88f63b848abab7ccb9dcb6e680dd42

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56e69fc90883836d6529be480599102a9d4dced5a554045fd0f48ceeb110310b
MD5 407de3c9cb935e49d52b9c70766ac935
BLAKE2b-256 0aec6125e1b4765be960600f1014f6ce1f1044942c2d624e30a46fc65acb2925

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0d04fca58a517b64bc66432f7532fae726f95b5202bb30dbfbecc3707607b3d
MD5 9a0099e763d0365b68ce0ebef0799273
BLAKE2b-256 29466d903ca0a86f0d65a2aa6d24f16f4d4ee2c98cf8a92ddcbbac6473a98fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f6a9f5eff8f969d28a3586c7592f7e97286ff954f356fd54aa6a978c15784d9
MD5 63624687d16e36054babc44827340a19
BLAKE2b-256 8fa8c4cc28f974fc10e432b5e9c28977b9bba0a5450c7e35c33708a3043bac15

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00533e14293e347c66c54d09a804f7529d48c1d8748f1309ea6747906e3933b8
MD5 edda447e339b4bc3560d2d78f8b75ea4
BLAKE2b-256 9d2b84f5f2ab17628b514a16943e668cda411559bea0b6e02f53fd28385b849c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b57ec45295d624734580d9eecf2738f6db0df2d258ad0a1ffb5469602a12fb8
MD5 d2241180130cf34074e9b030e2724091
BLAKE2b-256 cca73ab5dc028cfd0e017915e3edce89d1974f6d30cede601c39c731f16915a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d8f8960b59419bba529783c89d2db90d95eca9a4fadafb6c4d4c397cef00b7c
MD5 c456ed725b1c688ea5348fafd495c50a
BLAKE2b-256 b38e7cbcdc6b1cafe6dc6c6b57268eb1d9e2c52c8d486a03b98bd42a3d25f7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef1741add8d69594ab541352964fad556f84f2df530328cc9f085b736198f6f5
MD5 0737d7c08541189f0428b6313c8c08aa
BLAKE2b-256 82527554005070c62ef7aa9b95d6e31e58d7001112eeaa0ee8f74b38f538d3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43ffa2450efa52911be1050cb10afb1350b0102267e4f6f7e69e5a3c93cf8bc6
MD5 94b0eb762d03a1e6d04a4ff31de87c6a
BLAKE2b-256 35fc078c05a5c65b7a3b6e4f4876ace88985aacb8387321dd3f1e01e7e1c60a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7dc04a2cd9b9c982b707bd0b35ea9a5173b5def64e279f72befe86d7c5ba372a
MD5 90227177097fa0e3909dc6b11f4f15f2
BLAKE2b-256 14cda622e5291b493911f20c3a313d385e59d2ec8a7f9a086e8522fdc91f9c0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8099f60036ab88d66343f83becda1dcd844ba620a2570affc4fe11cbdfdc9d06
MD5 1c4d35800c62c9fe8ac9a209d2d49740
BLAKE2b-256 0eea7e49be1bfe40e6fc5f774407c41fa8b42b9f0b8007b76fce06cb5b665622

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbb604d1c11cfb5bdd263bcae3a1f3ccfa2ad297e4679bc8e72150ab3dc90e68
MD5 f1e527b15c51ef8507571c0376117a5e
BLAKE2b-256 16d73f418d427d69aefafd6a66f421d7e97d22eb5b12fa422a21a0e86e4983b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fd677d3d3ec700634edb68058fff093e63a24db6891a0c144c07aae05a81976
MD5 e157f8ec3dd51391f04bc5e78695b3c1
BLAKE2b-256 9ee2153cf8c350ec072af2b2653e8bc2a1361aca28626db83add53a86b50f0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bd13c9ac45e1ec904f7e941e01bff9b2a63a69708a18433b24c8ed75e651ed2
MD5 0be0b1e65a929e1fb2956b7ed6d4be64
BLAKE2b-256 01188ca114755e580a924049ba9400643d803b3d134698966da4adb0b4cb4d7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae19905cb3b9e418c1278827b9302d37fb045200c2e23524fb2addd09d41b0df
MD5 8ff6c5564316e5e4f9d549b293a39483
BLAKE2b-256 59a44961617e7baea0c06207dc7b1b67b98cb24b1a881f5e4067a3b8c900815c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8f3072aab8e82046793cfc4e0d6b1b56e0cde1d9364598c16d99146c695a898
MD5 9d0e268a6e619494a36643db5bd03e85
BLAKE2b-256 7313a3cc0c5ff36f34416919ee3563ec2b0395d1b5fa3f56120bd65c92892010

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7291889c3466a3465cb325a1a884288f5a32a9af731922fe31b6ace9e12047b1
MD5 1486d9c8532d5a558618537403d39aa7
BLAKE2b-256 bd450fb76817f1575524009d7cae2cd3400d24b775e0fa9360220ed996493fde

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9851a064c1aa396c2d57aa133b9acfd3140bedcac639f837d633b10be161146
MD5 9e896ce9fef3ad8d3848563bbfd71864
BLAKE2b-256 33d108e9f2570e06cff8621d712fc7b2f29346c73213ae0e0e0e2ed58aa09689

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a8695c59e7ad7463928a49885cf983b11ca859b4667b0c848ef1cbb12f8c61a
MD5 cf724f595a33fc24fa53662ba173a8f6
BLAKE2b-256 6f5e5b714a5397e89023373a1c182cf198b41e5bbc15eaa22b7bca85d8c4a04d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3103c7deb75afd67b84ed45ff8ce541abb63a16e4bdfd262a8ac1fdc075af8c1
MD5 9d3e1f4bb082338ab2d11d99a3b10010
BLAKE2b-256 a500f9afba681bf2e11d1726f0cc1683eb3a91424d05ff50bb1666c6e229b442

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a2e3c34a43c6ea6e6fcaf265471ac925f79d585c3b601052ed7924f0dfee8deb
MD5 66be2e95337687075d14f720214ad02f
BLAKE2b-256 de64f907128cdb55bf7bd05130adf78244996bcf063b504f8d60e3811036bc3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-win32.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1902e2f6437639a0fa6657f3ee848a2dd64f2bb1daacbc7c73c18d9e05c1b7ec
MD5 2858c9d7748f7fdd62ea9d4d4aee938c
BLAKE2b-256 ba3bbf9c553297d15d3786db63098ce10e767917cfcc045d2707b03acc4a6552

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37000ec4618e59bb4c88d3d82626535de1eab60e7e81724bd4d70e2ab3bc9240
MD5 ae2f4a48990c1f5ab587de72b0a0056c
BLAKE2b-256 9e9560cb34866ab8889e31cfc84233fa25dc35f30f5f6a027b28713e86dc996b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fba37313580298077b950406354c54334218b02e6249a70438f4117b2d5421af
MD5 55ae4ea919a7a55971b499470e29d1b7
BLAKE2b-256 f574a079b8178fe8b7ffba32616e1202ebadfcfbdab997fbe8620a5e1bbf4209

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3119f88ec527d094f4e4660fe9b57d17ee53350e7541d23fc78940e39f6bea79
MD5 84fcce049c0c4cbbcf24a38a54b86763
BLAKE2b-256 cf7629f924674e55b540e9ee20ded32c2f5bf860f3b96498e29e282385a0af79

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0604902e1d5662f881c9261b0ca701b9e1fc83f22bb521ba972211d56697da5
MD5 3893a5fd8ac3304b482b3bec42249cd9
BLAKE2b-256 d129db31f870161a0743f00440bdd64e6bbbe036ba839674ce634223c51e99fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1f54f038259750605871e38e7b47bae26f86ad1359b290e91bab459c24a48e4
MD5 044fbb7e28791c14a155224654df17f9
BLAKE2b-256 d1b8057dd13ae5e3c605bab086c739ca917be72d9c0ff976913317df307b7ac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 865f52f6010fb5f95147f1919b74a6bfa464a91f08d93b6babdcb0453dcc1f6a
MD5 222c71c1accc3447e738b236c0b47438
BLAKE2b-256 40b5ae6b37a73a083bbe992456cfd5f3636e964346a7cab8fd3f77d855031e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe40105217b94862660575b00cfb36a792b19f58ecd44442f3b9c580dd09196b
MD5 51cdf5f670f7f6c6f002fef4c620421e
BLAKE2b-256 066812dd632c97ec9add29bc89be4922a4d4e73e9910784df4166345e8d006b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b52cfd19c601b569dccc7bd298e73c4c75e62c87164ffc602d0ac4488caeda8a
MD5 fa55ec803d7fb9d6040ada9fc458f45e
BLAKE2b-256 5c733690221cd75d0a2bca1efa4dbf3f504cc894b3d717d4d8372e8bf0df4e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d7271b935e1f64fb1a13fda27b937ea14e44d517990074e4e66c15ff2899b07
MD5 c3bb2bb75b164080c5aa623fbd495615
BLAKE2b-256 dbf4bce8e8ef80a7ebd0e0f49169965413bb1fe5e3e825375f8fa67a523d5510

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c953f39845bc34604b4cd525ffe9480b0009464124a5a78669de0159e7c46c3
MD5 aeefbf5d25b8a7b3c933d8baa25aeb5e
BLAKE2b-256 706d1ede988cc2acca93559d78da3ad2e702d5063cc152e7a6267fce439e7e97

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 697fa0319469af99de7a3526f85eb58b58b601af2610e39f9d6c11a7098cf9c1
MD5 c3d918bf291f29b33566e55f6bedc823
BLAKE2b-256 2bdab7b46972ea956654f5d8b0fb310a70e89e97188238b12e25a6fb592a152b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 edba2b1ae9a565acd022835d859b0acf68e4229f04574cb49c2591f644686f83
MD5 b82ee0cedf10b005772acb8e23a585a0
BLAKE2b-256 cab1b1935c4c101a148320e00e1de4a8b48b451bebc41d72d156a862fd4133f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df32a280b7af34f4180538ea57498286b62e554dbe919325fbaff491a9b7dd86
MD5 3104eb8f3e35e5b8f4a5090f71f0ff68
BLAKE2b-256 70e54de59deb5f1108b0f3fab6cb5370f7443f690d24771a5569fc1fd31d3a68

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06b73d0ece49ba6a12da3654dcbbb87f6ea5e657cdc5835005d7edf07c1e8ab3
MD5 a136feeb970e4cc17371cb0b65fad1a6
BLAKE2b-256 a6e016b672e642349ca659d497d52757f34391eaa75112284ea56e6278a0902e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b0ecf9e2d4f59dff2fb2738ab5261b8c3a31b9c3e741c318ecf623cf32d4441
MD5 251d9c3283fc25b8cf9a24a645a107b5
BLAKE2b-256 8c1d4a5bc962294620f9c047367a6353366c01a0f468dd54453524936de8d53f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9dbc9f1c62eca7c9392aa1e05afd8ccac08eeca0e2646036720f79d186bf866
MD5 208bebd8922d9fb74b7a84021b3f838a
BLAKE2b-256 1050a5628a6cd64bb11863d3f96b8d8a9c2352c7cf189c7175f579def2e7f246

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48130572a8debdc87608b53097a38cb58ba1dfc22edc88f11ea78847b79308a5
MD5 8c9bd66a77190808d5938ff2a1b729b1
BLAKE2b-256 1b1d1930f40eba5bd397a9c7a89f341289d03026151a9e956eeba3bfb1d54e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4244fa41fe000f204d248c5e4e2a0f2c5b49045de7c890f3ea4378eb3df52f9
MD5 4ba2ee7f1c9e318c559b1fb6d4231e4d
BLAKE2b-256 02c262f9026e5d73ce7a796a3d8cb01dd284bb2a3503519246859fa9ee4d537b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11b4470e05f967ef68b5d306c7dc57f569440287718b79187c3d6accf271ea21
MD5 d97d5ed7da2fde37c1db9f46601bc0be
BLAKE2b-256 60d3fc9117ac4574db5039a1af24150121007f057f0a1bee5a5ea1a05516935a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6cd8e782a16a2e51f4c5f9a10b11f8569ae13abca176cb00be6076e0ce0ba88b
MD5 553ee6bdbbcfd2a5d8bc35e710a66ea9
BLAKE2b-256 9a9488611d8de305618962b4ea07d172dbd665e99adc45cb1043537b42e8de75

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93a1db59c434d7aa007b3eaed3aa1126436acf8ae250cdb0fb0cfca36fea6c8e
MD5 2ea708ae56ef04450a82bb007395e2d7
BLAKE2b-256 0be5967b2d300dff376086086788499a1a9fc24d0907c9ed27e391e89cb289bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20ae63af2bd0b6b6e5d174f63cf42d2092eb25eb88e6de1bc31ced5a83d82352
MD5 5353fcbb259e24253438331295640f66
BLAKE2b-256 c1af9acbe9d77229383dcd680dcfd9fa657f522264ed32f3fa273d001d08e7bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d216a8d7203e6ba26092aea51ec1e6e3476c4df87c8ec17e8a2cf204e177d115
MD5 2bdad05c47d0bb204e7c719d85cf0e32
BLAKE2b-256 44b528e9ef8b7d4d2b1a09fb084b366a6dfb35fee76f7be2ffb2a9c151e11166

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d656900a1519b4e544db11af7df4ea07eef6aa3b7d86b8f5487998355e7897d2
MD5 9c8852723b46839cc5e6094ef8822ce3
BLAKE2b-256 8a851812416879e04ab612d8cb75df6e954592d690e29babe720858f162bfe5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcf7ad0b375085acc8e1e6b839a518ad77d68c64fef198f78a1b13fd0c241098
MD5 4f69650e10199467be0eec1222f15cd1
BLAKE2b-256 94319bb5255f0f9215a707fddf2c6e33565cc2f33cfdc47825077e70904fd87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d327273af236d1f6c675722b5d3e41d05913959728a9b26bd3bfdf671d58fa7c
MD5 e3527f34436cafa650b3a74ef0d327b9
BLAKE2b-256 192f7f7bc28d8f7caf1af50274e167b3f80374c66ef7a9281e5ed8ddb8d4b451

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bd9a6c9abc4774115edc0c8b564d4a98fac7a741c157e9386e447c8a95bfc6e
MD5 22365a94f6e7d5ad25f7d5b13f7a300f
BLAKE2b-256 4b994bda6e05afe5ea84a4f04dbc42572dc07dad0db1ed9ee2c14ab7d1c4e028

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d3dfa3f993a826971805a3a435c60217b626ff38ecf2134702c4edab0d8343f
MD5 10f207f31e6b80035181355d763f65b9
BLAKE2b-256 692db0d11b6b011d2b22253565a044e596778a811997fa17b948eab74cf690c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 280ab9a018ec203b24a67f7e3df1b978ffcf52159ecd377f6b3f43c817a75b67
MD5 2062ce572766b92014744687c49cd70a
BLAKE2b-256 be325f6f76b270b0fcd9d01284f3bd338c66e850042c9fc2d71cb80a8b9643bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 358fc3c09097c74e061dbc20b471aef87a631f5b6d434ed0487c213af4edd343
MD5 b1628ed7af5e91f8fb2f496f18db42d3
BLAKE2b-256 bac1a3439b1338a955b888216ed4752a924efa9509a28dbbd70a6f95c1feb909

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ce5406af0f6f711befcae418d90764eb33f6c011a540c1d3cc96c57a4107291
MD5 5d19d0d20c3c7cc3ba53967f82b021dc
BLAKE2b-256 e7e7d72f7246eeb2850b33aa41e8d0e40fb90a0b186780ce93cc7d5c700648cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee66f2adf264dd66b7b46d18461c910bc9886d046c4ecfb49c2cdfd09603f12a
MD5 3ffa589fc4a16f98bc9f51ab147e0509
BLAKE2b-256 d3ec831143c8c969cc397b11ced0296f8826d5ca5654139e8fa61509911f7025

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ea0505b66b169be1873fd4b56f0f30e7c4957108697146063f101278e4dfde0
MD5 3956c3ce391c795cb605cec9066f75bf
BLAKE2b-256 dd009db80ddd84723f94b879dcb3eda695757857d995efa02eb17fde41c64614

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 796d33580600d8992d34038b249995049db48dcf03f132d9e2af2ae93221ab35
MD5 228f2d6cc5a25d79ee3ff4ce18020335
BLAKE2b-256 255ffc451e769401e382ed0e23f5e0ce7981191bf22707d73fe750f9284f9f50

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81976f6d4869c9fbe5a1f7d909056086f68343c5c3ad7b0034e1897252a2cb06
MD5 13d398ff729c8540347708aff87edb5e
BLAKE2b-256 a08fa117c1cdbe69253330aaa3894f6e0517aebff9d4ead40b3e77ab8be6b9b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8dc51bedf2b5d6bb208f0c113d8738d8958500e5f50fce8425e76b80cea7a16
MD5 d4768e81bae4f6468bea26dffeb3a2c9
BLAKE2b-256 cbddcf0f8fea835e08a48dcd1e158a032181731fc73c98b720341f1e732dce5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df9dfd105b27c3b83fe71081ba3828f174a700949d2470347375093bcca7acdd
MD5 991919ffd8ea85568fd2507dc016f767
BLAKE2b-256 a9ea64a4a7b12ca74a520c06fc36d41b9973edc7edfa5f2295d6a9131111322e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 296856c76dc7334fcb8a01a1d1144fe6336988c6060cae503dd1dd48ca4759af
MD5 12216e917fa0877f84f81a6140a657d4
BLAKE2b-256 b274fcd86fc06d6617f72febae270ce132903631b4e3ae1b519a5f9e78704f39

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30c2cc65b214e431cf4c65f2f8252b23aea2baa95ffd5fb4f1c58126f0c4f6e7
MD5 d38c3074208c94d326dc1c1395d38eab
BLAKE2b-256 47c1fbbcac70fe60e6ed386d72b2086392857aa7b03c4fc5e4f2c04f30cfbd88

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f16cbfcdb0cae27f86642d44136b1b33c2c2fd469b498bb7828a37ce397ea93f
MD5 e5f9e4b813b1224c7384e3ef9f5b67bd
BLAKE2b-256 2292859cfef82999973f45570df34274c4bf32e185baddb636c1cf961633a589

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07cdb37c13920413aafd3b48177cade4b68cf9148baa75bbb63ff208a0f05f56
MD5 85a2c867b941cdbaaec3449a30bdeb1c
BLAKE2b-256 f0eef44c692485162fe65455573092feb3fddc2f763d036ac6aa39cc9bd89021

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16cdad467dd2c105ac7900dad28844cf4e102ffdac2262bbcd7d98f02ca6c732
MD5 34427d906897024ff0e47f5a90d1ad26
BLAKE2b-256 680ca86d404c62448c411c040e00e09e861d82bdad1410000c76708632486120

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f3e776458d5359cd9fe41ea1043937a81032f786b8bb10d18bb94d109a40cf4
MD5 ced00ce004e2762c82a186dd740cc67c
BLAKE2b-256 0e13475ce7ad5fca3e346544e7368f2f996ef73cc38cea476c24433f2764e13c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b682f69d0433b6a6f8ceff9e646951cdd2e9a0f887a1b0cecd0c64746cfdab90
MD5 ab4ecc6358e280c09a7d6d097ed72072
BLAKE2b-256 660917a0ec3b3ac235de3c589482a3894f638700066ff37a94dfc1cfbb35c2be

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 313033343e2808fd028d81c8749056130c357ed65009e37fde1da5edaeba9bfb
MD5 d71535cbeb05daf471cb8c2f493d9691
BLAKE2b-256 76475d052564ea58e4015c7941c5973db4c512bd2b65ae4e03692bb65f8bbff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58a74ebc47127b41261f275b807a2ee0543ba6c2bf85a003a4334d8ba046c9fa
MD5 d5ed0ff8845d8109564aaf2d08a9d0f8
BLAKE2b-256 a68946a420c38c1364b44561de391b88db3bc203c312a2807e1f73f3372db7b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 169ac1fda1e54ce4252d75760da1e03d8aa8ae81f0b954222fbd5af180c03c9c
MD5 e92e4edbded4d456f8e9093351a81117
BLAKE2b-256 c044d1b397cef827bf8b13107a634b59a55170411e1b79ff04683e8e1712da4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 748aab3bccf04b8576b0311698bc5c76f9a977f2d31f006b2416cc6bdf4706d4
MD5 2dc2cff6994d734f609bedb5b54651d3
BLAKE2b-256 568fcad75fafd4ef485f74b18adfc96bc285f3112e950a904a98bd47864df53a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4983117f8b7b171fcf1daf3c18851e92113768d808aa20d1d1566857fc05d1f
MD5 e53dd995d02599a15457cf95abfb18e6
BLAKE2b-256 ac6b353705caea91c83f327cc17f13b6ec3e0f0905b8ed37ec1e1ece964b0e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38dfa9e856b58737e06a4e3550c060022ee27dc3c00ee7f4d8dfdf8e98300ae4
MD5 0c9745ad20ddf03729a98f29f40a3ee6
BLAKE2b-256 a48447a0b091df34ed2d597f2568732a5ed706838bb12b7837e7b6c6ba27bca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09bc704b4474725b192bf2a5601318e22072184352ff4109b075da731ca4fd6e
MD5 3e8ff12a95b739049f2e95e877129cc6
BLAKE2b-256 ac87010ea6fb6601db97fb3bd2412dbacda347fad801246f867f0ed7e11a989e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02fed6d544edae44d824ff1dcbda6e94d2b3a6fc6160ae10af791fc0d7f73bb4
MD5 b5f6927fca8a62648a79fd5d9897b6a4
BLAKE2b-256 22d5d9299c3253c9344f408f0f3d36c488735c7a03db3b52f8994700e3899c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f5cb09b560a7fc24032fc2a66099c0757aa3caa5053b8b9e694bd985e393c32
MD5 905c4c6a7b042d9bc2d4490c91136a1e
BLAKE2b-256 eedec075f409c952537a72e221745a40415cbe1f53b68891928ba03f38d776df

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7163c2a2f8cefc0aae1e4e828b5f6cecb6194be52c94f60511cadd68fb72a067
MD5 90a6a779287ea269d7eab2f144059d5f
BLAKE2b-256 e6fae5cc6cdb5e9b172a83360974e88b9bf9d70c985f2509b1e5f6cc183fbb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf86e1f5ada750b61235c921806aa08e7cfba1220c4153880eeb9f3b9f34bee5
MD5 20d904a0838ecf6027fc7277b73efc0f
BLAKE2b-256 f9c1479a83a2930b9a68b0275bd8f2af0cfae625c83f3c211a97effae08f391d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ed57ba92bf21545fbb98c31627f5a49f6d7cfc529eab8b11e2261405c322ab1
MD5 74f3f8455df661e3c01aa21795daf123
BLAKE2b-256 5147f00ea8510161df46e6c32a3ce829d81f5f70aaf9b58c98dccb5817748dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bab442dab13f9195ec0e1952be5ca5dd8a802a6a914154fd511ed0f833cc832
MD5 04d0a6dd17b8a5f239a9555fbf136729
BLAKE2b-256 5154e85a8de04b7e562c4bd6088f3d1f2052e49fb39ded0bfbd250bc264d52de

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2530f9205340f36292f22edee523732bd0ad0e31c2b890902cf5f88ba9772f4e
MD5 282134b7014a26f120265877a74955f2
BLAKE2b-256 86f526e44152debb5d4ef71ef9bcc707942b69fc1ee3c11391e8e8cd2065966f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d7a8b389cf2891007f5cba9ebb66d19943f2406f88d6ca27ff1dcc3221d7ae6e
MD5 246cb5751a209e2b3dea0b7a3e619be5
BLAKE2b-256 da384fc5f929cfef4f1434b8214985dd32d6a398cffbe05941d543f1c747fe90

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d43d482e7d89c3c7d89cb43f64622510dfcb96f7505f9c1ba6d2951950f1eb6c
MD5 485b38cf1d305d26fbd6fc87facc3da7
BLAKE2b-256 9899900c02cd12831772999716d6d513f5dab5d32dd29f7d0fe4b967ef3b5d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ee8a9ca05bbec07d44e6d7c87b1fbdcf681c08cc7d83728af41b517c1eb3222
MD5 e0530df837bf5683f51664a8688c1d40
BLAKE2b-256 67aacd1143328e049b8a1cb25687b6bf2d4bec61170227ffb02ec462925ba370

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 108d6590ac5391116e8192c64b056585c4f417ebd729c04d06b340819f754423
MD5 31d4b1acf9f2c0fc47e8e9231c022eef
BLAKE2b-256 718f47bd6dd22444d6fcd46748fbc175fd0a6d12d6c88933f1c27dcf41a6c4d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa4670bca79583f89ee237b2f40f3c1b56e77700b8b338e107a4074c616f05ea
MD5 058f23fd4b64c50bb89150474974c022
BLAKE2b-256 01b58bb808bcf6ef5b3f89acf113e6265b496d6292ccbe7166a0a2c70f35d5c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebd01b19aa887d7732c1033b2bbbb817ee9b2ca0103357f5895d8bbe94a91c56
MD5 c46a554fd9b1dba86949858ea77978e2
BLAKE2b-256 3d65d2eb88f3b2ba31967821923065098ec1e85810e60aa788ed1d2d88c98e64

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19ffe10bd5264ff594932386b98f24757a2e25f92546f3deb0377e3de9ab1e12
MD5 b1e88e158e75ffad58c068f556c6d97c
BLAKE2b-256 df9b4bb843e78ddf8f57e2c2a189a1ad6ac11df6281329fcfb550c13404ea9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68d2c959cb1b33db6d1103d9629449529a3d2a96df197804e8242840206e5504
MD5 7335123878fe6e524675ce26b8af8e0f
BLAKE2b-256 9249cc207046ed57f93f37a33738016a3bea34dcd777fb1ba0ea4b201f6fe523

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbc18a2a2df8508f386caa1ac308be42711bed0bcd9f1264c2041f101d5afee4
MD5 9998dc04c81695fef9a685e7432c9cfa
BLAKE2b-256 7f83f3e60628981cb24a30e432adc0fbc2462d51581a3b35c9e9306ad5fd357a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5b7bec807f06be181eda53d3f07e63f123987c0026d75bde5effe437697e8e2
MD5 da3fb32c0f075bd6108d57cb2c6cefc6
BLAKE2b-256 d851435ad9b9218b026a195b79f9c87f8738135525c5064f3f2953aed07bd68e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3cd06d81dba11a4024c549c674ba3ad8ac4688cebdbd4c4b8014bf01dd8013f
MD5 6a7448e6b12c53dcdaa4fe00135f685c
BLAKE2b-256 2d25c8692efadc756d1ed8c36961fb50ca68ce0d2cce626a627e7a297dae460f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6b67198738f94ec3594534bf38fb6874df0b39fa8603fcc6dd81619dd43d5be
MD5 da57b814e07e137d63cf4fcfee4b4d9c
BLAKE2b-256 1cc4134f645a59e8fa901698fabdafe3124dde49dc6572a1e8c6cbedd7dfd20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

File details

Details for the file wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69d22e1c5b0e1377f2e98db1297af264f4695cb76717d22a2512eb22f4994884
MD5 8a4b61f74a479e3243b8fe00c5b09457
BLAKE2b-256 ee1570a8d5e7fb355e677e0269f40a0b9264a642d75bd0ecc1505001bc9444da

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on math-hiyoko/wavelet-matrix

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

Supported by

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