Skip to main content

Wavelet Matrix

CI codecov PyPI - Version PyPI - License PyPI - PythonVersion PyPI - Implementation PyPI - Types PyPI Downloads PyPI - Format Rust 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)

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

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.2.tar.gz (71.3 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.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (926.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (953.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.2-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.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (892.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (929.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

wavelet_matrix-2.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (920.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-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.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (928.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (957.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.2-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.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (889.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-cp314-cp314-win_amd64.whl (633.8 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.2.2-cp314-cp314-win32.whl (614.0 kB view details)

Uploaded CPython 3.14Windows x86

wavelet_matrix-2.2.2-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.2-cp314-cp314-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (948.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (885.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-cp314-cp314-macosx_11_0_arm64.whl (831.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.2.2-cp314-cp314-macosx_10_12_x86_64.whl (884.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.2.2-cp313-cp313-win_amd64.whl (631.2 kB view details)

Uploaded CPython 3.13Windows x86-64

wavelet_matrix-2.2.2-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.2-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (916.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (946.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-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.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-cp313-cp313-macosx_11_0_arm64.whl (828.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.2.2-cp313-cp313-macosx_10_12_x86_64.whl (880.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.2.2-cp312-cp312-win_amd64.whl (631.6 kB view details)

Uploaded CPython 3.12Windows x86-64

wavelet_matrix-2.2.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (917.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (946.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-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.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (882.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-cp312-cp312-macosx_11_0_arm64.whl (829.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.2.2-cp312-cp312-macosx_10_12_x86_64.whl (880.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.2.2-cp311-cp311-win_amd64.whl (636.4 kB view details)

Uploaded CPython 3.11Windows x86-64

wavelet_matrix-2.2.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (924.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (951.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (889.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-cp311-cp311-macosx_11_0_arm64.whl (841.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.2.2-cp311-cp311-macosx_10_12_x86_64.whl (881.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.2.2-cp310-cp310-win_amd64.whl (636.3 kB view details)

Uploaded CPython 3.10Windows x86-64

wavelet_matrix-2.2.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (925.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (951.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (889.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (927.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (954.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.2-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.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (891.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: wavelet_matrix-2.2.2.tar.gz
  • Upload date:
  • Size: 71.3 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.2.tar.gz
Algorithm Hash digest
SHA256 da7f03e3b1025f6dfe1854b48a32621924bb14734912526ecc35568278ce1029
MD5 ecf92650597e2985a647cf8222c34ed8
BLAKE2b-256 16153159a113dd00150e07f83c286e9dae4228664b21813d5f3b312d0d09b313

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71bf3286735a412015347a8ca1133bbcec0839e1818f355673454df77aab524b
MD5 052c4488e73136463941ba75bdaf6cdb
BLAKE2b-256 4573aba54156dbeffcfc7b5699da24a84100c566bbe3456078cc015da7db2a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ef3dc41647221d4f8b1639ad456eb9707b53cebdd1a3af431919315cd24684c
MD5 298d029454f3544592c5ec39cc0ea64f
BLAKE2b-256 0cfb9d0b68cfc691112dd4355268e66b06b2cf99a803942b6f7fe97dfcc5cfce

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6bf20d87d5386643752a4a59570b7acd3653005c89b3f8c36db6214bcfb52ee
MD5 d5106224f0a702b0766fa36310e547f6
BLAKE2b-256 9bc854ffa5da7e2deb9291972d7d20d093d8e7952d2eb9d19bfa8fad4d9abd2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e95dbcd99362e706ca1603dd8a968293e469aa62c3b491560bea9ab276238148
MD5 14782a29da877b17fe89446a97ca2055
BLAKE2b-256 82b4ecd32d26c6b902c40dd04ff7d0f145f0fd41b6d6b1ae885fa5ffbaf8a313

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e79804b98f1244a5424eeff87d5012c7ef224ec378eefc4518ef0f63727ba2e
MD5 5957fad5ed87ac5c524e445c22240ece
BLAKE2b-256 fa29e70024a3510ed01e53db2a660d9d8be63219bfa2dfd3dd6f378098b4a982

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d010b684f8572b4ef078e1cf484822645b8d1ff2656d0152de12104025e0103
MD5 94a9995a05c890274b7d4ce840633d0a
BLAKE2b-256 264e408dd17cfe9ba02feefa537a6d79a8000132a1e51f36e049093100087f52

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8800680bc316bf2295a513e2d15e6cd01c9ae60c798c5bd3d2dcfeb2353ef979
MD5 34fbbc733dc46851fb599fa3da57d348
BLAKE2b-256 d70405814045a641916c491d0455233c2d358ed115c63bdd1e1e7299fbc18dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fad73315dee87f9297bfdc347e91525824a00393a6cd77672dcd95a2db4dd04e
MD5 37b29b372c5763b67b41196e05406372
BLAKE2b-256 1a66184dbb6571a038eeb81333d030e238ff8470ff44b87325be62238a471373

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a61fc64728a6a25ec4a87d9dbd65a40ad68cdd3c7886f120426d00321c01488
MD5 11c4d7429fd0833ad5512ffab555883a
BLAKE2b-256 14788028ad3209c6f8b45ce5f0b05038b717865ca0e1103e4b7d4cc764440d00

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d348519648860e4ace83eff85c8a81dc30cf98ecaf8d9d957085dc4994c708fd
MD5 8e94523b92644a16c1305eaefef74747
BLAKE2b-256 4bca5d8d6dd0f6e207d55ad5f11a7aa81747bc43e4cee65347b99dc08d93a7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcb58b8e20e68d7ebf96e83cd6deaf83a5930d4f6f1fbca584d4f00b75a5fc08
MD5 d2c09e29e5470b5bdba9c7d7a7c4be86
BLAKE2b-256 18a9a5908367167f807f4623e2cbca631e26fd8e356916ba5ce60c6fdb9d76b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56916382678e3731520ec2534ea02dfdbdabe1c6ee35e6028eb720f5baf599da
MD5 dd25269a876079271788dc53558ff387
BLAKE2b-256 edbdeca0e3d4fb1ab84824fa7e9f87bbd7ce8ef11247b1f267fa50f91924d66a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4d15cdc817a0b17fe28a11130fee88a4c416d44a36ec3008e41f1e05d272ba3
MD5 b15c784a75032bd0551bd5592960bd50
BLAKE2b-256 6c23474417adf788fc518f9fd6b04860aa5b943f7ef1bb04b2062dd68cfbf92d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9a8d26943fdb7f4a2cb70f7166670f7debb7430c30c73876d58d3dc9d17234b
MD5 c6db8e6810d5b5441ac7dfb763f81210
BLAKE2b-256 d4e1bae65b79c992df32905bdd80f0b899b0de9b406cfeb60cf116e0ffc006a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 843940c46124a9766bf4f27e1f28ccecb8d691ea7f9ea3d34f3b82c73c33d55f
MD5 7f10286a52e29c1c439775928b3188cd
BLAKE2b-256 9db9f04d4f5d30e11a2af5e14571092931da392e1849fd2646c2a36df8a395a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9749bdefac99949761591c65572788aa6bf4d4bf467889253e931ae0c85f98ca
MD5 c3c6df285e7d252374f601c873f0b12a
BLAKE2b-256 9d9555d4d2f1d088254fbfb791854333a86ae75d8b108a568872cb674c7804dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c5f82c18c3085446b0e5b518567a43dd040edef71225315427f4db08a272285
MD5 ca083ed8c0a48678248b376ff6d62ae1
BLAKE2b-256 6cacbed015751072c7a733a7a52f3a7b29221f2a16f382493442158ffa865a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38b90aeb168a0e06efb7434f235c701a4ff5727d0cd93a8afe08e58fcdd65cf2
MD5 2fb0bbd90c74e2c820ec4e6077913de1
BLAKE2b-256 e584321d0a693156b308ac41ab645bf390f84c4654739be72d802733785eea39

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c14b39ada3e63fd40feb15927f1525b03fc48ed810952aff8a3420c0030e7eb
MD5 fe1afa9b7f1be5725187f0416cc1954a
BLAKE2b-256 819a098e3651afbc4f1ec0d0edd5624f124f8a2d44f12e7a9aa1ff8401d0d575

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 928d2d953be7246d0bb45da0ef06dded30030c27a057dcb23c0cac74c1896607
MD5 3755840f82ad0cea71524762058a4707
BLAKE2b-256 a5a728b03ab80a5d334ec3c58af0067ad01976359a7bd03f99817c67efda856d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2e46a6aacb028121f8949988696809663ecc514fa448581bcb1acdcd187d05e
MD5 5c552416de505de83e2037d7f5e9cf1b
BLAKE2b-256 0770652cdbdb2c6c25179bfaf8e420422c865a35642143ba94fb5983d0ba9c3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0cd0896423024ce06837ea61a7e366da09bfc520a1bac3f6b106bd614b1d64d2
MD5 cc5dfa0d881959fc685c433e002c4a2c
BLAKE2b-256 70e7fde928eeb50de41c11d41af60c55e363c56c1f90ba6b2794ea9d87ad3f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 feba07d683fe52ee50341d7c6cac20749d2fec43103c9b05c5c06c34aa0acf23
MD5 ac6d5eaf05dfb41e9f5d3204fa8363d5
BLAKE2b-256 7cbb67d3574360a4a5efdd7deb48fb489949071998bd6fe8c224a57b178d063a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4353a9a60c4a74c58a6af100ea7ec5a5cc93fabe1687c22c4e1b26e4fe979e0d
MD5 0745418a9b1a01c9d2ac9908a1191d8c
BLAKE2b-256 38502703cc1d6c5cb3e7f35868d10015e5869a54f39f09bbd26fa5ad53e5dd2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 99a65df00b14fadf0ed5a8852cb2ead80e4baaba37ab674a13aa1bf33a86ab9f
MD5 43549601ea4430c068d84bf613464c6c
BLAKE2b-256 f7747611aaaf1f8a52c49d09f5cda4476e78f1f2a0e281ac111841a4eecf2c5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: wavelet_matrix-2.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 614.0 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a7d0ed79653f7bc9ddd263c1a196cf51b99b8225db4d1e8042a137a45008b0eb
MD5 8aaa8686fe7232a4c4e55ba178124529
BLAKE2b-256 d148d9de66568abf8ae7530004271d52f8de808757f91a554d0c9f4133142028

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e6ae88fe7c21c981f3e538477d3d1075b1cbfea465690c7385c6b60c53443e9
MD5 cf15cf4b38327841f5dba80f3b39221f
BLAKE2b-256 08f766e5e226812c7896c99af3b0a05924b00194a362660a31722f56c84bbd22

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5509f1d45dcdab25af1a91f76a11ac1de23eebf5cf4f7c9bd042590d90e1f66
MD5 26040dcc56d5ef556554f46777c2f4c2
BLAKE2b-256 f2b23195e401d46a0d35f1146f991dc5611f08de2aeabe73b961d9541bdf4b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e07a79d2c3ba37092cf9a1fdf34d3df591321e0c8f37483cc954b54e31f28804
MD5 12fea83546e83db31b6a4e93df84d602
BLAKE2b-256 7c94df62981e6f143b5ce0f0dca84c94eb2bbe9bcce7362655799bf03b5f83ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 808b19598dd418fc474128f89fc0522b9328d7c7188e0cfa61a2ea327e903ee9
MD5 882ae6455f1833cd76e01ab4d69f2aad
BLAKE2b-256 351c96342951207ce2dc335dfd3119867fccceb35454ceb909c68ace69a3071f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5262ee7d4afccf1486a36e3e61a2da3cffb260379649701a2ad6d0055ca9cfc
MD5 71b8135a97a0ef26769d79d9e0b5882f
BLAKE2b-256 3209114989e08b87488240f2a191d27372509aab838dcaed6df938c3a41c1629

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb9f100507679055f6df18e9e563ed2f83d855c8019424c6f1f8c57eb9f535cb
MD5 ddf3e273972c6a408b3a98930c3e22de
BLAKE2b-256 211f9b24f034a07d0d95f67d5b4cd9ca4eb254af909c8cf15312e4d02934fb57

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acd112e1fd938c8dc858d228e90702adf50c2094e20f50ca65de313683d94637
MD5 892057fdfb76ea94e695d847f21b71f4
BLAKE2b-256 c7ae1a900bf4f11ac1a65579817bbf27b2249f366612b2926f8f343d0e3ac465

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cc0966d0efd1ee7b7d262e8a9bf8f3c601de07ce0e8607e7341aabf29e3f829
MD5 e3bdc9b20bc99a41a8d7018072334f92
BLAKE2b-256 9cd19d6b697881240dddb601b919a951fbf61526a96d8934eab4d82af607c42c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c5259f5f18cb145a218c154a2e78d58d0ace2472b74237f25a1143b4784ccaf
MD5 210b0c006c41bd087ce0350523dc850f
BLAKE2b-256 d3a7816fe7d7304a87dda8d6c2ae7127b004ef1d93565c815536a52aba381487

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9fde1bcf0f885af32a1bde9cfd583895df75b848c3725dd50faa49e86bd9fc41
MD5 390e57e95478016bec896ed52f9ffdd4
BLAKE2b-256 67c1dc51d51f087af0ceaeac6bf958a324b161d9e9e7cc6c8a3d60b6dd53cc53

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0ed2382ae9677805837bcfb9ffc7e5e2124a5dc1fdd0adc219283e2a6e07693
MD5 eeb260300cf9db60cdabb02e8c6b5c7d
BLAKE2b-256 2c29f5b4374dd866ccd73383bafde1f0469b2f6dbd66c1a114e23b5f363358c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73819b5f1196a6b96cd1dea1ec4050275629ca110adf7342279847c038891d69
MD5 b30ecb5715a422e313252e43c2f2cf6e
BLAKE2b-256 178f40fb62ce8c1e080b1298ee1fe29da40dda190c582ec4075f6b84ed4792f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 701e9642ef8afdfb011a2b95a251dc24092f8c9c32dd6f124e1699d73c0e656d
MD5 676da4488a055e51caa8ad10488302bb
BLAKE2b-256 98cfdf50047186f52b9c21343ea5cd4d54a0c616f8bdcf0046ea5ca6e253d0a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a97b349b0ab5925963f10384597f52509af6f48ccd423fe7174ca74fe8d730e
MD5 a3f1af44dcbe1d0ef9496a878b360dc5
BLAKE2b-256 05e2518125391f9933966eef2799035a7c9cbf130c54c0c342f45e5646f368a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 88c29e77894d4c40c8b567653683e66102a89f6199eb76a5634f681a3d8e0e0b
MD5 fc7552e1fd2aa54115dbf5bf8fd2dc07
BLAKE2b-256 6ed0daab7ffa3bd2df735f3be28467da9a9622377fbc7e9ef286744da1f342f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1b4c0816dfbaa97a285d1d1343df8dc8f68dffab878d5db856758d482c618f5b
MD5 52ede3ae242680d2381e8270ed2fa94b
BLAKE2b-256 afbfe3381965684cdac6709815cc00b7135ae63d788f15a15d43378c6ff336a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b0f80729d3a321209d966d208ccc8ce84f7700882e8db36d9b44679d7550c30
MD5 0dc0c66cdb2b9c04201e32545d0b1839
BLAKE2b-256 8e90b8f4f5f1f09fba95eae0e73684954a6452eed5194060dbbd1faa33564f98

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18cc1c69f2dbbb2901f101ec786b503bb07b1f956f6334cad78bbbac8f1233ba
MD5 f6d0f55c7fd2e61afe424de549c11d2c
BLAKE2b-256 3698caec11478650e4856d16149251ec81291c241a824036c5abd9f8bdd19fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8499520174bf342f166b77b7319eca92f0491c83a8b61086caa522b3b9871e7b
MD5 4ac744883056a0b75ec34699abe2b962
BLAKE2b-256 b3053e4b177680405803e1b09a2af50cfe5735b4e14cd85a61badb7833f8e6b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce24bcac8d19ca7bc4f35b92e31eb8aa52ac2771568e5908baee4b4c9baaaf33
MD5 784ed8d18d77f38496f418a7b0c11f6e
BLAKE2b-256 cefcc5788f016767c217e51846367e5a8fd083e67b287939e5eab8695b278c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 58cfcedef6e723f7e12b0ea5f58b5af0303dc10699d4208e387f429f084aa0be
MD5 14f0ff407d07a1eb9515f1ebabe2d33c
BLAKE2b-256 e11c34dabd9872d0af54e52c81b29d2437efb17ebe9c2efb832a1d54e7986618

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e9b516b698289e16c7483a3c343efbbb5a5346e1e9d97427a78a632dd628332
MD5 fba4435f455b7485767504d476e28dbe
BLAKE2b-256 e3f9d7fc5b18cfa7ed6c653f16c9189799064efa348e7974abf3c1ef907cabd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dd1ff3532e158cc560dbd9e7bd81a8b606cf1dc5cc2438a4f33ec90404fa3ef
MD5 4c73608b3972d91ab8255104ea1965a5
BLAKE2b-256 732924543297e666a46c1ccec130d5b06fd1f8a882a1cefc2465fa9f67dba93e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fea497bd192d8ec6f15419e6f5e030a647c8a470e9dfe7c4d5e22c19455a9051
MD5 fdc19b9addbceb0356bb04c46a85e550
BLAKE2b-256 8e1bedfe3616c30c404a8018feb6315f644a599c079eb24340c26b07bd1eac17

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 475262f6965a0fc850d711f4224acce34c7f6f4c7e5235013ede5c7ced537beb
MD5 9129759e56c80cffb31e5accd9304d93
BLAKE2b-256 98f4a1bf9ad95a91909cce0fca573f3f0c3d740f8b4a9f4ccbbffb8fa49ababc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 710809f1bd1239045e0782d395ebd4b764f1bb371ba635f373530a2c86b150bc
MD5 8b01a6529406e022fd7970271f6f36d2
BLAKE2b-256 fe8875c640164a511dd69a1ae35c4f204121369347a5bbecb5fd74f4b3219746

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 689634d9b0554704ddc472114bf7cff6f0822a82b983b56675d43a09cce594d0
MD5 d6c28ee4d3c49ecd1b7f8c01477f9405
BLAKE2b-256 5945ad16fff63f8911d53c45b95db0fb8582ac0574bc0bcb738549581f4418e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4712d03a0033d51ddc60cf50087d66def84385d6c2d947bc734a9d069e24e24
MD5 06b6c40a9a7d37508761c48460222f43
BLAKE2b-256 311e14bec8d5b717abdb13705c45cdc51b54e7f6645a8e0b1167fd3956a32e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ef60fc8c73876f32f4489b08af68efe898138c468cdafec485b43880637c3bb
MD5 a2f2a5a468260c3f96eaa0c8e615a552
BLAKE2b-256 f4f42fa2552615fa7d2d87ba15a3f23003912cb3ceca38a8e4d67b930c760e6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 660d9483d5756cda183bab0d6973eb0d7605aa349cf17c91e099ef5489f5aa72
MD5 a7c5a385e593204cda767bd0d76667b5
BLAKE2b-256 3f6578d5b660512b733d2c64a48fa6d937ffb25b653a3a31bc6f2033c019c7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daa2cd0607b3284f23fb8b41972c486787427038234c9d4ced2778bf05c09cf4
MD5 8a45d22fe3360dc250cadd2320a78274
BLAKE2b-256 630cee2bf97e4a560bf0074b72bbaa0ff65d9253b262c6cc48f4dcd708dd3639

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1cf8a7f39d02b1010b0de21e916f0948b73cc2ce8cf0613a113dcc1802f3e831
MD5 e3cb47c34f8ed7b76562169dd1051b1a
BLAKE2b-256 ce91e764c81466edaf835d896757c99a244cf30bb5ca0983f0ae37a28a2e8b6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a6a578f6743904b54b14b1c4be8fe7ac2d147ad8d1c2ade1349849d6ccffea8
MD5 559702092c400f9a3f297ed048e255ce
BLAKE2b-256 c09b8cce833d5683f5da2c79a2bb7e0537bc0af61c96212a020d26be0c076635

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12c600c9aed890c0998f02dddb64c9e61b639a4bf0c2a0c3b624f941e123cda6
MD5 4f0ba14fe96bdfafea04fd2d3ff2f89a
BLAKE2b-256 5f4dc2ee79e41f6d420f4b379d51f547504dbc87f7cbb3e1eb33255ffed4a4e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3afb95ca7e071b4aebcdafcc9bef989e85525be90750e0dba69dfa3881cb6a42
MD5 a8ea4c43716e7a4c56364af7cdd69daa
BLAKE2b-256 d570f3da6348044211ca7ecfa797a560d9acdb1c9d1778d0c44e568c7b8c633d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ea95fb11ff24bfceb5e6da7cd57ce908b5ed9d885ff06626ffc58162980f847
MD5 d885a56ea74ece4a5d8e087afba642e1
BLAKE2b-256 3601f2a2ac926295d853f5f7f083810df41312d5d51d7b1d5198a296b3d07293

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0deb2513076efbeaeffc349117e1cc36d9b0bc699ceed22b58923a14af55ef42
MD5 c5fa26a124eab04fa83852df4c0af52a
BLAKE2b-256 307cc3fff31c2fd95b870cee89714d4becbaeed5b89fa3c119cc8925d0f7ea4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23229269f8bfa42642ae7e68d643dab7619bc0fb94fe03252c7ea6df42637ca3
MD5 0878d346f12dcefb7cff340050ede5ba
BLAKE2b-256 533d2263d6f1f71765662b1429553ac1c953bb7d118e5c99f86393f78e17334a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c52ad40c482e25fda13789a0371d88ba373ca570063bc2d48614b21b4f7301ae
MD5 bc202b1b6fa021df188904c0f6603dba
BLAKE2b-256 c5fc3f1c6b0bef8fc60d6b66847ed4152e58963f88289bc7d60e297d1cde6418

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71866f4a343d645b4fef591e1f91a18d9fdac1aa581b3c654f4de387e7fdd0b0
MD5 daa7cb34406a3a47f0c455747e0ae3c3
BLAKE2b-256 722cdc63a673fca3cef200a599d4790eeac16e031598668c28cef499b3d1c0a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9ce10d751dc3825be4d10dfe1b813d982ffc1607eed5d3888c86fb0635690fe
MD5 63dc60015e4987dbfa9e17001c0cfab4
BLAKE2b-256 b3136f98a04ee870091e385a877b6efc4c0ac5dbdff51a3d050b362c5f47773e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fffac4d76c2855f417ba541bb926886cd651a1fdfe4942a97457f81e3ede2cfe
MD5 15b609b79824f558d87d6003e9d23206
BLAKE2b-256 7b5addcd4ade082760e2e49cfefd014d81fd3db3a08e937b18cd448c0d309e8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f245f4ca3baeb6e5150ff54f4f8a4de9a4fc9b1858e48bc6a568ac61e5db30e
MD5 074bb686f924495d38759b82df4cea55
BLAKE2b-256 97ab47fcad3c81c849facb72115237773d2d975643e30904ccaf5ce56681e53e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82925b116ea7f841ebe2259179cdc6d5597ed184b3a370211f451f4027884cf6
MD5 a2ab44c753195d7f6082d138b225b782
BLAKE2b-256 37b95a4aad9846dc543398e5c9c54752668918700bd28d1165eaee4855140087

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 122baa1a856e33391384ca993790e8145c7046f83727d655ed73290f746ea74b
MD5 483d5d4c79776cfa9e8972ab70f000b4
BLAKE2b-256 f52d88ebcf087fc12a640bd31da3018cb9f2e12623e9140afd7869052d62312f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37f6ec416fdde6e7c6af530689ce6bb330b639ce394c5b3327c34428521cc011
MD5 b11d784602262ca3e155fd59795271b3
BLAKE2b-256 9954e79a220b6ba616be94081bc458263dcafb2251ad6e515b9f04c4b057bcd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e93fee6aadf298fc64355c53986791a49d1355970226bc4cd1304e7ad4519e8c
MD5 0139c87f4b84f7e9d73b4cafcf2f73ec
BLAKE2b-256 17fcdf691d736eab06bed4eff7d37e69fdace6374054d668094e8dcb8045a696

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7e9c7726b2b5b98e36237dd5253087f372918fa33c2140d4f8644f304534206
MD5 a91ac55db9b950879448a9cd0d70b8e4
BLAKE2b-256 54274286aac70bf5bd00eb4731c90b561e750d0157304ed8c0d91e51da60d025

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc2b5c1b024944cfd5fd3f6a89e25202d820be7c1b1a38a8c4fd65e7116cb79d
MD5 ecc36605c902c80b01439deec7601581
BLAKE2b-256 da048ed7bc3e37484a9a31babc3b74143edb74c80480132705885b22975d7413

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 948832023af43700423ca5d96b68f0382bef73f3e8d73f1a4d000971a7ed843f
MD5 abf955c6957cbe077aaf28e0f7133007
BLAKE2b-256 98610e4b3995f76d2f029bc61b1d72709426b6d0716ca58d2787ddc7d5d38786

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30f9097aab987cedbca00abc5ec5ac6378ff8fa310907e602a6af511da8aa50c
MD5 73340dc2c57a83dde33ff8e748eff6d9
BLAKE2b-256 b0adc48c4445cf9fc08fde1f8bb886779a8996a0626dcf6c9d15b11ebfe506c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98ddfeb3292d3e832f5c3a212dc5afc006a4f9773ad6958c8abbd03d347f6b7b
MD5 8192b919fe374458cb7b2190a0537d33
BLAKE2b-256 ae728efbf9004aa328a28726c866f0d28442c7cde5613b99f2dbe27e340ccd11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f6af1942af2ad8b48f0a1d5ff01ecdfc791e49bbf4956f930fc6d03a6c03285
MD5 db1f4db90dfc5389dea6a1503281f441
BLAKE2b-256 dd1ae05ace836f4531eacb8669de059cf3f907d61266b341feb187670acbaf77

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ae6707f598109e108bb5baf6e29de60973e2d798f12c81135172b5217efc1d7
MD5 ea93c369dce95e8d875c911baaf97067
BLAKE2b-256 dc66cd04fbbf2887b5cb15f5e43beabff4434ce992fcaae6349fdca8a229bdf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5667b8db90add5c56a7e40401eb7e9e94b9b1bcab1be2ddee05517d637b72c87
MD5 471d11010f6df3b47b097ba4c3cf42db
BLAKE2b-256 0f0df5bff890d5444a912f216c57b88f3b8d6b510216ee68f1a1359d783e7940

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b493fb2f4c603a957d49183b35ebbd0f04fa96809d7a81061a437ebebba42c37
MD5 667cd3c55de48e2b2174951669292aa0
BLAKE2b-256 ce3553097efa9af025b1b42ee1d27fc32b14cdc870276cc70f37a2922b15c6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e0418e46bd034e7d8c1891e1b1d84f442f77e481c2850c0d91476e747e4f2bf
MD5 61d90dfefb05e063e586f311434ace85
BLAKE2b-256 eb72e055c9ad850b8a204faff05c6fe46c6d499f97f74258a6993a784d06ce5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9efe2cd7cba7d46fe311974fbbcead8ee8e36e270f97e2668b902c984b9fcc6c
MD5 fc4ff57625a56a68e97551855c2cc5c0
BLAKE2b-256 48f48d991069ceddf7cb8d339e0ce4deaa2dadd43ffc29013e2f85d5b84d4d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9abe1223dc567c59188db6063d626a36f141f4f3718fd50a1d1044495dc5622
MD5 77c0fbe24283ff88b056ee4b5fb7bb81
BLAKE2b-256 bf40888a410f4e0ce532679e089d5008867557e65ffebe1887374b7c41e7f943

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 260cda0ff2de530e91d5ccb7f3159103145141a9a63e1266f23549fec4e02082
MD5 eeeefaae2ed4826de6002ef57d39fc36
BLAKE2b-256 5493b920bf61360aa6841bec82ca786e5c80bdf95af04a1687ba4c59f4c6e054

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1001fd3f5f673cc926c665d8297b1f332d48d6db63a5c70d518ce8d1f796fdd6
MD5 f27e7d4a89b6af37a7c21933f28658dd
BLAKE2b-256 4a53b340e2abb446782136d1a59a99e3caff56b8009e641dccc5234e7c4a9ca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bea65ece6351e6f9e2d9f0e1c680e755b00b91c1a70d54e3332c4571bc9d4cb1
MD5 ba61396d791a808d3545d6173444cb29
BLAKE2b-256 d5dcfebf5f6c98e9dfe78fbb672c2fe3a27153443f249c3ffafbec6fbe6d8ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 182879082315f706acc6c9d34df9ec0c298bfb6f59b25d5ee3082a2beee9413d
MD5 170d2b088840a681a672c136ef9fc9f5
BLAKE2b-256 77f94337ae583a4a8f156c5a1d4c4b0f63ca9373679a35e70ad76360ddf914a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0375e92233fcf5107cf284ca0311ceae0cc6e3c398beab05fb68d0cf1a52b0df
MD5 993374dee8ab691821f5d1d30d19e73a
BLAKE2b-256 dfe8eccb7375ae0a64eae3a5ab7c55d628ea7f47e7e0ee9760f99ef7a82db7ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 00810fed3bfc0f96d237af21f09dcd6647c1fa6231048ef0306cffd9ffcb1459
MD5 fd979e42ada657fa606ea7892cd39eff
BLAKE2b-256 8402622d1ae710c64c7b5344e6d2a0007b3348383d4c3f792da0928d43ec5d45

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97b7291bf6696164136539cf112a5867df7e54f07d43f987e18154d7c84afc4e
MD5 2bc8cdcd2125b03f0bc96fe2dd626a81
BLAKE2b-256 0f74ab2247da842b4591bfc7609211482e74ed3c2b852cbf468d698ecd8377b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33418088d5015844af5800b09e1b89b8899f86a9da03ab924ac121efb6546cee
MD5 1c0d30aea978095d7eda03348e40d60c
BLAKE2b-256 6b8a51d770be82edb6a8e1975167a07ca9115bcce1d714c94ad1541e7f257b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c88f14791af2f17e53f8b487b2c0ceaf1e64873f02f5a18ddb8137188fb6fd62
MD5 eec70c256a90f318a63ae6cbe6fbfbb8
BLAKE2b-256 6fc14d00c810ebf428e9dc2559a9dff872200cb4f049c050275beb616e5de39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e693587d2a30bd4631876b4c5bce08c789e9f5001d6f5d1c173128c08950f274
MD5 daa9cf23940235e983dadaea15450dc0
BLAKE2b-256 80c03ec0e336fed5a1b581cc4ec3f85f2a45e63cab439ec77adcb4ff63cce45f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f90b0cee69a91a401463a8e0072663f36608cebc635081e30060923d6935640d
MD5 615bf545197a95a16adbc5ad70815d20
BLAKE2b-256 11db5edd49870181f289e01a4edd0910c2fbe09a89a0f5039d41663219561740

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9753a635d4011721b6a47f828e488ec8cacd0da8cbebf88409e59b2b71e803dc
MD5 7359143fbd0ce6b22f0044140e7eb265
BLAKE2b-256 f9d470a80bfc194b68aacb9f546af225acbd61023da4f712c56410b5234c3cd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wavelet_matrix-2.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d19847a4bc95b538b12684e6df67666982080f198ef85e1b526616870d584fc
MD5 96bd12d66bfd628b473e64d6a24771ce
BLAKE2b-256 0ace5a897adbed0113dff90ec6a9f3187c7b6b8bd9354aea8e7e4409d1d3e064

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavelet_matrix-2.2.2-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