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.5.tar.gz (71.1 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.5-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.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (931.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (951.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (920.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-cp314-cp314t-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (948.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-cp314-cp314-win_amd64.whl (637.7 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.2.5-cp314-cp314-win32.whl (621.0 kB view details)

Uploaded CPython 3.14Windows x86

wavelet_matrix-2.2.5-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.5-cp314-cp314-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (920.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (941.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-cp314-cp314-macosx_11_0_arm64.whl (828.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.2.5-cp314-cp314-macosx_10_12_x86_64.whl (873.6 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.2.5-cp313-cp313-win_amd64.whl (635.3 kB view details)

Uploaded CPython 3.13Windows x86-64

wavelet_matrix-2.2.5-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.5-cp313-cp313-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-cp313-cp313-macosx_11_0_arm64.whl (825.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.2.5-cp313-cp313-macosx_10_12_x86_64.whl (869.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.2.5-cp312-cp312-win_amd64.whl (635.8 kB view details)

Uploaded CPython 3.12Windows x86-64

wavelet_matrix-2.2.5-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.5-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (939.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-cp312-cp312-macosx_11_0_arm64.whl (825.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.2.5-cp312-cp312-macosx_10_12_x86_64.whl (869.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.2.5-cp311-cp311-win_amd64.whl (644.8 kB view details)

Uploaded CPython 3.11Windows x86-64

wavelet_matrix-2.2.5-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.5-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (947.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-cp311-cp311-macosx_11_0_arm64.whl (836.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.2.5-cp311-cp311-macosx_10_12_x86_64.whl (869.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.2.5-cp310-cp310-win_amd64.whl (645.0 kB view details)

Uploaded CPython 3.10Windows x86-64

wavelet_matrix-2.2.5-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.5-cp310-cp310-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (948.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.5-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.5-cp39-cp39-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.5-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.5-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.5-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.5-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.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.5.tar.gz
Algorithm Hash digest
SHA256 e1a04cf825f9995a068fb3186c40ee090beaf301ea632241dc508117403d3aa3
MD5 d2a82c0af405d1a21a75942eede65b58
BLAKE2b-256 15ee461d5ab78b28bebf90b8762a1227e442cf8c8978643e0004f1749a45e14c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45efdc5cc78459e9e5d457f031b2f18a6a5710203f7344112769abcdcbb3c224
MD5 728d2670978d37148537d39219fabd13
BLAKE2b-256 98776c601f3078ac3961c7e661ffb4fa7233483140a3e4a6a4b5437cd63023fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b992a0a065aa194caad68dc9ff6814478f676e9690af0b7cedfd0886404135c
MD5 1059b7bc45026bcc1f4cb5c90e75d7b7
BLAKE2b-256 d235f6293c3da50107a7015c5c460bfe807a7103373c0430f0f67f5697b2cfb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a16af9f09137adee5273c8609a0c3aee06feddfd21d631d4caa8e8bfc79cce4e
MD5 bb12f2320bf36a32286091c0727e12d8
BLAKE2b-256 df25383f95847bc15f635299a35cbe70a7143c764e72f8039f4e379b256e6b2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a80229858b1b968af7dd5c4600182d69f3350676439b42c2f6b5a2bc0dcd846f
MD5 fd7d73a73b459b696129a54a6972d139
BLAKE2b-256 ab1e3459d6f353a8a502a8a4363d92fac3ec484f8c93ec4491d0b72d278ebe3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdcf4a67129353cf57143393b75fe3eadc15391f98b74a44a427ec2569a9e73c
MD5 3fe462b2edc5797c8a7315e585a9e464
BLAKE2b-256 3a07eb17ca027f360f86da5596b9817caa18394578b4d12d3fdce8877f842cfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b1407aa74791898eed196a9c52762e864ecd2a7b91a4df3d7592a885b04df1d
MD5 49ec991b518efb2190f3a8434cc70b70
BLAKE2b-256 817c7c8e6c58f64401d629cde1d0768cc48e3db9b518f147365cf66eaa1f0429

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0315d77b146539436de0b25b1671276c92bef9031ab09d29b4f8c373b1d175c
MD5 7d4d7e7e3038c32f8f495e75db3c07c7
BLAKE2b-256 0f77d21247cffebb0bbe5526586811a21484a833f5fd1ac6b64f229d91183f37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e340075458ebe9636520021e06b5ecef998ae10bccce5321ecb1618a7687ed7d
MD5 db5b110f17ad7e881bdd08c88cb83502
BLAKE2b-256 b6227bb9b38db69409315e282fa88d93c84f3cca994c860a3c508839b98d987d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07e1b40239ca055a20bbf62bd965a563db602cb7025cc17555b536b4cb7b8364
MD5 eee9d41743fc20b5f78cc1820d16a19d
BLAKE2b-256 b9a6bf19c47458cdf31f95eafd39bd12eabac103c7656a71fce5baba9efacf77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52fc09919c5503cdd3f7c378eaed9bedc546fbc9f4a9de18c56071dc70b9cf20
MD5 c397ed21d631eb5674cb864af1383625
BLAKE2b-256 420d47ad0607b1c4832af14b90ef9d47c7d6492998f202a373c6df8b73758526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8ebeed7567fc21b449e1bf5f6ffd35eef5769b59a245d8d377b95d444ab6084
MD5 82004046962c41bda2a5b2b65900af22
BLAKE2b-256 1a815eff21a99c24944805bc67e3870703082aec39fa22c0160472766660c97a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 05ef4cc188ea765f910c97937cfe451f423b214fb47341c598729b9b838e89b1
MD5 869f39c54869bdf60333d4e70eb5cf15
BLAKE2b-256 962343a6f8f03315f3e3d2594b51c3079cd8b0a1661eda3034753e8df6a445a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f4745ebe95e7ead30eb011db3ad2c15e5fc79affa5a0eee7fd72e97b3086312
MD5 fb269b7d8ffde517adaacce938f1097a
BLAKE2b-256 842176d4086bd995507364b8716f6ff3b46e6889e8dde5554e6b2c9e673beaaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f2f7044ea87ef7f9e1a6eb15043ca81fa59bea97792b91d1386798eb4ccdb12
MD5 4fc09324a45a5b50c9ca5b1d86283cee
BLAKE2b-256 1883206b0f4f5a150c44db72803bd5cb7674e3d175398846c8d7b3595da57ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb2c8610ca0d19beedf4dd52ebee9fc28a8b69b2c18076fa0342b0bd3963183b
MD5 f0c343bdba92a1ce49d64bddaf09cf6c
BLAKE2b-256 b58ca5e606cf534e14c4fbaa3e1feb3531e898fadb1c540ea8f7743a54d3b11c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44c8f655df1991db7c164f3a109ffedfd3bc37c9c174a16ea4bda18bb2d98984
MD5 699677f63fbb247c708f17790d6b6eaf
BLAKE2b-256 257c8b2427b1de0b322de28ab1dfa9ccff82e157d63db593ecd6088f77509171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 afc204c495c2d516aa2bbe12fd377148db20d6cb64c94508e769a47eaf2927af
MD5 4408d1969f0866866e88b6fd2c9bbb4f
BLAKE2b-256 55dc6654b794a00c401d5b6f9ce2a311cc10c2092c041a72b44125a199d04b6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60925fad2bf0531bedf7440d78f6517f14f31afb3eaf4725ec4b034c64914852
MD5 ba9a248757568bbd9e45d03287eb393d
BLAKE2b-256 4ab4d1b855ed0410c73c09e14d8cd3716e80c38698b53d1398d3371f775906f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72faec6dd6e3044e8d80ea99c1a6fb2c37ded65701b40b5c9d2b716788ea872c
MD5 45818b85f91d053d27165b56e520ebf4
BLAKE2b-256 ebe7f70966163d2ae8cef5a4a724832a1e472e6c5904621425bf1f93f5d12030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9852414d579cf33e9dca84054897380463e3c1eb90522c065f5d14475663f0b3
MD5 f0f9ec937f3e618e1b543075b40d5672
BLAKE2b-256 327f0a79c88602fed1d3a4e6184617fa280ee51255fe5839d5fadfe7ac993bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5980c516ec9490055d0e00d8f3fa38c349fcf172bf4e98cbbbee671747b2c392
MD5 20758679e8d91acd9c317df213cca1a0
BLAKE2b-256 cafbe867860df4b14bc6f10df2a3eee6fe517ccc4333898a55d88e90cd0843e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d164eacdc05121254096e4a08f0a7898267e56fe43298d26cb6ec64e45260c00
MD5 3acb585e85edd077675d72693bbefb11
BLAKE2b-256 8e96602e709d09d89aede5bd960008f681eb002062ee60e997054834260591b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b865efd41e716e183fbc2cc0087be6191eb119420e74d60be6cfdae33266cdbc
MD5 c7179d7548a42a83cf56932b7a3f66e5
BLAKE2b-256 f1d2af5a305426b69345c0d79050727b6c1090a3ebdcc4569b3023ef9c8af187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec3b5109da8c729e6262e19650f535edcebddf03253f189b8658faf87b8c4a90
MD5 ed08eb664f7206cfb87b8e72afec308f
BLAKE2b-256 01a3e7ae6c8b64716aba8c8f0301c3ce3f54095e5300459a916b94451a8b341d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc970949d37d1a0c733670d67e31c5f488b35a8a24a28f55cc493fb144ed52a7
MD5 778bb06ebe2cc483f4361fc95a6b3196
BLAKE2b-256 c0935e648abb770ce87dab012f9889afcea3f5fd57ecc9a3ebc55f6282f83f4d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 de09601ce7ea4e23f484e85f0ddd8f9d3f927f680a98fe9a14c094e2924ca04b
MD5 ac0f345fc3dc91ee83dd77123d7da1a2
BLAKE2b-256 c007c8d17830bce1aa53cd951259d214d5c549fc79a682f3d1ae9f799276adcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6c97a4490a983eb30eaac79303b5b5947cd4a1af59b90e82ffc38ca25f700a1
MD5 d9c1c721718ad6350f1fd475bb6c9c2b
BLAKE2b-256 af3d410e04833532f2ecb6d62ff5e35ce2d4053bd1994cf1d34dfe88a10b3a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62760561e11720e9f307b912e8074dce5a4fd601cbefc520bfc5e9876af41b13
MD5 7f45e7a8a20f13ac5b7d8acf69f57971
BLAKE2b-256 94a4940389ed0e5bf79f505605ec31c79af0c07c121ff6ef327d4a85b3b59a00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffa2faf690a244a303474dea7b3d8ef8f723feb6e1d730018b341c704f69df33
MD5 5fd70e239bcdca5bb2e675314fcca3ff
BLAKE2b-256 3340b5645f94c5e66bd33fd745acad93274855266e627eacffc6603d6361c752

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc63aa87fa37fdbef8815772af6e7455ab955eefcd095dedaadd14986d311261
MD5 fc415df95c1bb372dd41b79b1320c1f2
BLAKE2b-256 7a68fbac547953f5935323cbdcdd44f7cb213ee0d81e716ebc9d2d1550455c36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffb536a7ae3c968088fc80acd357bb31a2e802d1f0fc181f088026d49c4ae0ed
MD5 78a3df18aabe5fc1bdfb26dd02438585
BLAKE2b-256 dd260f974645ef2f8491f9dde20318339801c5d22f328151d48bf1dc3d6d86d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15ba1efce3bbb1e97cad9206d9770d197bfaf37508457cd649a2ea66e2069bcb
MD5 b0772edf9858a7f29105fb4548cbe1d7
BLAKE2b-256 fbb163662a8b1105b27f39680eb2a26f87f3b65059319f4e17b621976fe71b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d79c8a1158a16ccec5413c04462cc4660b25e051fcef6af6969e38fb4b579074
MD5 d48519dd777cee67f4d0e212b848ce6e
BLAKE2b-256 cd7add615dfbb14c5ecac2d4260cad0dd86604b8c2c72fc3e8b7a8a7c0fd3ac7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74c0440191c2db083e98a2f9b10d89981811c8f53bf359d68f261bd43d1d1c78
MD5 9759752e1b864ef7d6056858c3195384
BLAKE2b-256 96a35a226311d6c31609d3bda4ff8aadda511beb3366a0630238afd2e0289d2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c880ca0f1fb819f579a3d07a144fcf89821b52fbd2921be91595dac0f7ba0a9c
MD5 29e582735a949fc607398e67bcb121b1
BLAKE2b-256 47887266ae1b202216e60246456366b6c775079e9b65a97b429c1477d6240d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91cde69d91c69953e9b84b92419539e233298e30a57b143e932f6e4a227e7fac
MD5 155e63983e009f74f8b842b60fdd87dd
BLAKE2b-256 adf5d089fddf3111919b478f5051254adeff683f36ba824d96daec91b5e6e51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bd6d13d2c97c9da3655f8fa528c695090b4c4fb0b0d3a680191599187505d01
MD5 11d5e287723cb0659f499910b1cf5c1c
BLAKE2b-256 dbd902235246c4fca2a5f975a329c859683abb7b8d8010ac72f197cb427e0867

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2de44ecb7873bb8f44ff4e0f0018a15ba76826084dd6e0a68c3fe9933e290f1f
MD5 d7207e4b8827c837f76de56e5513833d
BLAKE2b-256 aecf5f1d25aeafaecdabc829509d7192d267b51b0ab9af9012393ad06c56e1a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 501dbe43eef822429dfb34bea52b39b43ca2fbc356e9b8273b9cc95c2f018790
MD5 a963072f54c426f5397fa2a29972cabe
BLAKE2b-256 84bf11ecda8e112dd9e236426e936c5db99b6b7d54e4aab7b3ed0dfba893de73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f060ae962be8b8d0a7599bc150a3c1ea8da64691f394a1866800dd5e7b9ac9cb
MD5 c7009b1d46143125b26afc95c19fb766
BLAKE2b-256 0511b35b2a0e7ae27ee6be31558098067fdc5190118064399ad12bab2fbb23f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58f2a2d7e15d8120a2d5248637d7b31dee215725a4333892d0f987ef1e3b5d2a
MD5 ba84d502d1fec1ee1fb86706798a99c4
BLAKE2b-256 b66a2233991ee0fb55d0af5bc1c81f10a679b007596a341ddd2ea3107c8e8dae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6ed670b47db046ed463e4f0561d9f00c136bc0eb9b094a591083d615f0b8dc5
MD5 1895df28d40fad129730c97e70845321
BLAKE2b-256 709511380d855201f775588b0da43189d847877109bcbb71ab48f721d46badf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbe0e54cb7de71ecfd6ac6178616e110f902aabf953bb8b2f5b70e258cf61a72
MD5 9c6b8bcb26d2545b093f44d72d79667d
BLAKE2b-256 cd434248d8bf25018369d3a2b46b9b341cc2dd0b433cc2312892d6e2056df478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 547ee951c3ece869f5e03c03aa3afbc86728225122bdf5041e28b2085958bfd7
MD5 c100f6f58df915a3bc6d9e4aa21f4ce3
BLAKE2b-256 fa7402628b2c143bb6bd4afaf84438093de765e49730d823b979c94f71dad765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6298d89e7bcb5658620908d77b9c5d3f779e48709d2371be81fe381c800e0c17
MD5 fe186843bc7dd3ff55cc555174240da1
BLAKE2b-256 6535fa436b52f7c49eb19920b6e485edb60a006a35b982bf8a300e8a61ba8bfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2326c151861d00a88d7370c6aa4630b8ce1403ce84e24d08ad1a2513a86f71df
MD5 3f16eea5309d0291a87c1fda36837b79
BLAKE2b-256 71c4abd0e4b81f4d8ff191d36956e659c71a33af8eddbbf263ca205b735c6071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 81c862ba5f01b8bbebfc0d996f655de1bb8051036f60ab90a849651673f61f60
MD5 d0612882502f92c0dea8e439bbbbb413
BLAKE2b-256 5360f1484649014bf87a39c1af583a7eec28279661f70a338a605d9e81bce627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ab3627f5826c82795af1471bd5f5e3cd931def97f54d6abd4d4b764b52570dd
MD5 2105e93cedced25532bf9d4a0b7f22ae
BLAKE2b-256 3ec06fb2e25dd049681546ff64070029f1ab91407a43f0e6a2947da12014ff03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e17b04ad3665e83a6ffaf129ba0c24337971cfd1e18265922a9f9a1e8adf6e59
MD5 797c254f7c4ffa806a0feb4d39a36b37
BLAKE2b-256 f7794b5e48a9bbe08739daff429fe7a641558c6da81f8c836ad114410fc4c960

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a715ad345498e3b14e4d02b1356db3a02db7971291099e548d7c69d5c3b0ba5f
MD5 2d1de89a6a242801f90e409faefc8130
BLAKE2b-256 93fe305727c31d65b6862895e7bb52e8bad323f18aa5db81a3d3df2513703519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74cb4dd5ece082ac4b597c2a443c6502deba427c868fc1d9d73349a07ad48acc
MD5 ca8d5131a7140f8e2cf35412edf2c3d6
BLAKE2b-256 2b3b0eba459a28e18ca14280aa61d9e83c7b6e3414f83995da4dae6f41981f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0eb1c38898a57a13d5a8bf5e48d5e629c9037a654ea28466a86183eaf062745d
MD5 a5bd0e87a649261ee8b2d335d983ffe3
BLAKE2b-256 5101b5e731cee3b858a1d2a815ed814d8226d6e8e506ea4979e67a0349f8fdee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d3297daa433467c4d56ae6f4f6146f1a43abf62de2c73938d7f18b8794995cc
MD5 f61aa6551532baed1c737e9162531b19
BLAKE2b-256 8d1f5886c42b29921af6df4877877000e6d5bd6496948dacbf6b68fc3004ed26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5345fcbed956a05a90559dd2423273a5160ac832c9c09e3501289d6b66e64244
MD5 df435e5e3ca88dc2832c07b923912e8e
BLAKE2b-256 5683d62080b4daeeacb3642e71eddf584d59d47820db60b6ad05608c1e060600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4d59900df0ab89b573ab2013623b3ae6766772d715f6fcffc8424a722a2f599
MD5 0321f758c194ac710f386cc43cdc8a39
BLAKE2b-256 25935d7eec4a0200e7153e666cfeda980c3a8c2ecb3297e2486452929719621f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c676efa1ea8d7adc244a9712fbb2a86f961b42199ec96ad35bda02308e8ebf3
MD5 531a7c6c8904612fa6e684a78db739c0
BLAKE2b-256 1b53ef95bf3d24bfe5776fdabfe5577176201129261950b7dff309f00958ea49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 269d6c568667ee05cf61534da857365708d8efc9eadf52fd4df3a5c9436670a8
MD5 e07f472b66521fce5b765dbdd8a094d4
BLAKE2b-256 c52cf1366ca069ccf5e5f002d95e4b99c2a91e9fdf101caff591dcd702853063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de69f6df9893a98a4c26c89ac352e4ba2275341cd799d876739c5b10b1ea8b32
MD5 f4a421e743e42a3d305fa28dee3797ed
BLAKE2b-256 d178244587ce5b70a6655527b5cb062606e9c44cfc18fd327247f0884ab4d306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 555b0d19aabb0407af335d6b4b6b464b9d534ea4d9d1e84fe0f7d8dcb86033e8
MD5 84f893602059e7166ad4a00cb61476cc
BLAKE2b-256 6e8dd2221276c126899418ddbc4378e3b799e62441c829318b9c4c2a5b6f4f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80b11f68549b9d5384c6993d57d5b523ce5818adedc8a1d172a1f1d9a7fd72bf
MD5 29a354fa936d7a3b411b0987333c47f9
BLAKE2b-256 c2b29a31bee268982dffd03aee0f7fd8f63c3e8403f1606eb808a9a01e7a68ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eef8cc2b0644fe2f4fd9f393ce50caea45baf10cb7320cbd3347c6c48143f3d2
MD5 c5d6235e404ee8fc7babca13fb2a6cd1
BLAKE2b-256 305ea052d2bc70ec35679dec1102999b7d6e03b8484d0d438803e0d8ab167a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63b1464402c1747b307d06d0e28e761fd7b55db5e7a434caf13f3c14efa75b20
MD5 7d0b771868f2ac9e4c382b9791be0fd6
BLAKE2b-256 e5895627b1e6c812f1f7783abb0f0381373b7d56e6c836bb26144a5f994239ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c45003bf197ad2601dc8b4c1701da96a91bc8ba660014de5d3c588920fea7e1
MD5 54647eb844d312e8d36f69b1fb5ec1b9
BLAKE2b-256 2edf55f51addf092440da8d424a77907e1fbda0294a3fb7d26ddf274c0d27a5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de6c7a0c0f1d2fbf7bdf232dc317bbaae66fb8a18127c1e8a2cd81b7b875941f
MD5 e00235f9fe0537cbb9ef600c1e7141cd
BLAKE2b-256 074df3133b1d547e239f40eeadba7f7d8871ba597858701c01e375a0a002d3ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 88587acd3d22112b38f81c17f4f3690b8cf2d52b6406b5dd9487674b90ccca49
MD5 91c2078ad8eecf3d5b2856cc14ed558a
BLAKE2b-256 9bf26add03b94847da66abd45bfaa0a62a5d20fa7cd120c7f0f4614ac35027c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5847b076f011eb0b704f28fd0a31665da32bf420e58688e3d4f5336251a073dc
MD5 52c1bb1831b34e22f071d10ff4dd93b1
BLAKE2b-256 84d26b64f74ed9a7c64f1444b6ae3d518b7d7981b2f9443852901a77dfc8052a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ddaeea2204f6b68faece4dc979c2e203db4ead92c323e34da8d5000cf5698f1c
MD5 2fa007b87210378267d8bc272f660afb
BLAKE2b-256 a23d3b62d3110dfe4c27affe20bf0320e6aa1ba83a1ac3ea835690ff81d4f58b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7f0b2334594ffa9d8e78392b667fcdae513e664124d5dabba9886bc1d882fc8
MD5 30dd497ba654e7b6f816b5e04e8f61bf
BLAKE2b-256 4a008cb4e44318af68c50bb838838e93db36d07fa6a5bf5fb46ce1cd8d5c7853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 917f5b5c7633d20db03b49c085ce0f5bce91cc1414fcaf899941f9ffde6ec762
MD5 3e5b3ee2d4420c8ea4e053b5182e7935
BLAKE2b-256 0797f51d571d237c58ea01ed66de33cc725b9503d1ea055eb064f8298fa65158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c46c5853ce81802d3b9abb62067a08ff66ffde78b62cd451b278ed1e83e38d1
MD5 e66f1f98850003181b483bd9602ca39d
BLAKE2b-256 dd5650b71a18b02d72bd4ad9a65de3b1ffbe7417d37a81ad528d20baed04fb7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f2c00eae27beca7fd1d27de971fa6081787f044e2722e70c8b6a0def9851302
MD5 fdb3b10fdce52ea3f6d42fd2f2209925
BLAKE2b-256 5af282263ecb10c649a4554ce231faf1592479fe2348f1bd2201cb19d82cc4d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8487aa5fb9418d22a838e0f6e470622e3ce0aed4f7917b8f5e09b432bc87bf20
MD5 935e9587bf257148e2569878b1344fe6
BLAKE2b-256 bd3f12c65a880362934e920ee77d81be93a68b4371b5f25fe8df61a3e91e6819

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a93a59eb8e8b85e608621dea06acfb2f76d696b6426497c33915d398c592629
MD5 2dcd261128d4ed46d250a973c1f33c22
BLAKE2b-256 071c9614ab65395a67922834c312b02cc51fcb286552ed7cae43604116009ad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f73f3506d76a87b3b5dbf2d2005e77a2329aa1f7b078a3eca8fe9758df697ac
MD5 f6cf82efde8b75f782709945d5fa8480
BLAKE2b-256 25e672766de8a442fd3d63deecc29a237b0ee51f6d6d6ed2d2153e412ce53bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3e830aea957b99a024932c60db4b590ca306274aa4664c3a76f64f6e3cd9cc2
MD5 60049e0d5c90107d7a27b07847e5c63f
BLAKE2b-256 18471db6fabfc945bb40f4bb344948f98e4fe50cbdac7b30af45b7a2b97a5532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1309e435e4c5b8b0902c1f016043828082cf37867280bd1fb09139c2508496ab
MD5 bc3c2cc988cb613933cea71e08cc49c7
BLAKE2b-256 5b7a3893a6023ac7e2780301405e9d40471051fc8ea5cead6f4b9885b3b09eec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cea4010ed6fde1b464ed4497db6399705c57b61011862904fce5e67d48a7bf96
MD5 a70b43cc19e34439aedb1fbcacf62a07
BLAKE2b-256 12667bb2780809e4dd62919fd08cedbb8db1da5a330b72e6016ebe6f51c9a615

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2bccbcc4d7a782716a383b856661867f841de26f7522506632d78f7218f23253
MD5 074f6afe84eced7bb4bd51b699321544
BLAKE2b-256 d17030a3a7d73056507d27faeed54f2861c72d7e547bf216c82fb0f1cc8f3f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f540b3cd8ad5682a3ee51aa98c0c5c9d8af276c6ac3e09c6366ec8e73b96c687
MD5 1ba6874d59456e6f8429d70c5f17cfc2
BLAKE2b-256 9ebb58069a727ee9d566024ae5077cabe1f85fee296921802e41bff95bdc25b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2378ca6918c3d9c04e9ec3013853142f5e274467ac4b856ea3056f2bee9bc219
MD5 2b123954ffffde162ba3297c36a85c3a
BLAKE2b-256 4ce300e951da2820e0f86226e6c34e4d6b954b1848462172fb76fae2ed4c3031

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17d0a2c33c527affc7f78b4af06c17163baf95274e5950fe903683534cb5396e
MD5 70326a9c31bfae35d347b945b5ba264f
BLAKE2b-256 f58936adab7caf7fb1ce7b46521e9e5c739bde2fa1b75c645705912c81c253ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e161721bf4d59e25e8ce2c7443283292e78c839459751fa38485774c56d42147
MD5 04f6884d405997281f290b6e2516abe7
BLAKE2b-256 8b8b08178df191cc7ec81af3c5e96feb4d06a7d3d3a2a55e54d77862282301cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bf85674b0837d68f4325badbbcc618d0b18133bdec334a9bef03fd919801fdd
MD5 44305a924a4229c9662175855d05cd84
BLAKE2b-256 e22887b769062883876b305289f7c554b08c80e4597c2a7b4d4245dc88fca144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 509b988cf8161ac6a990ac74902ac6ad8e2f49f88bc1a66515f915206b3aad3f
MD5 782940a1cdbd6f2e8b6636271e1ab092
BLAKE2b-256 fd56fa330707fdb90cee08d16a68f0fe662344e874b6f99008ead2bff8e93d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f087f6d0173742cdd94188ae4210766e72055b634ea727caf02916de0d5e4c2
MD5 040a24e048322b4ad06942e6ac68bdde
BLAKE2b-256 2614c9849bcdc23167b9b1f547f5e96f8361265147845bbca035dc2fdb5b111a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f2af36897d9480bb366890bdc3edb9845c05358731c463957f1fef3c75b0378
MD5 f09a2778a8afcc082607276b63ea6c1d
BLAKE2b-256 6c7946d855f9696888a7016fca78f7f3f35e414f466d26a1ce9df6eaafa88ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 171b855c982fbf1cfffb70b3a93e9c1a05ac9c976ecd6a4410083939bace083d
MD5 d0e7651d59cabb71c3291bd86becffb8
BLAKE2b-256 a6fba668f42d02631ada587f3ccc72be1ad476bcfef77e614d99b4b22c22cf09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff43c169446f013723dfa4d9081a4bbfa9cfdd8c50fef8bd0b57776acbe071e4
MD5 edfd06effc36ee2286769a24a0f4a22a
BLAKE2b-256 77d28aeeae9ad2d529a6b96f9ddf51910bf773de2cc265dbb57b5cd09d5eec1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47c52dbe818ec1964dadf55ddd640da890020d54511bcc64348104eb3f27a0b9
MD5 d385c5fa6b5636cc922aafb7132053c3
BLAKE2b-256 add68b78711eeb6e48b929a015f331671de6c6020fc9cfbddb7087273af5754d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ee5207249a01e3f3fd9cd48495761224d62ee58b7f19016c736d373e3f7ce0d
MD5 0d024979cf52bb368c3d35765ab3b92d
BLAKE2b-256 189ceeb71f6e4032dd81cb92d58ef35332cbe0bbcfe39d01b5bf8a483ed0edb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 17f20830060f7e4e1d7c7cb46e7d5dc97810016e819c83f55ae73fc0134e19e7
MD5 b6269b324151b1f176ed83a35c23c2ac
BLAKE2b-256 7a608693092716d9f5c014b0bcb54da66f8c1a3b8128feddc62fcca5928e373d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d6d989764fce8712c1c3bdff89c0c5de6c8443058615453e8ab27739008a0fc
MD5 831b25888e163f7de841a050b55ff837
BLAKE2b-256 4db759ee75aab8dbd9cc90649586d295da427ee9d4e5aba901fa245a8664fed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d33bae336f5105d62e2dadd16898e0ddaa7b3c8e57bafa6446228746e70fae4
MD5 0c23991ae570e062a20829290b30ee41
BLAKE2b-256 3169be2832f926ea8da6defebc55c9a19e7be634c23f897353ee4e3e8a61153e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9444e11327fd0db419ea1de51db7e139d5279bb35013bcb72711adacf5d93ff2
MD5 cd3cff00935b11148691d1514ed15cac
BLAKE2b-256 cb26e29694070bcf4929852aa67cbf27f5c96cc5afc5254cff5662dd385ab44f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ae03a23a1f2598aba566a5fc45352c6b2f4af4f5a49fe839bccc2adb6b638d9
MD5 036ab1c4351090dfab26c9fb9b7e16b8
BLAKE2b-256 f3355d41a09d568ddf444ada677feee0cf9f8343c99d028d5105488b61094b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a4e73fbd8b7a83760d6e80f1d2b4c3bf95bd4a2fce4108a5d8d1c2cef1888a8
MD5 3e8bc12a4f782932d518eced519fa6d0
BLAKE2b-256 f82e278e08d7a5c4fbc336341f87c19c8db56b47ec61cb881d4d14ea609d27bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1059cc789f6f1731ffadf352f9a617128016035e01c394aea436c28735b4741f
MD5 c9a8fc2c36ca7e36c97e4204b0fd689e
BLAKE2b-256 d171b376f5d816bb6e535c2243664732f36f9f1ee1e2c0fb33fc75625301184f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2226426d84f901d9daa307e408257436166fbc20126d3dc4e10372158f92e44
MD5 9275923d18b16e99dc67903bc9ae8f2a
BLAKE2b-256 c5a2588b745d38b0f672bb02da7ec5d028a1cb9b8910cb27bfb90dcac2fe3030

See more details on using hashes here.

Provenance

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