Skip to main content

Wavelet Matrix

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

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

Features:

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

Installation

pip install wavelet-matrix

WaveletMatrix

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

from wavelet_matrix import WaveletMatrix

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

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

wm = WaveletMatrix(data, on_disk=True)

Frequency Queries

Count occurrences (rank)

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

Find position (select)

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

Order Statistics

k-th smallest value (quantile)

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

Range Aggregation

Sum values (range_sum)

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

Count values in [lower, upper) (range_freq)

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

List values with counts (range_list)

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

Top-K Queries

Most frequent values (topk)

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

Extreme values (range_maxk / range_mink)

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

Boundary Queries

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

DynamicWaveletMatrix

DynamicWaveletMatrix supports mutable sequences with insert/remove/update.

Trade-off:

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

dwm = DynamicWaveletMatrix(data, max_bit=4)

Insert

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

Remove

dwm.remove(index=4)

Update

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

Safety

  • Powered by safe Rust
  • Memory-safe by design

Development

Running Tests

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

Formating Code

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

Generating Docs

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

References

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

Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (913.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (932.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.0-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.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

wavelet_matrix-2.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (935.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.0-cp314-cp314-win_amd64.whl (612.6 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.2.0-cp314-cp314-win32.whl (594.9 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (929.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (873.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.2.0-cp314-cp314-macosx_10_12_x86_64.whl (867.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.2.0-cp313-cp313-win_amd64.whl (612.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (930.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (995.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (872.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.0-cp313-cp313-macosx_11_0_arm64.whl (816.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.2.0-cp313-cp313-macosx_10_12_x86_64.whl (866.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.2.0-cp312-cp312-win_amd64.whl (612.3 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (929.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (996.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (871.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.2.0-cp312-cp312-macosx_10_12_x86_64.whl (867.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.2.0-cp311-cp311-win_amd64.whl (613.8 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (912.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (929.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.2.0-cp311-cp311-macosx_11_0_arm64.whl (823.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.2.0-cp311-cp311-macosx_10_12_x86_64.whl (874.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.2.0-cp310-cp310-win_amd64.whl (613.7 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (912.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (929.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (915.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (932.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.2.0-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.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (880.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.0.tar.gz
Algorithm Hash digest
SHA256 3be7d290b3bb5702066c9ddb59cd0c836aa22f76a536c284aaa07bc8619b1337
MD5 4cc04f2e209a665c8960feadb1132b26
BLAKE2b-256 6d3941bdfd30b88d618d9a468ac3ae7c76a2ac4b37cf5e3a3932991073faa129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43757c05749bc9d9ba48edc372af33d6f7e5d4cec4497926ec8ad19ebdef2da5
MD5 8611388be046d1c96463ef46eae64ee2
BLAKE2b-256 bff0d2254342e803a64994be6f45e83e0f056d46d52cc3fdc4f35b917fd79be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9cb4682b8dfa39ac87eb3595882d70270b13a2628ea495ea2dd3c77105d5c59
MD5 013dc091a536ce2fdbc1acfc17caf424
BLAKE2b-256 bb50c56ff9a4d5d83643e20da5f71a87936a63b13e7a3db98340bb53d1ec9cc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15f04243d20617cba169fb00a2d232b00c45f52d5c9e741c8cef558a7c144b20
MD5 3f280a7d62dc42cf0b399e57f5447a34
BLAKE2b-256 39fc6348ee5d693be29381821316e8ae81b5daac6043a87961febe7c70e91334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 529e9af0f305323869c9a84eab321a5a20abfea49cef8b80e66ac73823aaafb8
MD5 60005830d02873b7b4b12a20a7b76390
BLAKE2b-256 16fed61831e894ffbf760f9d12ab7b7a5cf4d99e3325d50475f5cf4a8c5a793e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd4e4fdb02f1e09bc66d6da042d57639a37c0a7fdaa0fd3bcd0e78e4af327372
MD5 dc7c54c3ac4b3db0407612f5a335c0fc
BLAKE2b-256 25a38be84dc8a70687f830221247f6db9627934e1284129f2479a6cfe376f9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab7db8764d6fb59a283297b085217a4deed562c1c158b2359ed377c51ba3e206
MD5 6be0e822257bcff4a91c254dc320afa5
BLAKE2b-256 b013e7e3c932184f3f1c4f66bba21c0497af0e6c74b5de111c4f2a4176396849

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 363bcd8780956347fe25e4d763fbcac0da3c9a6042ba2ae71fae4dcef6d7f412
MD5 83d4427ede510b5a17b777eb6ff2bc94
BLAKE2b-256 9f51661502df3b5bdccdab42abb5f88461919f2d15a4cbcb2e430ded335c9b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abb48c80ef56f23937583475218d64eb05d1ed85b42cd377359c79299f650409
MD5 e71853fd98ba248a36df201275270a32
BLAKE2b-256 c486fb73c6f6fdaff8422ed849a18702e414b0741f38c0483429fa527133f77c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae5e8ecbdd9fd2a6ada3ca8e51ab622820e1f9318081a59f034638fbfc29b19a
MD5 034323b7090866f7c3fd2f485fb2dd7f
BLAKE2b-256 de0ca3fefa6c3f25770dcc87624350cf847b40e5f7c715262f03f6f32c3eb18e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06da4c55691e348c69330e01ff7c09093f60dbed86fcdee3409b1874f69bd902
MD5 53dc36d228a6b3a7ee0890c4423ae349
BLAKE2b-256 7c2d91bcf48742c6d5b0cf25c863515ac202b6f0b9f7edd66f0ff0cce85d60e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b609505f9d09361477226d79001d0161c87710c50599ce750f4037b5fe91f5d6
MD5 f9c8c9fb7b1eb4c743d655966e7dc618
BLAKE2b-256 e59fddf6702fd77d51da27653e8d934b1b511478bc2b3d99f8f03c1ae0bb333f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ffb74eb2249296c928b860fada6daa6fe0405e4fce5b9680056c1688a9b349f
MD5 4ab4c64537a7a649d19fd62421a8b0a6
BLAKE2b-256 f1df7da1e69f07cc65dc33c6708807b4a5e5b94f4fc58e41f4dd6b6132e85d4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12489a13aad668cf08ea10aa83467876c19de35e75d2b2c3152f155bac4b832b
MD5 7980b565cd0b051395ddfa347b8f950b
BLAKE2b-256 63ed568ecc2f4473b891866870ff1a3b2787e1c40e69f7d94a8e13aaf155bf06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79200e9096443a1e24ab257534b851e15716f0e4ecfbdb6ad79c6b3738b54f0c
MD5 8b7c339aac81f7579126e3bf850523c5
BLAKE2b-256 f2e4e0cee0c8365a51c641dab2c5d825a10ffbdc155376ac051008f438dc3180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c19286ab773e6774c05458d55ec43a896cda0baba0ec3568d87160f4466c469
MD5 46641acc2cd155eb2b8a99ff5029b8d0
BLAKE2b-256 9197e057fa43b0b06eb8d922b7519f9ee3f9bff7bbc3e991e19c0247d95d7da4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11504b5fefefe29d774260dc1b4b45a24672f043709171b235b1c97503d72f79
MD5 6db25b134e0c07341d3538ae60243a7b
BLAKE2b-256 4bd5ec23f779cd557141e067d1de97028858c2b0c0fccf302fd51a0481a3ec68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3bd6b783898f863e5d37b3c17d7e624eedb6f4f54c8f24322e99b616c5c649dc
MD5 bf6c0ba55ab65b20d86acfe3e9da5801
BLAKE2b-256 8f4d857fcc00b233736fce32edad6855fbcb64a1d670675ab3281f5488654144

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b202ae11b039f43dc8fb091666f81ca56b1c3b712ec440a5ab13e33589f5702d
MD5 ad49a703243f0794404fd97c4b1cfa63
BLAKE2b-256 1f8992fa7a1b81343ff6bf618e1868be64eec749f42b91daefe6f240d48d57d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31b08c902633e246ea572980719958ca96536c34c9c78f2b22b55ef715e82496
MD5 bb884b05aebed6e9675058e7eaa5328d
BLAKE2b-256 f9c2f2daa9df894bc3efff8efd56bca33a2cc2e1558158eacdf9a96d7bd548f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1678187c4c53455e732696326fa5515002d32e7f3c2a3b0155e03e11cf0d0070
MD5 60b51d9c2645250b874f27e768e0ef70
BLAKE2b-256 d17a8f4468277987ad2111e02ee538142ea2e0fc1a96d061a2851abf09df88ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bb995ad215be0984cfaedbb7c46a32d1cfde9143c44e174b2955acbf812fe4b
MD5 0273bc9d14df21fba5761d926f23cbae
BLAKE2b-256 398d79196b31de0e85fb5248f2033a73a592af09efef18c147da535d246e67e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0bcce952a6d5ac3a0d706126301ff8d77ec4feceb452834097cab812b9a599b5
MD5 04a6a77776c87d8027b8b4c273baa989
BLAKE2b-256 271128e275c686229cdf42755ee2df159002f1e411cc18e87a82c7481a38e7b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 659026ee951b79fa0325e953308f99bf90f4f5d56b2e02c5da8fe7736abff792
MD5 3ce083431f2b3900ff25d312c2c57865
BLAKE2b-256 ff57bf497299c530bfae3588a9a7e2d652f6d0bc0fdba8af526164ba3141b213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee43b1a5e3cb0f2a66cb8f0082c56423bff1188cc5b0278104be5cbf2877eaf3
MD5 b5f1ee65fc6e18938c02784f52d8f628
BLAKE2b-256 fe8346312cb2339a79f46f00d660083a1c4f94e52c0d4c165756181b4f3e1d08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 920c95a11ddb8248dd86f2e03b260ac3ee8a10e17f95abd81abcd97454355213
MD5 095c787d3dd7dc0d7dd752cf4a45b83d
BLAKE2b-256 1af0f2cbe71a0e3b78a095370a0246a7043bcae243b219d3886255079b6786af

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8eeb61e6069b536f3ccc1bb382ae74b199d124756f3cbac0abb9d95cb12a2c64
MD5 aaf01cf2137554115aef8d91bbb9c3ad
BLAKE2b-256 ab51321e4528059fa29f8c6aeb6e35d13cb12687e34c184ca9a5aec4a02f3af0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 363785cec8eff19444453e696a4854ad0f99965b33e8a169dc1766964c04d943
MD5 1413f4ee47053381f71bc2821a27e804
BLAKE2b-256 4ed0bf4271583f4fb3501bbfc1353caae097d8841e4949132b00f41e118c8401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d754b6f95bb7ead8b80c5ad77ef6d090bb24f594bf63c04427d818981bfdb2e1
MD5 80cd69deaa1cda2ddd0cc4006375010a
BLAKE2b-256 1a531565800a39484408e6db90eec950695c0196af2f551d63368c08af64bb46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2d711485a813eb7c3e665ee2681673825d5f153651388924a86f45feda70fe5
MD5 ac277e3e521da4bd7b2a429e577273ed
BLAKE2b-256 2bf489d718e772359bbf3e7e44f5f6fd4ed5220f6383aea2264e5bad5266f1e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bd58c31659d929a102d4d0d5a513f3652577748465fd4c9c35f2b5ddd34696f
MD5 8ad9aa33d82a25394ae7ee207e1bc9c8
BLAKE2b-256 1e1a18d2874ee58a52b70c092eba590879e74a605edba91560635d6b714250ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0d755a0d135b2468dd3642f9c9e82cd7bc81e355ff266c639f4b0b8aead581b
MD5 88dc435a49e4476fc58918daabee8904
BLAKE2b-256 8a8f27ebe652c4b5b871b6c868279288ed3ab89847cb45c75c2cc0ef4a43fedb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb5f14a0c66932c7de2aa1262a48f86434167c4635b4c69a710d4dc6879e8580
MD5 2b4be1b441f4929f8ac6f54d176c3185
BLAKE2b-256 c569285c1768fe620327764042f9588e16a7651e04978c54519a450bb9856593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8c9edbdfa12fc191c532227379ed1029e2a53c7864451ab36137e0a1a97bced
MD5 7882f7d2c9916ad4cda71eec9481bab3
BLAKE2b-256 fe526a9af5aff639a6e4d2cf13dd0ebcde4cf5350bb05409dec3cc1f41dbac25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 92afb286f860e574ff52c5cfcbb5ba522448f5b12356f289a9c2f7a0f0f89853
MD5 45c6cc0d1ae58e07614bed36123bc82d
BLAKE2b-256 c0a73009db13f4f8df97c4cc876e6f32fe6e1c261dae50131f5476ff532ed2f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff97c3a12eb5ba66f5d320cb688d85e3e27bd016356b30b75eaef6db10256d03
MD5 3bda12e39be45cfd5a9ca33c2fd73190
BLAKE2b-256 3e642e76cc741e3fe2ff53877f8e951d3ab4e09c6dc4a38ff44d324cffdf7040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6650b5a69a9b1aae62a9c0d8ab5418f25d40a14ad71051270262aa81a68b8ec3
MD5 5f2506e9ef52901fe35cef6652e136b9
BLAKE2b-256 93fcd85febd613912c0ef1a79ceddf32e4e0e567158716939a789841088c297e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf4d62eef64fb4dfbe9b24a93a0a11b870c287ac5a26a274d7c73d5f61b1d4b1
MD5 8ecdeccac43f34be7f0a555c2f729359
BLAKE2b-256 993db807610cef2b116ce91bf8e089d76b75c2d909c1ebe544c99814896004d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8dbf60732d8aaf1c1c3266b139e73eaff7ad44b8658136ec82bc389ac1892d0
MD5 f58c4b398a5d991187214122e0587c11
BLAKE2b-256 42a914d61e65766907f2828fc00a2db9813f6a03ed1bad804970ca2dd23cfb53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c5ac06b317fc3ab77f8236d1a877276845dc441462fe75fb4d1df71f5af36f4f
MD5 fe38447cb0512332336a6f36e62ee206
BLAKE2b-256 960e33ba27c54a7ed1237d8da00a58e36a4e9db8b9a1f110ff69bc3db0a750f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37f4e462ca54895fcb2b9f61c0986d6940c22e4714726de663468402717878d9
MD5 2334a0bc65e7fbeff79cc7c4e700eeac
BLAKE2b-256 a34fe91c7ff69c6126fe0cd9044c58a642696060c1068cc8c99ccdd6ad60f567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f48be9624b970967949c4e177ce68234ba4378499dd62f20eb0a04b8732d5a95
MD5 79a5e0589be4e7bcb0c8f1874c56ced2
BLAKE2b-256 5f4dd5d9b331dd2a5469e2c2a328fbc2fb23e9fbb2ae29cc3f5c6f14d830b39b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2cc0374e3f00d9a3a2d56e6a311300674e5682af7295cfb6efda4971b79564bb
MD5 6b69c5df71e709a414beddd23e9ecb3e
BLAKE2b-256 17e8ce2b7756e8e7ddd0e27e832dd1014ab60146b3a90be48022166785d9ab94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea258dee4d2deb3b0d6e1a4311529349abf749ea3a761767fef74ed31d3f1030
MD5 b8708008f9afaf6659de2da87f70070c
BLAKE2b-256 acf93261cbffd48f6a2112c9812bf7c42d40032578c3ef032d9119590317a0bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d198d14d29a92502ba07396455442822a8a6cf3ced858d5c98abadaca12d221
MD5 3f4e54c1288718224bbe6e7174800c77
BLAKE2b-256 cc03c1cee43e8bedda173d3be68623f1e7cabe063c9bb13dfe1446b3c96b0118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19b97be031acf836041a8257167271e616c51878021d59163d7988582070265b
MD5 d57c87426e34fe109a4deae1a5deb95c
BLAKE2b-256 5fe65b197837c3a07a6549ee15a4495f76c081aa884d1087216926c99ae9577a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1b8285c2ecebba807fcb842b05d3f988c5f128e52e44fc29bbd1727594f05e2
MD5 2f077f175d34a3b3ea36aadc35985ae7
BLAKE2b-256 5f85e41e9354ea2e74ae92127cc4b47d88c45826ece25d274be294402fec7b59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2a2a9d8b45332772b49121d690864b8ea3708653e81175e9985b1e99b0b96ad4
MD5 40c78f5dc157fb4734a8de758c22509b
BLAKE2b-256 2b89b682957f058f6047401fa78a87ebbd2b54827d83677fc14eb5dcc0dc41a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16838baf7aeeed0c0e73f06000cce4a239306ced520c817a52617c82359abffe
MD5 2a56e76209eb4c0ec1ef519b3513530a
BLAKE2b-256 5274c24e79aa229a392f6a8132bb624e2082521a3d1408ba3f180aa647a906bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed6c2574be266f2dec1f96f2897ac7e0ec5ef32872120adcfbc16bc5b78a49a4
MD5 cb46d6c54e83fbd2fd4a4403b3d7f67d
BLAKE2b-256 26c1eac913f1610e766886f363f80f908bba08ef6e9dcf0e0025a0360c7de831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8437d8aa5f2ddc049bf92813e70ec480125be28d36f4fa268a8e2211194d4f24
MD5 5c8de91f70582e0ac3f1881c780f08df
BLAKE2b-256 5a6549e7b6ef7d01a54d8b2ad98d87cc544c585740e05aa8ecc4b8c1b7fce187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20c307981e8e7b13ece9ef78fa5b6ee5958b304f7c2564fe1ce6d867b353f062
MD5 de3c1fed8acecb4eaf8e103a797dfdb3
BLAKE2b-256 881be54415fb15df59baad4ff4fa24c58bf3ac3fce982ccd69f6e0c37da33820

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47a94870419316e647911f7a927f69dadbc1f77da4013ea0b910313e0c900fc1
MD5 1bc29fd810f1c0b3db5b84a7e1ad0efc
BLAKE2b-256 63a0af284bb01771b44e09b972b2498507020087d11ed5968878e9224e7233a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70cfbeed801df7726afcedaa75fc452d809ee25e12c6dbc646a0dd0e648e672f
MD5 65c61707835bec1255321c21bb8c8a29
BLAKE2b-256 271cb5f9aa1e9e49534581d27298cbad8e1c85d94affb4522d19d191fc77f0dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b5ef50846db2832ede2f4948c173164464d1a31c82a217464b2892dd35002de
MD5 3d9b88f9575cb5e01d09c46e7a5c75d9
BLAKE2b-256 152f33309679a969101cb5d9cc518a081aa17323771fd926f45c7b45b4faafdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 161bd030ef04f0dba67c5e22eecd69ee0098eea1d15d9f882126439c64ce44d3
MD5 9f25b1142d64e8ddceaa3825a65ea594
BLAKE2b-256 972258b16f2ad667707060666d57e0282175463d0e0876d59be3ca51f21a9422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1eb730e84462a71e42938d60edc7b9138ce931d841908cbec1f73347dec88580
MD5 6220e057458611d6027d905dbf7b4739
BLAKE2b-256 5558d301ad84cc2e40d23d1fcacde5e5a994a0a81be7a9b9d43417017d1d7b55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e6f2af08055acf03e093091a547a8f591e8bb483e44bae421a333a0a45bd317
MD5 5052dda01026d4a7b3492be56794ed05
BLAKE2b-256 4e192a5edda67fc30cfe4deeeecea533986cf973b53f52ac48c69cb09564cd2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f6859896d3ea851eb29eae2ec5da673590fc407df456ab303ddbea8819744e31
MD5 9d4bdefe262971496764a18eecc773ba
BLAKE2b-256 765fbf6540d843903eb898933814f058ef69e6bd33fb048ebf11aab4c97feea6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0658ca48e0e3e9758d15c20a45dc394faad95153dd2d32806eb094e3657a01f0
MD5 c9bd3498ffb9d3b5724f043cd08118c0
BLAKE2b-256 59567630a1a60e1cc30e86c9765fc1bf467eee370e628b028d81f06696c619e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75250da2ba1eb04247624f5e390799c780d8059abda804421c3e4abd46a71da8
MD5 a6d486c311b4bb0a03e35a77dcc438d0
BLAKE2b-256 2739ec920000f54ecbf0661dac483a9bd9d43a8ee61683e1992487a82cc9db9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34ff2c5d73c5dceb270de80f903c4aec3c0d55597e605ae1ec13a4d62831bc28
MD5 45d32059806fe9fd5a8eb29be3a99c38
BLAKE2b-256 8d01b902d08c2273db3f9167cbaccf897a013ff4be4ab84a34f3c5457d2546d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 970ddd3801e393fac6fc763e72dd48bff17fa5d46e2fcb9d22bee52826090304
MD5 a21385184fe5840687cbfd4a89e2c383
BLAKE2b-256 9b208c5bd2bc420d1142c485805d40164de066807f1e06de8eacb29008f111c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02cc00a556734300736bcc4cde2573ed9fc8a69c0114483221a1d9db717a1547
MD5 b3e3987d4acb2072d346e0276d00bd62
BLAKE2b-256 309fdbe6688709303c9eb1bb28d82f468dd86c24c2c114b5f3291f046e669e5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfcfd71f076d85b22b55b1bb1d3959a1413b9d4b9dc1a59016eae7ef117aaa4f
MD5 a610766e8b90cabb558ed600627a79c0
BLAKE2b-256 dfd76886b773969156788b1a955e39e839d26151b319e38259b48f5ded5f2b56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b8052da04476ef11153a215c17575bbf9fc91e07f7a98ed653f1ce1640936591
MD5 7beff03477547af88f8e9c14be294745
BLAKE2b-256 e7d164724b8b0c104bc26c3f7afd66ed3bf3753dda83c5e1d4bd00c57431f9e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87c8ff48dfb115d8e217daa7f6f1e0bb73d7f08704c5da7b13668b246c25187a
MD5 c68ec320622937bfdecf937a4b1acff3
BLAKE2b-256 77b9b7dad50c270bb9926939ddd588f70864435044489549f244f09e39c82fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fba402ddddd2130712b1c4315c95d641b8a17698e751d07aa6b2eed6e53351c
MD5 63097a2bf957656e304743802f570844
BLAKE2b-256 e0625063024627346d1c9c771cb9c1450f6c97c9d80a08ac5b64424e2d6fec34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11e2b259090c43fb4a61da580a551fedeb903c7a6d9af454f48ec4d57a1f8e1c
MD5 81cd669a611e108a4f0fd96e2ad9c429
BLAKE2b-256 16639f3e5c04e0743077a2b0d10fbf06d11399f8741d828768f387eb78694c87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09f30c9b4d6d7c0e1bd4c3b5900cde571f18d460f0bcd5e472f678c5833e3b29
MD5 06c3818984262100c3425185aacb7ce1
BLAKE2b-256 068ed45ae11973e96ba270399119d2859154fd124298dc9ecc0a23821edc1414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07f4a20347b0ecfca324f0790bc9252a7d2d99762d4082ffcf7e190cf0676c94
MD5 154e6632889d03199237c080dc0cc295
BLAKE2b-256 7d3719c18d3212410e83a0bf981ef57b2525b3ba1e7626a3b742b89cbd8bd378

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47b0ac07c80e9e5559870637b824c471f1179a65be907b39cdd683229f26c5aa
MD5 baf99fb85227a0179a1584f4c8331a6f
BLAKE2b-256 f5fca8c7bb4368fb0aeb5207ff044b74bed87332733e651d090c751029273c32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6f706ad3796990863e42f200c55958e4b9b599124f944d513262aab4691c61c
MD5 27f120b6358e5a737ca7fa1be91f50f4
BLAKE2b-256 d480370bb4c4ac67200d53081dc0c335debdaadd2c80cb46fa635acb945dea77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f904a1c076d81b81a02879ab2c15d9782e90f8591eb15dc40859052e5bc6bc39
MD5 964f5596e60cb91928d8600fc92d5db4
BLAKE2b-256 00c0631647ee129bbaf37d47859245b98b4be3b905504dea257b10433a16f572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c7338231dcaae562324c1ce3d32f8a863e5208ee768bd21baab7fbd322530aa
MD5 378571496109722f5255e102306027ef
BLAKE2b-256 74b14ac4f229587c7c348189ba3fa3d6d81aa64078d704218ec7021ad6db5be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 afab217d99848366645933551a6ad3c9cc9bdca838359a3d707c75dd5bba6e97
MD5 3dac03981c7f81bdf611b3cf4bb534cb
BLAKE2b-256 7b67e589b0e69410b3ac7880ba26b69dfd35228dc889997a5f7122a456245fba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50d13998d5d0356a9d68ffb7a7d3531e1c926de2445cc2d65862355a6feecdcf
MD5 2e398319065ecc0e3b6007d8024f4344
BLAKE2b-256 10853700084618fcae8d431f0d541f566ff3be06366a281eeda2ee789983584a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f49ca089ea9cf06bfe99a4321c3166ac89706579bd3fe1bcfe1227e6b3b5e749
MD5 d142afe365ad07b8e779b2af49b0ac04
BLAKE2b-256 63e51c569046ca8c33bd4827bc3f436e43251588e6c36289d1505258ed3f4ecf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 863a1cf4f200f39e1d19c5be9ace1cc4af8e393d32467041cb804c2dff37a6dc
MD5 6bb303f84db20e92733e5f622083a0d9
BLAKE2b-256 4ee6e48aee52caf24070ec23451ceab38991b48f75b3de4c6738a5c8b72c338c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e05be30112d277543e108d5b1091d644cac6806847cc8b4fada67c58124ae475
MD5 9f3c60b0ab19590f88bec17e85304c39
BLAKE2b-256 fb097de5015fdb74531c7f4afb8d36105a92fdb5fdb20b3e4a7cfc4f0c84617a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52dfe0d9f3c02447ea36483a9132ff14c2be810acac6f21efcc05c9ab14f6e5e
MD5 75c78f534019ba75a018daf6d2c87927
BLAKE2b-256 a17e4921b0c93e3ee3171c5e5b27663f240b08d4a7c0d09595c728649c53e5e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 492e19e7db26181959397397108d15ecf7413fd26e38af3c89d61212bd216966
MD5 afc3367666d8b996f9e42af0f1db4265
BLAKE2b-256 2b8bfa8bf3267cbfd7be3e744f0d91eb063f0397e258f10fcbf29e4d4fb95a0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a63390cf320b7ac01d292892b54585f70eaeed013edc61a5059df0f3d08c6c8
MD5 f59f4dea206be6250c1d8b35452b0040
BLAKE2b-256 24a4bf7bf6abf5da579a495e92a1032320a42d4bb454e8f5c88e6dada1b93d9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4eabcc38f62b09cebb270155363e144ea2b0aa327c8112ef1243439c0b54335
MD5 6eaba27f1d58f93363a0cce6fa4ea0ac
BLAKE2b-256 dc7777b3ad222cae4254a0add6713751371a7123c63e480de920f3a46e0d0b04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c7d34c93332fabce5143cff5ebbc0eef82f3e4d3e88175a556358a3d213ac50
MD5 563f760bf5bf30d3967303423ed840db
BLAKE2b-256 ceb84677ded66c9c952fcbe590c3c1acaaaf792de89e59ecda1c8e1d36ab59d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8753a0e2685329489597912b5f97f64b125b613ed74ef168f9e054ce0e4a2165
MD5 f9c23aa4f481601cc690c6361d62f01c
BLAKE2b-256 c5197d178f46f45f1555d2f71a3048f5455665b6c0fa6c5f93f9671101cf3106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 038644197eb341821b0ae0d2791a8bd228b95da7bd7c36958dcdb47d483552eb
MD5 89417bf2ec4d5c1293b3651e15e126f8
BLAKE2b-256 54e18fcebb88a6b2fd451fa51008cd8d066200646123418c69548f1406bb5e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a20a9717ff0e6b7a6fdd937fed4b6b51aa80eae851809e7ea39e77c0b4aaecd1
MD5 1a94dc12e174f757b534693bd4c274d2
BLAKE2b-256 883eedbb24feefc50ee12398eb63b1a363506e96ff0b0c52f91c985de8dc99fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2dde0a261cf106419fad0a7f15ef004008894dd51f1904810c87b427a5caf07c
MD5 e4d93e31fc64908bb982c082e21042d5
BLAKE2b-256 787dc25dbc415805874ec20fe9a1018373347b861af5f6474b615755b1cd3b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0438503b6efd8b48c4157f81c4702881b806ff8225df5b2bb3c73cc54d848ec2
MD5 c44d09e3d5af912542b1fb7211f6135f
BLAKE2b-256 90fff4201028aa8d82e2e53b9fbc254ea4f50b060f3b04bb6f2fb937fd327302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 532e29ae04b67b44c1482b879ab195f4793a4628ae9e8cc3d1181e43f0afb5cb
MD5 56dca372c32d61491464456b73ebd708
BLAKE2b-256 0c81931694977e70d8905919ffe4947465f90c45d4122a599cd6df90e3ad2c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca736a7d641b304a8e902f8e72fe4ad7044c406f83eb401fab044468342e99b5
MD5 da03411a04ebbc70d534a4efa6f71c23
BLAKE2b-256 2d0a19a73a757f6631cd4a52554c4bf6130258870988e286b94b66c54c3032b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea7965b406721ecaf28096e6c6223de9fa6ccaedb5239b62312de1188e101828
MD5 5fea40bfab735c6bf8736baa0d093293
BLAKE2b-256 f5d260ff6b6fc331aee826b1a85f48dbdbcbf2225b3fa878bd9677cb4d636026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec940e41074305095dae610340cd6bd6ea90d01dfa54e73ecaeaa7363d31577
MD5 4eacaadbb92931ecaf2ea80b2ea10bd9
BLAKE2b-256 9217cdeb0d2585a6be3a52034ecb4b4b86eefcef733d77c9e6d24dea85a7fb43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ec74cfd7ec929d63f0d54ccc1104fa68ae9e30a87ab772626fd06af4d0ef315
MD5 d47808828529df982af4063cbe20254d
BLAKE2b-256 dc367351f3e92c4b8aaca1d3f716dc7d7c24948f6b99da400e654600c7bc45da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85c458f64cedd5fb8fce7603555952c01d7c6fc5aac4abce686ecb4a7546cfce
MD5 fb592e097f75e2020e825b31e7d843fe
BLAKE2b-256 dec8ef914daeeb8ebfcc8fd26b26a21692349dc7ec57603001f746e34c4f6ebb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdb4e7130514bb3d17643f659363e790def9290d8ae93cac2f6306f2caeea067
MD5 d7a35ca91d147de55d573c089701910d
BLAKE2b-256 3c49840ef227a0aa1b6f494b45c5febb8f076ae4181eae9d84dedd645d0f6b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d90299afe78c9ccc6cab6a5d6ff6c4315339f2422d67756c8657a8cc5c5f6f73
MD5 fa7c27f5ceba3db3a2e3b256de62bed6
BLAKE2b-256 da4354d4f457a53eefc5a86811f0bc2059fb0650f092c032e83df86df96f20e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a08dd442b9e27c90398b11e166c442317b76a1be9150cf05712171181591cdc
MD5 13c644c3a26345dd022ec51e38d36854
BLAKE2b-256 e1fc86ee9d30870d95c1562e528a90fdc0322ce1edec23c3a44c2ad34e5d8283

See more details on using hashes here.

Provenance

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