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.6.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.6-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.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (932.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (935.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (921.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (935.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (946.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.6-cp314-cp314-win_amd64.whl (636.8 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.2.6-cp314-cp314-win32.whl (620.8 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (920.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (940.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.6-cp314-cp314-macosx_11_0_arm64.whl (828.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.2.6-cp314-cp314-macosx_10_12_x86_64.whl (873.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.2.6-cp313-cp313-win_amd64.whl (634.5 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-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.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (938.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.6-cp313-cp313-macosx_11_0_arm64.whl (825.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.2.6-cp313-cp313-macosx_10_12_x86_64.whl (869.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.2.6-cp312-cp312-win_amd64.whl (635.4 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (919.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.6-cp312-cp312-macosx_11_0_arm64.whl (825.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.2.6-cp312-cp312-macosx_10_12_x86_64.whl (870.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.2.6-cp311-cp311-win_amd64.whl (644.9 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (948.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.6-cp311-cp311-macosx_11_0_arm64.whl (837.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.2.6-cp311-cp311-macosx_10_12_x86_64.whl (869.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.2.6-cp310-cp310-win_amd64.whl (644.9 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (930.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (946.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.6-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.6-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.6-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.6-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.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (950.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: wavelet_matrix-2.2.6.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.6.tar.gz
Algorithm Hash digest
SHA256 3d44a51edec442db5258617851a1cded5ad7ce20e84ab726b828df038dd2e086
MD5 ebf1c3ce666c859f132a54ebecfc3ad0
BLAKE2b-256 15ec334788cb3a2d4dc14a0d27532cd456883818ce184da620517193cb676445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6407ef80f55d6093f5eedcc2ae4d367791ceb1473fec2246a65d06567d0debc3
MD5 d396ebc1d3ed22d06efe77b69e2836a4
BLAKE2b-256 0dc7686555502f00344d02c466970d483d1dadd1b52acfe6eb61bddfa9674403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46cafee89b62eceae3afa5664d5371f4108cb0e73510b2e9f76be16fdae0d85b
MD5 07e1d50ac1a2f2e73f3d5865e5df5777
BLAKE2b-256 71a06cad36866b4589cd3a358f49ad74c0dbd13ad803c81f44888f8bc8e90d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f097e89f77261bb469014e1c55c80fa00d403c2875a3f65daac98fbdc9625e6
MD5 fe5809521da074f2cb6276e4265bd7cc
BLAKE2b-256 0d25e6dabfa35d38f972efe854b0fb2fd29086a8b0691c1e6993a379027bd120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d4f7863e9fc3b3f527a81e94e827020d759e456029509819ab4c63b1aa7604e
MD5 e69809bd6fc950e61d006aa322bc75db
BLAKE2b-256 38c82e04d97e9b6c09f65ff2911c2d09cabae40c90ed2c1baf6c64d4ed7222f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7bf91c2f0af1da134d7a593958ec61208949380b780973ac9c5d149455dfa20
MD5 95886a74d5d3e0a639fe852cd7878dc3
BLAKE2b-256 af0015d57c35ef42391180d04c9b9e47b9ef1cbf4819e71f20aa6921d24feade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6edda66b7e02b1c820f7e42bf8a63f016ab7a295bb8d67f5eb33a1bf370770a
MD5 e7625b1bcd8070eaa52eba2bd2dda4ab
BLAKE2b-256 62359c2d3c8a46d609e0eb6cfbdfd58203fe67cba575a9753799a6f120f3f9a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13f9be1481df010f460fbf47ffbe6fdd0bf80ba5a81be2604e8d1ffeaf10cc5d
MD5 6884a0a70d9371709a522f37e3d110b3
BLAKE2b-256 84c5af0eed0acf7d64817c4ec5b5c9fb880d8cca0c7c9f339c4cac977b581ab2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 055ac75b86844f67338b321b252afc4502ca34f60377a0e83a39e9fa0a7bb3d1
MD5 ea193e1d2a522780c324464c841502e1
BLAKE2b-256 d48d8ba5152faeae4d571fa313ffbd58734259be08210c02a7e8feb640d86c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13d0c9e6b4dafc48730962091a3e020a7d36e60f94d93518ee0e16c8d52c2098
MD5 6768f7cd44bbf72959dde1d337c1e0d6
BLAKE2b-256 4cdaba2a4c723dc9deb36b303364457bba90469509ff44c6ff9aaa162bc40610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98ffaa27104f8a4253264294321217a74355c5897cd85b4d3a0e4d9695504e4f
MD5 d37bf25732c946f05da7c719e7035dc1
BLAKE2b-256 c3897b6edc477eabfcb213d34ec57a4ba18128534be87185c4a1ce6ce31f2519

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4da63f0de5be3221b4be327247d8ba56be32d7fcdc7c542de3a4dd675d20eed
MD5 e400f071298ea23e8a9ef46603f314b1
BLAKE2b-256 f147a1c6423b563d328dfb5ec5b11dfe11b2c7b19ce41325eb9d0ae6acefc4cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32f853f82d5739df996d733464c66ab52e40f121390c9a147d4173fc32aef78c
MD5 3c7659fed37655e7af6422b31531adcc
BLAKE2b-256 ba2764bacadc2355b3c1da26aef22684599b30de8845d13e55a2de88c5031982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75a896ce498431e3c50352d634d07a21d3fb54954f31921424ec6fd6679801fe
MD5 927a38c494eb1f76655b58bf0f07e3ba
BLAKE2b-256 9c1ae1dfa9791de700804648bb3a3ac80361caa89c63aba7e80fb3bc314682ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b33bfaef3bf9b59509d656361343dee2867204cc36b560e0d6afadf852351c2d
MD5 453a218ea8992c93230953e59bb150bb
BLAKE2b-256 d66feb429f0e9644b4cf068cd4294dcf2682b0459297434712b1a53846cac750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0c9f148164357c7a3c7875fbb456d80076a23290cebb856a211f819c0675de7
MD5 c6dbabfaead9b66a47ac21d808487f7e
BLAKE2b-256 67963df5a9f6d53ddaf9735b95d7390d02f77e2af0772a2ceba85c2206fa12db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d14ef85f6fee7ced3f50c5438bcb4f0791d9dce45cbcba19279ab4b78cde9816
MD5 4b6dd33662e5c877ca0efd60f342a1d9
BLAKE2b-256 60d5f11a8fae4bf25d4d606fdf048e4f428f7440915a9687e2c541a680956210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b399bddcc3deec6e61fb7588d9c24afdee044bcde571b026ee20b096087039d7
MD5 add55153c68969e2d2286d72c040458b
BLAKE2b-256 72c7dde0f0cb4821c19c281b3e4a8aab7c8a35ed4e1cd8d5bc51446d9df96763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 418e927a66388c7d9540a3f5e1979d9a9fb464d6bbe6bb92268e6878c86f362e
MD5 09bb5592b751da3593692937238995a7
BLAKE2b-256 a3a275fcab49c3b1c71b083e318a343beb69507273ff1989fe92404a3a423793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fff3e82a187ea3a5801ca17f290372426220adf871991ca89ba93da3e8458868
MD5 76b8ac138420a0e0d0d3944dfa4ac928
BLAKE2b-256 b621049bdd779cfb54602abbd01f0fdfd7e9e2efd403512be9458a83286b366c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 986a688a3c35ad9892fe417c2acb58df865c463bcc69880110df71f639df9611
MD5 c262345e4c4b1f9ef3418d9e331183a8
BLAKE2b-256 07a533abb81b04f5f51bcbb7d8d6e5723caa8c946b97043b96674775f5a51a5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e270be1ef30c85714605f714ddd2199052435f6158a4d49e47fbcdfe19269515
MD5 055c788e75d8765b41fa600cfc16505e
BLAKE2b-256 b8231b3a23f2963d8dfc971392b251ab3a5e6d0852b4699ac329cd0e94a3038a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bdf77db3f3d210871313b2c1260c077ec7345e6d0149cbc02b08e81a6be3db7
MD5 4a22fb395a68f1d44d075458daa3d964
BLAKE2b-256 81f95a5814e21bd663b9dfa68f06b2201af3295cd815c609f09a79002368e18d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ece551cdb5729c3d29ad94afec01f91029c49920c2fecd1e514fc700e74fc066
MD5 aa898d220838df715176a6c80023be25
BLAKE2b-256 96f4dca0631753ad392d7ae6cffad6f0064b4a44042f742f590fbc0f0d9d1b26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2ecd083b2bdea186f34aced072ce10e8f0600b4464bba68fece0769c9ebc89f
MD5 b8cf718c95c03bdd9b6c726dcbccef6a
BLAKE2b-256 c82e8831ffc74a0457f63ec130bfcfe86af45ae3f09b9e9bb34641ea1dce0749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 507f0e46656a85466467331f7a892b7b3114963c8e900508a716f9014bba72e7
MD5 1717ecf6dd9ee0e63aa3e4d2f5859cb5
BLAKE2b-256 cf94959338ec01bdf091236bcafb2d8157553c85626e3250de9a886a52f93868

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wavelet_matrix-2.2.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 620.8 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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d53a89db800dff9c5c2e9e9640ea10321a0332fb5fe091d3d45d0a27ac5f8830
MD5 23ff78e946a81bc05a196e0bae629df5
BLAKE2b-256 ec9a3289809613517ee60a753094bc0f4a39c8574072ad92102bdc01783369a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e04428de1005d65a22a2cb98789eab2d447ea26e97a9c9d643c8e2f015469438
MD5 79157c641064db278ea6f04b65b9e153
BLAKE2b-256 e5c3b0d289c1fe3d75bbe802e91e530056660cb62fc45710db57c4d3e1bb46e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc32aae298da3221060fb570b1aff74c17b7152a2d658fb58d2c9021187d687a
MD5 e57083caa6cb61b1d2cadfc825239fcc
BLAKE2b-256 5173559ddbc42e2153841f2e3fa924599452b20e26144f0049db1e5b4bf735ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e6db45561210873106b9934f8585d4f9acc0f86d04490407bfd13919dc01f146
MD5 00fd8f355a42825225dbe4b3863e791d
BLAKE2b-256 e74f04e501aab51a769b2cff7cd263b4716153db08557a9cee072110bc2a5420

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c9926669bd3d4c5320c9b9aa676b4a95bf2f9a68b69862c67fcd0f29f1134dc
MD5 29af65094844b72e422b0649f5bca1a1
BLAKE2b-256 f7a98e3b2e1b11ec75b4bc05a008b6ec9c6def247424c7025e56909b9ea38f30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6146524838973387a7c8a0fa8d6af4bb2189df9db3e8c9d13901815cb524d38
MD5 233ec95ade7ca2782bef165e776b1e07
BLAKE2b-256 5414c0032fd5cf82819e61f7cb8bc9c61ab380df7ceb0507433a4a849b9ad663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86be2ecadbda0c57c611048c06ceed7a2c9e6a5d2e384b1b1e1bb7097e5d9a2d
MD5 e7a62874d7e71e3935d8057c606277a1
BLAKE2b-256 2c06badf52aae30e0a52f8b2bcf49a19f8d9933a6365ac789b5c5a123ab27b81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebf44b4e414d27a2df61b45f847ae9299e217dd1b9d9f49497d8520bc9238694
MD5 875ae80b1bfaeda748cd0d1217fe51ba
BLAKE2b-256 ed18a2ded927aefc81ab4cbcfa5544320e0c2f86a8eb5be9084067dce0e22370

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 955a833e186e80c81812ca1933eb95e0ae5558c83810e7d65d86d6f63756c567
MD5 0564de2a333bf851c97d7b3ae0976701
BLAKE2b-256 dedf6e93099b3555d01aad9a42b8b639d0c157fcd33ef154abe4e7545eebc623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6d60029d65778245001343b94e355dff0f7b15002fba7aaf5ee780efc7026bf
MD5 a079cda5e5d42673ff983dd899cc194d
BLAKE2b-256 6f221235352eea2ea07a23fd09a2e21e470506b8df6e8300d3ad69461ebb9d99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00458e58ff0fb958a0874678c8892312323db790f564eee0be0a458f13620da3
MD5 30a99f68e6e6fcd6cedc7045cf78eaba
BLAKE2b-256 f7ea39632b40955a63d98a1fcb67f0495adf2d315759e8befab2966846bbf9e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15368e683807ca714beed56d7f9c790884f836bfe9f259a805be2ca3e784703d
MD5 1ef9543933d1d42b9d1affe5ad925b1d
BLAKE2b-256 5832af696b4256697e3bb81c1660760a018a647950965a0f3dc5f432a7c4e59a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ea1e6346988e4b4333a5422853c79c9a94e0c7db842ffc42e65d7dc37258550
MD5 991835cb32cbbbf001faacb1add7be3d
BLAKE2b-256 c2c41da0168666aaf743afe9cd85f64671351623891177939b39cbcfd069f941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 93c1710383447b293e79cda4aac2b319960651252318065f63b5c37e2fead322
MD5 b862721d7b43771f1ddc1655abdd2da8
BLAKE2b-256 7f6246304b7771fedc211c9c87f756c027a95e2a3264bf274a096a42ca6b9766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b827459d7f0aa243c36d4c0688a94aaaf8316e95e8f3c56d4a0624fed32909df
MD5 f0f9b076c8c519e1717c086468e976ba
BLAKE2b-256 5203740f4561636f4b30ed40a654fd8c33dcf978787d127f3f04fa95521b08b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9327ea281a85d3263994ed106974b706eac7636b08b3789fd9ca191090a56847
MD5 7d0528061ccf9618a6196e7b2b53532f
BLAKE2b-256 9db34cfa7bfabad4d87be147b7539b6e7e9a3c1ebaae08893a1b745bb4c16d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da2816dea723183e51218fc08d63d974538eb7fba2d26b4fdc5bfc3b66ff94ef
MD5 5fb737bab1e2a5248e13a23371e0bb84
BLAKE2b-256 a79dbdb9dc16151a77b87c1aa20713129841d07e65e9aa32893f0cb1a4bd37da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4624590cbf599eeec22fc00256943c799645cc4007430ea2710c50655d2d8083
MD5 4d8b35cf89dba6c9cdfc9549d6010cec
BLAKE2b-256 2a8b3a98e1dc951a336841521583da0ffc9654410436f2540c851e8ee6f8c725

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab329bbf36bb14c9f65694acb898020ed83ca095723398d4ac2f4bf58107b0b9
MD5 1948a6032dd578e5517b7b157dc045f3
BLAKE2b-256 5471e72f78a5a958a9c839f2462d98b3d1696ba40774f45fff4d84e0a5519fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83a3d53b902938bae02271b4c5aa3d6d28fcd26dbe7b3e0c1c5cf2cec882fef7
MD5 4618ef994b25c0a23fcf945257eadc9d
BLAKE2b-256 0b0a44e337a91799b191c9a50e09ab641e886d8f7c6beda5f37cf6bd44a58310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a007c520a4e71eebc8df177f4dacca45c64cff9e94ff265f7d14f8baa6019ad
MD5 2dc6ae772d704b73178f6c01b75bffaf
BLAKE2b-256 ac27c206a099297c8bbd27ae76627a7d096fdc8d929c67e6e6a35cbf4f3a96f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f568ac1a01eda174e6bb5f2ff3e44b4ceb678eabc0848ae5bb3b7196bffdd8a
MD5 d520fdbb72c8734b93b5dddcc5062132
BLAKE2b-256 6ca44a6fddb139d36c9f85c667c0ae68c852a01176ef623fd58d0a555f89e8ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7fa885b066774896a30a31a56a20235764fb9888d752c2103377670f4d61b31
MD5 4d8cd1101adc45d1a754b1e6b7db3ff5
BLAKE2b-256 1ab3d1e8fddda61af71bf9e048a8672722d893463e3d807bf26e4f587e536575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5d19fbbf7780d63c2f29c295900b6437f422f6bbb8fac736027e4ce4d32be8d
MD5 539d0d9df78cb41d4f1b2b5b49415d1b
BLAKE2b-256 72145d0df7e6789d2b50b34fd57eb0e876f7323d2a46022eab5e3e53b044e82f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5322d0633086e7764981e6e72fd5dbb1076341d828cf8df12dd7d389178425eb
MD5 92f82bcd9c73c0260fbf269d66e99b33
BLAKE2b-256 f29626012ff65bedfcac8d4ac20c1d2337d4439390bc26e7a849939abf045595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39e982d266f3c6bf62416933b319da6a1d4f6f813031dd300eff976e2d26f129
MD5 57b11b4c83ad2e691afc679ce8fe1b60
BLAKE2b-256 123479eef8662eb4d814dd5af4534795386ea112885905d89d2946470aaa384b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a22e1e75fcee3eb1611ff8e64385c3d91bf073eba56ff946a4b7ff7a8eb5a7f
MD5 6243d316842d66badbbb5198bdf3d32f
BLAKE2b-256 99abf35c0f5a226fdd7e1f00ec095a24e958eaa2aa31b9b98a6fd6f1414007d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6efeb1f632893dda74e5b22566324f3cf4aafa7289363550aa177b60d5ee4063
MD5 895bd1d08acf4834f3e53d7b854d2c26
BLAKE2b-256 9bba5ed8bed18142318777b53a32518d0499f4d606a01538239e62c44fd5ddd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9ef97ea368f3fc33524f5cc80281cd93b91b827955aae518f404a4d5ec635bd
MD5 c2596c2731f21118a7f35d337d7a232c
BLAKE2b-256 b7d1e72da23ce5ba2ccfc75d2db4ed7173a1329b8d3d5f3a774edfe1f218b722

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a1bfa9b106af9344178cb5b3581d4cf21369307356c965ff55bff833d11159d5
MD5 b95099b37de70ac92d393e4ce546286c
BLAKE2b-256 bc2a4dbd08e5eea4d30551a1d96a9f2b7239509765853857691a557f43fd0165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f8bf8fdffffd1fa31f16a2b516b9ec155ee5ffdf89a34cf043266ad27750e7c
MD5 aeb01dd3e4d78d9a5ec8a28be5d1d227
BLAKE2b-256 9a441629487bc72cce4945128c321e11c3bada2f2fc6630c6488a0bb6a2fbe2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88d01c475977c5a8c5f3bc9f94e69773f9481fc29959ef0d8977fb39a117aa81
MD5 b22839b7ebaf9f3e74bd311e68bce6fe
BLAKE2b-256 a9ebe029e7fc35e72602e8bceb172d1f76401268a5192abce68b9985ac9cae00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b71143619e136f6129f9d8360483736926a7abe873fef8752fa03bb5ed9cc38d
MD5 20ad0b4f4f91735b5e980204befbc3ae
BLAKE2b-256 ee58657f886f0a50beef61205db198ff3d14799ba92a578f13740bccfeefac81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48301bed22640bef51220c8402a91796e0536d2e8920dcd4c9fcb75a875c3e59
MD5 7e950ba9a11630a59e4299245721238f
BLAKE2b-256 aa0e491eab0baebf7823207cd2d34daaaa9ddf16700a6dc9b26f043a1d896e3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31195d939580871a07458a6529bd4947e7fa852468dc496231be6ae6ada09851
MD5 747dbd50173caa401b00dacd227a31af
BLAKE2b-256 7791b51f715a92815846cb6aaad291b12c5bb4d8e1c715adbdafc1f5facdca19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96c41a25aeda9e819bb71337969cd1d4ea7d621756504cd9ce6ae499ee7936e6
MD5 d5a9f4a9ddec7bec86b1dbca171f84fc
BLAKE2b-256 81eaf2dba6e6914f486110e9b3ddf501f2d512e164b2f795b29d494cce02fa60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f1ade73881dbcb9ce3c5d25d4aa84d4554921656642afaeaae8b24fe42431b3
MD5 a773b81925f3141ef7d1f1c1c8556b71
BLAKE2b-256 d6f2de69652dbf107448dc416fcd0b275534124df65327cc48f00f7556e990b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d2f8b72ebca30b344e39c4e6577e743a0325d49dbecc8ab0d3672eafc3b8328
MD5 804820c03dcb55879ed05a7c0680df10
BLAKE2b-256 f370a5c54a311beff58a8460f11022bb9ace51c06a90e44048473efc05796630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59eb86db6aa541afad09223d31cb3fb7b28ce180dd407894c2093ee7a884f629
MD5 dd538e42c54668596f2e8d9805ca8334
BLAKE2b-256 93196c1e9b583fa8f9856d449d150ace2acf435666e5ec3b09862761dd6763de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eb6ff231a1d83376e36bf109ec33f80c5e183cc139449ec953eb28bcbe4924b3
MD5 afffed99b6c3618569359f3d918b4510
BLAKE2b-256 f785cba1c1e28cc3cf3cafe99384f9480646f22c8da734e582e2e6d5413fbb75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f518a020c9fa36ba827e816242f62c85962f650db8229a5bbe6ceecaccbd6775
MD5 5d15d54ee5680d96fe8ac6158eea7384
BLAKE2b-256 987c509c00f8133489002c480a4f7d245f89da8d353d51fb2e481ac8be41f9f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 07e10ce2cf673631f77802a31f3b7590fbc32d4261d5051fc3e7c33c898e099f
MD5 50f22471c2c72e8513e76c6a6a7fbaff
BLAKE2b-256 9a69071e843b03e89fc82f77802ee40d88e75dd6315c6ec733b2c21b604f96fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73cbaf78df0d436fbebe9c5f021a7894b76d05fb5e75684953c3e941f2c96c54
MD5 ea6279afb50e27b15c5084ba68273c95
BLAKE2b-256 efa8401e73ea1b0ff455f5e7735b7295b1ed04099d04bd7f6d32cc12be952df2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35f086f14d64bd1d42a7b5827d73043b1d3c162c9592b4906bb6457b5e33db4d
MD5 e6252715ce34b65c2c42a34ee79618cd
BLAKE2b-256 624d11dab85170e704772060b772c23db7d62bfb32fdcf145042d5c1ab0d804a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c6cdf8b6251e793c7aaa350722ca5a0b4f74544cea9802072aa5249e087c485
MD5 15eb1213fb7d3726dff19a4e243f8e13
BLAKE2b-256 01b397c65477fa7a51395e46350c68a3598a1d3b6329138fb2dc1fe0062a8b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c4579768bcaf8445bafe2eaa0ec2ee3d7723ba6caed21cafede33b52bdb96d2
MD5 a930694c4bb6daf0d87ccb4a10b47c44
BLAKE2b-256 706e2a584fd4a753dd5ddc6c4759c22aceb54e2255d6160a551cecd2b767a3d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2aa75a444570fef50fa1b3886f32ae64ab3c5f745335d1944200a1538e3367dd
MD5 0ccdc00c4ca75abdbbca1bfd1124200a
BLAKE2b-256 1498e5559238b70f2ddb35e0e9e1f1e99fd9dbfb0f45319a94d14dd1679d7ada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbfd177723b1f5e7175715a1aa61f1fc93847287e6af8211b89eb9a4ae0551cc
MD5 44fd3c66c68e6fef13c5dfb0048ef04b
BLAKE2b-256 28fb991a8c83251316c56ed857f2429fff58a185e156b0459856e67405e7df50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fa59728a34367473f2682ab990346e41d3f5e9f660c56c796348eabfdcd2d27
MD5 792c94fc4260f4ad82a9ee037b00fda0
BLAKE2b-256 4612de59c8021b2e2166d5200a1d63c7f9e4aaa07f981c6c30eb6b428ff34432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5356421b5f97573ee4f01fecbcd53d0aa7a4d73aafede4d199196716c571f6d
MD5 d9417cc1b0b9f3a6581ce84ae155cb79
BLAKE2b-256 040f74db2a04f0bb8a15795892ebc71cc486a68cbab44e4dcfc125e66dbc2c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67dedf2586e15c5f70653a95f1458124fdd5967ef75447e3b4b88b70e98264e7
MD5 3a04813c2519cd79762d7e18bffc94e9
BLAKE2b-256 471cca9ae89125a9f94b67e5293af964d41e773209fb7402cbf1fe31f2d1c6ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7aa64f186fccf0101b7a89bd949fa76c88209c33a68c335a79b82db0285b89b9
MD5 b60ea379d5d0e1cb1298f085515a3726
BLAKE2b-256 2b2e658bbf21743e753aea867428ca3f4524a6df7cfda9a1a65f70d39c3797fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8398b68cf06b15c0fa5d2a8ab44723b9b7af909a3e054a344bd03db50febc970
MD5 8fc252673b71a5a18646f26c79bc22ac
BLAKE2b-256 c01af382621d488da21c972cf05bad29d5ac7597f1bd7186a9b45ce8f0147ec1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c908723830d43f898e9bac778884dcf0949267216172958a7f2a4ba754071b69
MD5 8db65a3826ca67128da0e1fd2eb004ba
BLAKE2b-256 67d04eed9558c5252cd15c542f2e9ecdc46bbff7ca83a44d400cee4bad0b2743

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77d060227f5fa1fbb2d7b287634d9fb017375987f2162c67edda644834646b23
MD5 83c56290d7fbe903c50c883e3218bede
BLAKE2b-256 d09d25b539cc975b5b474bd731e776d93cd90e34f679909a3c963b1b62da9d77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bdef5520db411e1e020d5ce9fbcbd3ed0f3d5d509c5a9e206f3b11137b8850b8
MD5 968e5d47eb60631572ab564e51733429
BLAKE2b-256 e459aed66bc82bcd082e9cff7948ecaf5ec08a59793b23caef26403ec11f637b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3d9dabb138c7070eedd4841de8cbbce0e5fba834ff34559b986459744d24c02
MD5 6d94ba31ce4035a1e066de294c5d8386
BLAKE2b-256 3a74e64448897fc9cef953e78c16697929d8f01db14463978adc7ff3532b525b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c6ebaf48b2186491e59de99aebb91221311c5688d67236aa40f452633a7c037
MD5 b5f4e910c25e4bcc9f6ab629a45280ae
BLAKE2b-256 77b58d828f7319c2533d3497907e28b5bbe53bf13fecdfae9d4fab14d9a68daa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa3f36925557dff5c0b659231bbe8e10c9b87fff9435456c81e30ad411898287
MD5 f434d27073ebfc5d68d5f363dbec527b
BLAKE2b-256 d912a903273466a9697904bb8d3129b217d073f4bf9f1fd51a2f9554806e9550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 914b708e20b0f764bedc702201a42cf39706193b262cd2d84e3a6ea7d481d376
MD5 2fdeab17f1986db80f1f3efa0d371fd2
BLAKE2b-256 18d696ef44df07ab942e9bc768baaa64d113246b2cbbb945b3a76803e3195240

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0a19b3501f9105046071f70cfc6af4cc3a0ab3f1d0f7534c75c58fe3b533f56f
MD5 3fa7209842f0afe32d5a8ab286cbf246
BLAKE2b-256 5cb742a7fb89d3b59bf7a6725e96e31be99c1c64e5a988b1ac0de467687252c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ee0034237c12389296d3e22067dfd0a96fd6aab26d48cb0221b85f6e4d80bb6
MD5 9f868729b29c1640dd5a246574f4bba5
BLAKE2b-256 37b6c81a0eca084aae82e3f84de8f88e033bd9f7a4d994c784add6cd3a6e3feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caaebb2034568bd5ac3f9aa236027d62447985a8f6b548cfd704070a1c1d90c8
MD5 7b281acfe04590ca82de4d127477af3c
BLAKE2b-256 2d7ac3a4d89d5a980eb648e09c8548cb930cb4569acb1826aff25db35bc95f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 001bb06938b9b041511d0f767c88047627fd3a958505ed8e982bb7e3a95e7df9
MD5 782ca2dc4dfb358e58b5013e429f17d1
BLAKE2b-256 223d4983299c5e84077c7c10bf0f532f5ea9a6088971f14bc8aa3a9cb347b483

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8d013a8e272c0ec604d5f5d94d6e0f657ed3e0a774aa7207f1b143bff9fa2c5
MD5 6ebf75417d06248fc06e2210cee9eefc
BLAKE2b-256 e31cd21b64f8fa8f4aa7a8c7944e16c85806534b24e7ad97c6937c34df3a04d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa9ba47ac0218201c2c040fe99f36796325b66379873ef8532278de7bd9c6742
MD5 d954f0232e183a3d91e148ee746d823c
BLAKE2b-256 e760cf15e6a7586251df37f76aca013643b861a714052eaad309d9d4afd348c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 110f0bfd1d2f09feee5cb98b5a537cd3d9324aa585ffbf9b5626b4bbf2b7c912
MD5 969bb608aa3a0175489914240da79ff8
BLAKE2b-256 4fd558e0cbb5d06e8175a939f0bdc92699ad0e23b54d9451882d027ea25c04d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b16bd1f6845b586c21d151e4a0c9b7ffc187b9cf3d226f15d2478d62d4b1fe1f
MD5 586f4786d549542eb6b0845d22481c26
BLAKE2b-256 89b342968ddd85f5d5aeb90e2454e2c8374edb26375485d18fbea80440dde09c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5deebfc4736df2d00ae3dc0d2cfd70de05e4d76ac9aefd88115a5c0234232e15
MD5 300495db849b5a015f96599339d6ffb1
BLAKE2b-256 4ddba6aed0ebdbeb3fdf72d659acc50d3bd925de00705b96fced50d694ac43d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8542edad3c59cc4fa75cb87453bc0e7d7ac1b568bc9493f38366547e5a998143
MD5 f454e2c4614315f2a1e2bea0114071bc
BLAKE2b-256 65c74c28eb6d87e77f3775a8dacc6297ea4b7d2f8cbd02047ed63dcd95e36152

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a4961084088737d1c6d6a6dff6abd752f9890bf3e6df68d3cb3400a177c5058
MD5 4152d3601356e8b3026e0fc37387953d
BLAKE2b-256 8bc09013905ed1ca4377237a7018a522e89c2037f1064a9b2df60eaa0d826ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63dcbbefa22a360ceee5cad12481bbc933f5300555fba0579ae9920f4793f6a1
MD5 84405ec360067ffdcf2cbbe415735ad5
BLAKE2b-256 eb0a9d937b8cc1ef9060022b979381368747909817fb2824829abd2db56b5e87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 511f8ce6c8e59f81e54b678de5930cbacb81f0d0f5e5094c480dd813c1515406
MD5 885655aaf8dfa436282740486dd7cfea
BLAKE2b-256 1c51127b93f77e32e0eaa99018d79dd228e4d80e2b08ff5b90a698c33d2c8ca2

See more details on using hashes here.

Provenance

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