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.4.tar.gz (71.2 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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (932.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-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.4-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.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (935.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-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.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (927.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-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.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (949.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp314-cp314-win_amd64.whl (643.8 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.2.4-cp314-cp314-win32.whl (628.5 kB view details)

Uploaded CPython 3.14Windows x86

wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (926.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-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.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (946.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp314-cp314-macosx_11_0_arm64.whl (836.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.2.4-cp314-cp314-macosx_10_12_x86_64.whl (882.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.2.4-cp313-cp313-win_amd64.whl (640.6 kB view details)

Uploaded CPython 3.13Windows x86-64

wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (923.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (944.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp313-cp313-macosx_11_0_arm64.whl (832.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.2.4-cp313-cp313-macosx_10_12_x86_64.whl (879.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.2.4-cp312-cp312-win_amd64.whl (641.2 kB view details)

Uploaded CPython 3.12Windows x86-64

wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (924.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (944.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp312-cp312-macosx_11_0_arm64.whl (832.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.2.4-cp312-cp312-macosx_10_12_x86_64.whl (880.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.2.4-cp311-cp311-win_amd64.whl (646.5 kB view details)

Uploaded CPython 3.11Windows x86-64

wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (929.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-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.4-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.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp311-cp311-macosx_11_0_arm64.whl (844.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.2.4-cp311-cp311-macosx_10_12_x86_64.whl (879.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.2.4-cp310-cp310-win_amd64.whl (646.5 kB view details)

Uploaded CPython 3.10Windows x86-64

wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (929.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-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.4-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.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

wavelet_matrix-2.2.4-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.4-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.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (953.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.4.tar.gz
Algorithm Hash digest
SHA256 161f951a2113a6aca33e8db6572a2140c346a26dedb3e3f1943ebacc03517854
MD5 8e81fa8c77ba8a48667b940159154a09
BLAKE2b-256 63283f3bc73a91e85a5a60df9a265da228a5fdd38816124b0b2639cba3f50b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9dbbf20c7e979fe479ac3440fe1c44a0497ed693065af735bb70defbbcc2716
MD5 0a8022e30e512b438fae492f1174e211
BLAKE2b-256 b42d3818d839586e03a14a89ee29631683ea3da454e63b12751b04511d662d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 295bf863717e5f17eb3938f33f29b7cc0321873adb5fa7246b64d5c31c7e1157
MD5 a6d9309b3a1a0111c7893e006fb29c50
BLAKE2b-256 3e6968e4656eb37b3098b48b4fabe8935aa3b1822609440c0ab797e037bc1cf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 016a51283dac018c42385e62373a2d5e5e7c6dac95f24ca4a7bdd3b6e0410088
MD5 131da40e88fd70e440e3dcd9540980cf
BLAKE2b-256 6acbacbeac69d4cb71134dd21f355d494889c3b5620c14c80afc7814b8d2a79b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61f3f83689f443f8114b64d7b88f4f50289b05717f4d62595a9b146cd8212802
MD5 331742dbc76b553a9ec5bfed663245c8
BLAKE2b-256 67d284414c326e7c0dd5e941032dc71a9e3ee8c3f7b7be497babbc290272f9c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 862c3b532699ebaf840fe8f013afa33dde5fd9439a15b3b8673b99770fd1cfe9
MD5 90122863a6c86143fc5fda30108dc5b8
BLAKE2b-256 3c026195e4e92e2fe0597bc085e4b6d7af6f7eb58dbd4c5b8e698c6ecd782f5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb03ae2481ccf9290c3e55fa2ec744c5b665d9613dae9e9180999a1fc5f3e8f5
MD5 1e4c9e37fe189ac40f642338fa406f31
BLAKE2b-256 a75186e48cb2b01100ed7f1c3142d6e5052067f0d6d58e792e5a3368c80d6044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d96953af098141603f7198881b530ab2ae6ea01047e729e6b73e886338521e0
MD5 251320b0c45c3b8d1c0c4dd9d9bf3bea
BLAKE2b-256 7e17203122492ac165112b54246bd21f34604b74ba15460287a02f76a29142d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93e4b5c6a78f96e52c0c4cac74e6d8252e2523e054af9c866d687b1c23d8a7ae
MD5 ac11fe560e0f0678866a709cb8023094
BLAKE2b-256 ebe99da21073884a2fb2181555b7858918bee3b4c83dc923aab5b246890b53b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5f127c363601c5755e28c9db1d9848ad2bad788685eae07d4b2451bac7c288d
MD5 29a1f722156271d1cedf1c39e4c2b966
BLAKE2b-256 b4250c3cfcd76c4cf8246083512f41415d43769ab791bbb3e3765302b3e9c8ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66af595f16068a72ee8111aa347c8646cf75603be95d357e0c447d2f6ede0ed7
MD5 bafdd977c3824676504af6b44ef21a17
BLAKE2b-256 e0d054173e96939a1bd04ad82d0f79038c1b6c06cb463e0a245c68090e280537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6541706064b68128e9d7364797ec3e7d5d51a8fbcfc95d068cbe1a8f5199b675
MD5 6e2966036730a3ac621d49e4189c9683
BLAKE2b-256 e14ad44a966b7f1b51444c69485fff83d61cdb2c5e3166c965145cc5314c9099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a54f777c9d8f30baa2db67315e2ad2eafec20aa780cea53ce377195d8d036f2c
MD5 4433e601012ffbb9ae7429908bb67690
BLAKE2b-256 65b7bb65a867f5df990e443e0b9c371593dbf7ffea53e78238e961161cee4f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5eef95c71b4281ad77e9873fff5a23fc250bf3b656007feb2b3375f6dcc8a9cf
MD5 aaf8390eb6da6126e0aca0c54c367b44
BLAKE2b-256 fcffed0817418aa84f846912d592e7b13c25ad78a8d999c1cd3abf522e9ae619

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6b27d308b9bd611b3d18adf04f2a5281718f07e171e2b905240e36cdd398f2f
MD5 edae4f3bd90f0c67c2f9053381a9c7af
BLAKE2b-256 93bf1e4a3486962204deef57400b1b619b4217d12432e052ce6cca1813fd3e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8830541e03b8578800b6f60899ae8b79ce00330abe8b97b378c20ac133b58c29
MD5 289af9829fc1e144ecb059747e01898b
BLAKE2b-256 40e055bb4e4e547453c884b8b8c938494e1648fae9b82613e09665584ceff4a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4d70025d61796a3e356b66ce189968ce6bb553bade4c64589da6dd4b64a2dcf
MD5 027e71ee2ee0f5b87ff7c864665082fd
BLAKE2b-256 fe30a7e260cc88ca7c5a46a0d0734d384957b69fd5cc0edabb35a05257886aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 580f6763094dcfad84aa89b0270359ad48b9f2134a20c323b72c48497f872d68
MD5 274b1b81144ab771a66b7b8e3cf2eec7
BLAKE2b-256 4caa952c19fa66b51215def2f88492503c22ee15a1d28fab6aae496e48f60769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3208934ff0c1448f6c1edcdd788323ed34b2fdbe5923503dfb767c2994fb07fb
MD5 3d8ab90b7e3da105d6f32e868c7f9c02
BLAKE2b-256 61505741be7e05d3c6fa2a836387eab73577fe9e1984bf77907b132765bb5877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ff8177afc8ad2660a5dd8fa26963ade9d607ff5797a91035887ee88fb70ec9e
MD5 45935aca2bd5aacc860472ec6d0cc0c3
BLAKE2b-256 4350184c06cc08c9bf701e29375dc50cd85fea5f26ef0fabc248c6ac885f78f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5baa421d8d487da8cdc875b715f40f5fa7e005e1cc7c2c38feadce24f883195b
MD5 787f3426527de3d48ed2c622f2726fd3
BLAKE2b-256 e7ec03543822c122f409182cc3c6819a6a608c816e526803c0334ef4f119baf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f81a5001fb67f448815aca68dbbd92f586dfa40a861e38a890bd575e3ed13f41
MD5 cd712384dbc6e8e6e689fb835164d59c
BLAKE2b-256 143e46e9f12fd62bc04ea15b736ebce817bc5280f20be1f6d0d75fdbf9f516cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae3e0a23030afd799f784e5ef7ddab2a3a919a1ac695a795b7e9c25903e63495
MD5 b6b4cb1356277135febf1b53445f31e6
BLAKE2b-256 279f9993d8a28a4adfb706f759c93ef169baf7740d343c224596272c46e9b3e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6d25a91f351e2dcca2769b19e4ab91de06be8e3391d32d7979072863e261fdc
MD5 a9560c619e0f6c0ee0bac74316b1ad05
BLAKE2b-256 aed6cac2e4af7326c875d4989bf677011b7684fe439eedaf74baee63e0828dfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f609c9e268f6d774de6bca07b3a543d27e9dd6b76cbd19c87624dd6c8b78709
MD5 69ea1c27d532ba04f531f7a20cd2bd78
BLAKE2b-256 02c8af1f21dd515ea72132728b6038f50c15bcd8f6cb930d79387c11d9943672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a336dc86ec79ff867487a0f889df81e4fcbe1c4bcdecd09e31eb3134926b7680
MD5 7567380e0131849f1b677011ed8643c7
BLAKE2b-256 fcf05192eaa7769d79394329491f046bfafce9f1257c5cb7ddbc3b3e5fd1aae2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8aba993e6569bbe80442ea495879071c645b973f10d7af3ee429463e6bb551d1
MD5 e9e1c567823b94e7ef486957ff695535
BLAKE2b-256 1519e24a4a9eb53b4a2f292418b8422ac91b3299c2946834a706b8d4c2e387e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be47b0811b85003b6c432c9d2e7cbe6da2ec2da78b9defdbd3c87928d12ed7ae
MD5 9e57fdd414e775c63d685f4d68ee43ec
BLAKE2b-256 9d7101d44a7518c7cf65d7116d226a9fc52b199b6e5d2ad1e0e8cd78c9f4a16b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13f25a7af0290681a5f891aa9baedd2f3a3b171b49c21b208f91e6bfa7fd02e1
MD5 fcc3d500d99839f3be5c99666ca889c8
BLAKE2b-256 c39a38176eb13a549f735c2f68dc68ec20f80cd3ba8f91ba38bed2ee4f8db99d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7b815f5e2c0fbe835f2e82222bb98bf830c0f1844cc36d6affe212b5178b660
MD5 9149f135ffef710336e4ec822955db42
BLAKE2b-256 4ae4db4872cf2c1038be6b282ef73bc02aa16c5459668fae00709a11bebe4f67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbccecb5b4c6ebf7164d6067d9a17ae7b8f67a4c728045cb368ce4d02ec7a882
MD5 ed29ed1a9c6086ea7535e3f5719ba9e6
BLAKE2b-256 b8110e1cf5d3ca3497591b494c76a6f81c52e54e6805f031ac6422d356cff171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a82bcf4d869f140293af4e9d1a8f13a14503c0d5987384d7401382f562fe4ec
MD5 290c74c7b36ef11b9142f44deeb7cb4f
BLAKE2b-256 2b929bc42b96232fbe92192e2f64f1051b3531cf43912dee5cad4742ddb8a0f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7af82af88b8d1f182d41d0571ad8fe047b88b9bf8e16e3106113e46db5b20440
MD5 bd90c96f5b6d6bb20a06ae5c52a5ebbc
BLAKE2b-256 4c7db0749b788df93ec657e33194fc42e99f22cf695fbe6dda19d33765c6c5d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e40156f62a9e4e01972fb26f3b1e75ce27815ba5ece8b950f2394e74be6d644
MD5 199dd7a7c2e4a38f8765ff755bd6603a
BLAKE2b-256 dfa2419f0bd5529afd1a3235b80dcd6d6af479b14d40bbc663f21b6f58ee4479

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b9d2a0c17e9ba644970f2f8f948d66cfb996494249bc9756cf19f3d375206a3c
MD5 cee2c399b72670aae6f470faacadf851
BLAKE2b-256 f8edf9b7e3d575b69386675533ce64d6bc016d9c389d6785f20a136b1f233989

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a29ca02aa0903f4edc41979b4f45250314db1db4dd88eaf593cebd853210069c
MD5 b48c2a9cd022c461059dc7462c2eac7a
BLAKE2b-256 09c4349f0a3b8c887cb4b523f7f2cb3dc8df6ca7c2504d2f1ebb5d719b7c895b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 682e8fc94e0599f631c9b762db29680fff45e70fbe8f8440cc0db626e7610134
MD5 d77ab7a39d21f5177d4267da5d91d538
BLAKE2b-256 290020649b4f6b673cc3c8a8275414782751f0a2b123464bbf90eab12a109d5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6d6041b2d1826b6e46e8ae986ff5ad28463b1594c69da648a83009088c20ff0
MD5 e37419727b0cbd486598dc487f7c539a
BLAKE2b-256 f698fb71d0f2f669e689790cb3134413f7c78e9c12f9f42aa7ae0cb7858eb0ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1262fa4899b4e7ef5703b1f7b6e6eac0f02d86ad78f000c4b6db38fb9b9b6963
MD5 7af47c57e7da51d24e61ed5253e994fc
BLAKE2b-256 a8b4421c070bbd371e44f44fb73ae5db99b83d88bf40c8f6f87b75620682900f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d7e0f5f29d38da792493d4af45932331d6430ff4613185c5b405f57171b9f5aa
MD5 9f920e2b9ab777416f3a0d3159863dcb
BLAKE2b-256 0d85977765b5504ae31a66626f4fb28174aabcf5c2aca261ff9b7b7ac4d5fd5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cf336e4f4de82111e70ba8cc938748f1342738ef36d343dca1987d215210dde
MD5 897634b40b320cb27bd58ac18c1c7bca
BLAKE2b-256 fdc31209a6c62e5e1ec562c05b87bb7e44cad5e75f058a12a51a6701a7fb8d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f90fd559f18252833aba5df6eaa05dcedec612330adcf9bbf8b020f245142715
MD5 3105fac3a58dac8f2d5db14c7abdf799
BLAKE2b-256 08245a151a46309f782d04d98d8923e76624a933d09a65e50bc976f3c9b18bd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22109507203d09f44d76d451cbc018af6026333b8d73c727f4394180904310fe
MD5 dc49d0636015781df408b850ec94d33e
BLAKE2b-256 29f60333f5f631d369b48ecaaa9e35e21e7c2cad892cdc04769a27c58263a7c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf6e330827d6a5362649dc9d95420c2038b2d66934a8dfa6c1df77dad311aa72
MD5 b35d0869002689ed390f51951fe1a85b
BLAKE2b-256 7c78b72df556f62cf4ead05bc41e3b3bae49c9409c2628defc25006ad92b233f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 803ba0e590050de4fb8badf4f9a22982e7223052c48826ad861f59cdfe37f117
MD5 4dd24f8f5cc7cd61e8811bbcff72449e
BLAKE2b-256 cf2ed5e439070ba89308608132f49462f4b1a9d82453e5d1b0bfa80adca4bcf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 195d3661e42bfbed531fa5d1be547dbb89025415630aa21db161b1732269df4f
MD5 7f0459b09a214a070924d3aff850b888
BLAKE2b-256 f0d4a4a641ac087e45557617c08e52dedc15349f8c0062ad60ff0f2d0195ecee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54f72f89b7fafae0afacf7b8d18be88f61995b8e2a22a2674648b969eeb1465b
MD5 6f28d323e2a49f12015eac22ff7a778f
BLAKE2b-256 ff5d807a6c9edff93c3502e18bcbee18c5b1f26a2b09c425e51d33a569f76ba5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f19720d01047e0ad60c25dbbfde1776190d2faf8fa8210e6db1caee8fcd30511
MD5 374d454d8891cf973e292c9b849030dc
BLAKE2b-256 633a5d0cbdc6a29ad85d12f638bb3d5f431b165ef6e1d36671e95b5850d2bc25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63ab8f76266a3572b67fff658d04676cc983b5180e84c7534bafacbd1d8f5dc3
MD5 b18eea2ef08caa8a16dfaddea99ad2dc
BLAKE2b-256 125c79d7bf9fd4ff97c3ca4b7dcb4ad04addfce9b047c61e41c462b1dbf8d5e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6276b49149a54b42d1f6cfea4fec73e497f6446829bf1bac50e138f96dda8413
MD5 a74654a63380358e4675cf2cf636ee6b
BLAKE2b-256 1455d009894d44dd969088c06f0924b45dfb9066f67b0fa617f3187b979f5e21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cb908cabad09629f944f286cfd7ee7d3ddf17eb7ddb92b493e28408b00e3aab
MD5 99c27ba4fa954aa0fd01daa2006165b3
BLAKE2b-256 d128d9d3f357889290b8ce1434bd101282a508793878875b5ba2edc8778fcdc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfa2b0e4db481a05c07bb233cd45847628bf20c858e84ccd0385a3cd3b09f326
MD5 0337893b0a8a36fbfd3a40157d4109e6
BLAKE2b-256 14ebb6befc991937995fca7987ce8bb89859f0275d161c308334a2450254709a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 891ed39ff167b3b2787b69cad959a6f1237479e956a6b0551281920a530c45bc
MD5 68d1d60401378b968f9e1c8e5bc837fb
BLAKE2b-256 ceb22ee96f1f95aaa6fef5c92674de6b5b1b8fb80e8561d06de8e6e772f3c980

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d4f8357a3b08a57b8f65e199ddd8029edd7c4ef12049fe0e424dbabd7551520
MD5 07cfa8b7acb632ca0f43858e1097889a
BLAKE2b-256 289a76025005181d3fbe1ed85368143cd0faeaac27705acf4e20b7e60fef6fe6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcfd14926bb9ba987a3773af6ac915278831e636e3e4b1836a968cb8f92753ee
MD5 20c53e95c28c497c40a9dbd0aa153921
BLAKE2b-256 8b7159bff60bffe6997a25650349fe2524a4354eeb528655fb6bb8b48b0e7440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c2fefae7781e69ba96ab436b214d227e7b3894c7417fd986a65d5d2a1450ac5
MD5 dbb7f7e65cc8387b27933dc1790d20bd
BLAKE2b-256 9558408b962da802ddd562dc3b54a59ee1071d1987f18811db69318cc9b01aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef4c2bcc827a8c2ee297da42f2f198792f69ee5b75626305708c63445b26e70c
MD5 47a793bb86c6f4eb85e6bea6155fea48
BLAKE2b-256 a9d776d6fbccad0463b49d202b8531748f83c4eafcd295182d7752f2d94a61ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70122f59f8060e477b3cce8af199c7ec817958142d622a7d226bb0238d0bfc5c
MD5 f12cb2f567d653201c1ce50a49bb19f9
BLAKE2b-256 15caff8c690175823f0327a1b8eeebe433035632bc43fcbe7df3ad710cc9c2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fe4983189fd68191e88170aae796053bdfacd7546603662bb90b71117d5fc7c
MD5 ef0022bfd0e84973b18bf583cf6a4f0c
BLAKE2b-256 167fbcb023e06ff61a5165c5c6d5c613fc12f855ca78ab495b0dac8b45a4be7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f477c9fafa611a27b7f0c66f54a7ebfde5b523746694ba917bc14f0ad72b692e
MD5 00a958ab1f666a74fd3789d4c69493c2
BLAKE2b-256 ceb5c88d510a6867effce65327baae8141bd7310f9afb24e7b64e586d444353c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93390de65fc5499be2ec4e5677c80523d2aa1d3a217e33eaa97cb2b11d619f48
MD5 1f6b433d76090538861b2b32f0acb455
BLAKE2b-256 3c5e8627f65eef406061b9fb7755145bfa65e1c9281c5a8595cf2c50bd079074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 edbfbf089d6698c7b7a1193ca860f560522b3cb72034648da18fe81ca8b26a33
MD5 cf6c611a222e17a6fc483fa28a723e94
BLAKE2b-256 f89a62cd2f7ed0e2425ed809ff7229fc64b3ae0a09da62bd103729cbf8cd61b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b12d1002dfc77943492a763925b2fe6599c74a1a20fbe8bef99057028eb5ceab
MD5 27c1ad6d3e26a49511359c173c71b44e
BLAKE2b-256 b6f90b349e05f1378b431a008c4f28f37f72a52d6c3eccf286f1709655fee2d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 015d5220b45e14331dd62af995c78cce05441113efce0e143edbcd9847d0f769
MD5 b95e0cbf6a15a1d391370648a92db63d
BLAKE2b-256 7e0a49927015c5b5368801d916ffbf314f150ff65db81412b9ddf4700f832833

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b008d06978f8a11b197b1c150265a0715e75497359f45138fddf66a4aa64f0b1
MD5 601db9d0b6f242929c134803c21c18f0
BLAKE2b-256 9b327ab944b0fa1bfd2842baf26b374f40cc7ace2e88bd998c10cced9ae1c734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4af11b6b644f31ad2b081baf72923afb2f8c9486f0294aa6ad192206d8308d68
MD5 924eb1259e5431f5027c83c160662f3e
BLAKE2b-256 7f01e25e06cf53f07a45f873504253a658c88d6a1711f3430b75ad12c9fd3d1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 442972934a45d0e9463527f537f3d196e7c2395bb8278d302961bd26cbe6e151
MD5 f863726a15961512c2e4db27a7697dc9
BLAKE2b-256 3efb8f96e3cb06925c2c5c8d601ebda95bb5a4fa7973ad1bf859496494143901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9851655e4202dd860a9c88ce0fb98dfcd08de28851e5da2eeee741eb65a228e
MD5 e3d75165c6963f51a9bb8b7f692ae7a2
BLAKE2b-256 669d72e4c17dcae31ac586392d50c68079671f63bf4ee23eef70336a5aade54c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69591637ab01f6368db4a0e13e01abceea9a175fa9bb7b0f0769b7018c5f4020
MD5 d4e63e08ec54fac7cf135aa2b5d3eb6d
BLAKE2b-256 783f89347c4cb282f0b06b7f4abc46721fb9cafe0fca58aa14442ff2af046f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aab6c4a304bf773cc586edef7257be6aa2791562cdbd268d3df7b7272af84a20
MD5 cde68fc1ec0828913835557881e3b54b
BLAKE2b-256 24577d6c3455f2d33ca5f05dfc72dfcc0b6746cb23a32841e480b84eb14b9f7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 646526368ae51ca1ed75321ae819dfc3df9bb79e12de1d28f08e7fe4927ce6c8
MD5 67cb65fe42287af62f2b5a7f9d6c588d
BLAKE2b-256 d2303949124f421b89b9d59319e84c669eee7150a66785ca89fb06ef3917c724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a55da7522c049f1574389c1c3a216d3db9a053d1b88fa37c264aacef028ce00
MD5 377d4dd0936f62e0ea7b256db5f3ac8f
BLAKE2b-256 6a8a5899180282ef1345f96d5dea8b9523276165dc7d5d255c3746102600ed75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08383666caf59cf5fab54be0ec21540e3033e55b10faa3747d6d498a2b970fbd
MD5 4019b7b8a9f39de8af485abd0fd469a9
BLAKE2b-256 cfafecf42711cc16746840dce726ab15405abdd05814747a3897182f8b65b608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af86d1a43a8823a028ef827044709953f8de43f7c0a5df78008fbb934d749930
MD5 39159b5554e50d0fae8009dd3602c72c
BLAKE2b-256 e691661250e8fd1701c9485e76aff51d427c287f3b38beca1dadda67bf171e97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0a1246eac7516ddacedeb17f5ffd729e643be50e59d38795110e75b462d862a
MD5 6fb00b5db6d1fa025a498883cbff0670
BLAKE2b-256 36a392c9552e01ec7eb0af65fd197330c560c4339cd960b93a0b7c88fcaea147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 825c4537e15ed266a22c8ffc64c1ba6efa7a7cfc57d23daf3085f6895be4d344
MD5 782cc68bd10799ff7d5f4afe7791f53d
BLAKE2b-256 ae356123c3d6afab094a61135526e85391449e14b292da0c96743c0d78d46aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99ef9f6a1082b949cd0f9d8a3c98513f5be3559ddcc18fa034b758ee25c639a2
MD5 5378bf158590dfb56171fd551a34b5be
BLAKE2b-256 ca699ecb04708ea5951edfa4c0004630cb34d5f90ae73752697cb256ba9d4c71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bae8b56f5188cc313cbc31a54efd70872f8b079f7709aba87d1004cef8b712e
MD5 a6338f0f9259ce7d37b03ef83c8192cc
BLAKE2b-256 e1e4417e74660b54829f85c466b74264a9c70997a9cff8ccf5e9fd47013d9acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a18bd67c9fddd8cd9ec022fdcd1010e501d9b4ac67f16d30f48cc6d15f0b7839
MD5 1cbcc905e53a6eeabef71bbab665ba90
BLAKE2b-256 6e9ef8a70eb3c1bee6de0188b2565cd445019a93363848b7236d7421985f6565

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1acac8c28321c8fbf2970b58e46ec642eb92f4eac3022cd3ab6b53504ab457f5
MD5 3a6054d50b9d252406fd9989cdbc5153
BLAKE2b-256 f7bfbe3dbdef249e499fc4829c648bfe8aa21f64811947c6eee41927832b9b19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e71ea4f7f7941e1c91987ce5bbf4d430771a37fa4abee7f1867e7ee4c38e9373
MD5 432a1e3e1df4cd10cd3b5084272b3c98
BLAKE2b-256 16c84fd276916ce12cdf7f65f8ef786e51bb810caf417127a1204a1d3b36eb1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75105e639e07ea171e110e9d486a661ca50414296164019e65d091e6a5136bf3
MD5 b943411f7ed8f951d130ba51e04e12f0
BLAKE2b-256 be917a180c4806b2fe51993002d28d0fde77df49b00b90527cb9373ea8d4010f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e522a53006959c2dac462f0f270983c38dd8abf1d689576f8f4b55fadf6e1d9a
MD5 f88946284cf72c1fc696f28efb6947cf
BLAKE2b-256 f422c5ff35d04dddf0422796ea6e1635978fe3ea90b1a431a86f7e59c9ac241d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 582accbe86cca52bf4caa739a26f3516f34147741fa69b99ba0b0b441f54d9dd
MD5 5163daab250cab6229461d10dc22bad2
BLAKE2b-256 169cd9e601a91f6f9daaa662f1735478cf4c86bc7079ed46ca5c26faa98fb0c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 632ffb6644c3aaa020da9352ee6eef070757db3fe66c11ca2c45ed7e67dab5f0
MD5 e52276bd0af401538f9277c1276d5f4e
BLAKE2b-256 b558899b24031465c2b7d6e5ded2e3b78e1ead99d8153a16e17d4167522e71ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b849cf958886755150900c79ec47fd946d295b94c8a8d1089f9f08032c82f7a7
MD5 642f4f1757f4d6c05037ee4cd922a0d0
BLAKE2b-256 6bdc9085230b8030928dcb3132ef0e5b3f3ecfaeea4ab071c250a825c3d97f25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c0fd38a226a3f9c20f59d8982c5746fe5e0b0e4745be3525c668b9b28f0ac7e
MD5 e9fdfeffa94507a8105a6015e3a4149e
BLAKE2b-256 29e204e6544b2645237caacaa89ba003986b48e4f9efa77079964872f29064ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dcd0026266db26856edf39e5f7188597c5bf7ec040cb5a904d08b4b42fe38fb
MD5 defe9c62b90c184d6c13553a9de31870
BLAKE2b-256 9dcc919f8a7cfcb093368e1346ba1b5514720398def6dd54ef13e1f87392fc13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a5567d65b418f807ea9ac791ebf26d8f24e9dc086844a48ac82496e81a63ac1
MD5 c717d5b809dd9667b0b4f26bffd3859d
BLAKE2b-256 129cafa520af23d244899340b5ff944079f1dbd786bba05a3ad478b0a351ac9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e00745de7d4565557cc67226bad6ac03c706774f369233f26b02e2eea9c3f00b
MD5 86a7cd42d6c3bacc9aa048a612ccd626
BLAKE2b-256 3a2b2305bac79193181a6536dda22d43a78714efd8e76190935765ad3dddc5d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c997113c1bf38e539ee71d0aa53375df98dd72ff46de61dc1ae8622c7f5685bd
MD5 2dec1dfc7dbaf7ae7b3a42a11c4bed02
BLAKE2b-256 5b1331d8c34ff7e1736dd18b595dca46f4a74818920c13205500eedcd61b7fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2dbc47d6bc674c111827caf0aac2268856a59768c2882bfd942356c7cb31c68
MD5 86b6d8dd7928ac4f9e98470be7290495
BLAKE2b-256 2e3266f12d9ebcb3de143b52a8e0e276734d416e87d430dd5fa5422fa9805b2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28b0b3f706f1afe7da44650492e9227e73e215435576bf62fb3398b8e3cf5255
MD5 f4b0bca2dcdc7f8b877fe662f4a62de5
BLAKE2b-256 5e5f3e31701473a582e937a309b744bb8c37ee9a941d44b6a9be961056f60b98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74ab4d1f722b2baf5988fc36950e9dd5d5ebf9fc8836ff8b263e3aa68c26f18b
MD5 40dc87907b5d348daba580541688ca87
BLAKE2b-256 d0131c9b93b916306c3cee25868a18b6930e89e8a7e1077162b359e7ae0e8fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c15fdd16e7908c621223d6becec0665359a0e054ae18c8289a77179359817e1
MD5 9ea5525015b664db7d4e91b297e9c669
BLAKE2b-256 bdd9447465e60cb1721cca8276f9ef3cc7157365c4f9530f7a438883d9a231de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2043cccee5c80473e141095f862164b4211b2a0d5fd2a0def82e8ddde383c396
MD5 8c134ec5f147db62026343c8061e3ea4
BLAKE2b-256 5a2fb664c48f27134d9cbe9e7a6864e9776171e5636037302d48a6212e5d60ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2bcf715ffb41e7978761fdfbfef005778191015d989697aa76188a6207f4b7d
MD5 a74e9f76ce5b03b1ba63ccc8345cab25
BLAKE2b-256 8e21e634203e28f3bac2c50336abf7c7e9d5648bb5a48eb3962e5faec58df696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bd4332550c914e19ff75cf55a31bd3eacda3363c39d18c396137076ed93653c
MD5 64d3e174136861ab78d0f1bc18eba522
BLAKE2b-256 59d0b9e1f7f4d5c6eaad3963e40bddafcb697df0c9c93aec1abb254593ef876b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95f908a7d599bf04f6938274e496a4157568d60f789b51fc631f3947ea1764b9
MD5 329a3fdbd48442edf327907e9df8f108
BLAKE2b-256 15ef7511852df5b293a6f32aac0e773731b8bda01392e9e62d9be53eaac8a014

See more details on using hashes here.

Provenance

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