Skip to main content

High-performance indexed sequence data structure powered by Rust, supporting fast rank/select and range queries.

Project description

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 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)

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.

Project details


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.1.8.tar.gz (62.1 kB view details)

Uploaded Source

Built Distributions

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

wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (931.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (809.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (911.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (898.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (871.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (756.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl (935.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (817.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (913.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (879.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (759.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp314-cp314-win_amd64.whl (524.2 kB view details)

Uploaded CPython 3.14Windows x86-64

wavelet_matrix-2.1.8-cp314-cp314-win32.whl (513.2 kB view details)

Uploaded CPython 3.14Windows x86

wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_aarch64.whl (930.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (810.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (910.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (892.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (870.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (755.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp314-cp314-macosx_11_0_arm64.whl (710.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wavelet_matrix-2.1.8-cp314-cp314-macosx_10_12_x86_64.whl (756.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl (933.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (815.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (914.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (877.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (759.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp313-cp313-win_amd64.whl (523.2 kB view details)

Uploaded CPython 3.13Windows x86-64

wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_aarch64.whl (929.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (787.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (809.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (905.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (889.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (869.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (753.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp313-cp313-macosx_11_0_arm64.whl (707.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wavelet_matrix-2.1.8-cp313-cp313-macosx_10_12_x86_64.whl (755.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wavelet_matrix-2.1.8-cp312-cp312-win_amd64.whl (523.1 kB view details)

Uploaded CPython 3.12Windows x86-64

wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_aarch64.whl (928.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (788.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (808.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (906.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (889.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (869.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (753.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp312-cp312-macosx_11_0_arm64.whl (707.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wavelet_matrix-2.1.8-cp312-cp312-macosx_10_12_x86_64.whl (755.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wavelet_matrix-2.1.8-cp311-cp311-win_amd64.whl (524.8 kB view details)

Uploaded CPython 3.11Windows x86-64

wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_aarch64.whl (933.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (811.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (910.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (897.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (870.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (757.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp311-cp311-macosx_11_0_arm64.whl (712.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wavelet_matrix-2.1.8-cp311-cp311-macosx_10_12_x86_64.whl (761.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wavelet_matrix-2.1.8-cp310-cp310-win_amd64.whl (524.8 kB view details)

Uploaded CPython 3.10Windows x86-64

wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (933.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (810.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (909.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (897.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (870.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (757.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_aarch64.whl (936.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (795.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (813.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (914.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (900.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (874.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (760.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.1.8.tar.gz
Algorithm Hash digest
SHA256 cc56102af04a5b38b7db38db869f61181672c79cd7e80b83367ad5df04aa5069
MD5 fc27ff73ebb594166893b31dec4f9192
BLAKE2b-256 573948d03b4c279b96724abaf6691dcf4162d9bcf2cf06c444fcecec9b8f259f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3fedd416e7beb7074919bbb5e3321cd3aa67d1aea7eb63b76eda41e3bb592be
MD5 14ef428ef211e6919b8554e941b1d9af
BLAKE2b-256 1f9a3dac0e50139f3e59ddb512f3e3834155daec90b6a414f03e2d22b2dc8d0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 005d99343c37aecaac7c8255942919637157930227deccb68cb0fa9cdb2bd26c
MD5 bfa40e3821e38fa05c4bb5479dc48ed6
BLAKE2b-256 c5732164ea36106f58064ab512f4b60e6d6fde5bd50e1f0ac387599365f35001

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 908759812d3a617caafb4244daa48cc2d799539afed1aed9266137a26f56bdf5
MD5 fca6e9385d39b660683ce412c110036d
BLAKE2b-256 aceac6a8619cbd2ef8583dba52a6d2edff69450c488b13425536ba2d6509d2e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5a460e33b22b4b5f3d18b47bb29c67077a1cae2355de7af92f46395fb7f30ff
MD5 12ab66338bcb687fdff4cbcbd4889300
BLAKE2b-256 8b4c2128ec8f60e5cb9c823fdbd2c20c45a4a48a6ed9a691f9de3ec703a98f6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09e609727e9052ac51a74b11439c545ba2f227f401a43aae57e10b46e909b6e5
MD5 e9f1c308b29fb744c15303705a151e19
BLAKE2b-256 d6ede2b2b0f92d65ad9ea20410000b2cbf24baa4e174f7676a7b72d1da06fb19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f24ac8f7356727982c225c32c6fd6af7c25c131ae3819aa82c508d17fe4026b2
MD5 a6b25c3c06c70f54dd933673a889b540
BLAKE2b-256 8cce630328417e327e2d84d682a55cc0893bfddfc18a5d2f69b6219d38000cae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f46b045267e990ac43dcbd366ae97842fb02ccfd4f4a2d59c6a43e3e0bd9747
MD5 b697d045b0bd3fe7c35ef4fd7b9cb063
BLAKE2b-256 c0eebb763d0de9ef93fc9f67471c7bb30261589e6c5bc062745e045c91249d11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f013181b9e6ea706967f7f4a3658bc5abec4a1782b32ed8383e410fed5450508
MD5 8f956bb921335f3878848adb77ecf6fd
BLAKE2b-256 9c6b834977bdd6c247ca91398f527896adc3a5b08aca496d991cf16f9cade55c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36045d3a1f54694fc3ea704f86b9c7730b5d6710b9719cbb32d41b56f45ce11b
MD5 913ccb9b62f5604229e04af5ee80b4e2
BLAKE2b-256 a682cd0e3f76c4b88eac0446757495ae9c011d8cf3aa0f7523e1e6490573cfe4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3aa6e3d52551d9068f608b76ffb0ed6512fcc90ea8e2fb60b426c54b6c062691
MD5 bbac6b2146f1e8ea3bbfa3b7c75f6caf
BLAKE2b-256 2c7a8cbdc2b7b33efebf1f2f2e4b17cabc53eda931337ff8d164ec9c9bfe6646

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daef24441bae9185cd8d3996190525e27303792cfeb37ec7fb18d14bc06037dd
MD5 0e3b1719b010d88c60dc35404168ef4a
BLAKE2b-256 74ed252f1393700a6538f32ddc41a12d50f770d346615f1477c5f3119154a049

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16691bd25810552c710c185822bf200aa5b7d8863a3eb1b161a48d49575c96ac
MD5 d33765e71339261cd60273bc47d98f71
BLAKE2b-256 007aaaa71c24852716f5ed9e0427765305c24b0f17a05024a15b06e98d017081

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a2d253624a1bf1c9318d480d993dbb053c246e7a74747c3339e3c53e374d90a
MD5 d4c57fd14c60fff9d49152eae2319ca4
BLAKE2b-256 9fa519be86f3b6d33a7449c27692c667792e3cf0f145f5bf4bd3e8da3ba89e4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e365bddc9297cb2403af9731d83b53a49b8d56f7b4c179cdbe4caaf7aea1c1cd
MD5 78267de0298142e8102b2d88c4816a11
BLAKE2b-256 8fdb3c4098b82ac525968cb2fbc2beaa6ed53c2c308f59823681f94aec0612c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e8e73c35ae271db559c4d7e5b515c3bdc9d98e360d74162e9fade654b460fa3
MD5 440ed98a5e6b1f23e97642c9ffd0b371
BLAKE2b-256 7680b038979cd62654adc2f97982d7fb9373b5e0b2f324eea96be63445b9b9a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 832df2ecfb9235454c6fae1c5acbfcc5abbd5cdb51a46aa713f167f7696d827a
MD5 05dda318db8a0e93214b093c63f67d13
BLAKE2b-256 a05d3bb312c45f538a1634cb4737b3ec58799eeac32c1e6c5dc528513e98fe89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40dad13e68c4909a2b2a77975457c27d8c0a684dbf73b2c61671d2bae13102df
MD5 9ad42c34788d378288062073f5f24915
BLAKE2b-256 848c6900b54486ed5c3d9e1b557be84247f080bbb12a4867cddd8aa82737913c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7ea56663c3c165408cb6043a3af6b83211fbf91bfad581484e646d2194bd69a
MD5 4e255dcf23637574f3b4aea3058597d1
BLAKE2b-256 0a4efb659c8c1e5ce67a381f67dc2e22a007ce08656acd77e627cb2b22e6a5e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bc55b918d194d507860d641446a7891e34a91073e8ddb60f17af3e891699e83f
MD5 5e8a63a4a5eea5916ce346063586340b
BLAKE2b-256 1d62be4ff93ce1ed67ea2255aa496a7cdc5ed629a8fffecb9bc692b1d53f5e4b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0ca0e9e3cd3e74ed0b1c5ae91ea708347578d07e85e16e530f8bc103ba7d8525
MD5 758e13e67e64c0c775ae8385b62b87dc
BLAKE2b-256 55b17de4e69c0c72d7b802600efb16e7e6c21c0a7aa01b640b776f62bbfce23f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e2abc41235b2deb4b8da150d8fed9024a3a19c8ec76fccbe1ae38fdbaf8d180
MD5 c36eea998b182066edeecec2e7aecfdf
BLAKE2b-256 a426a788aa8d47d66d6aa8e4b78db22b83bc9f19abce85beaf14d92d35a064a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fd471af5b966bcf81a6f2f5b841df64716bef065b5e46fd3a217541030d2d5e
MD5 93842d75e9001094ff4eae751e814bbd
BLAKE2b-256 c2f6d3469790ac22abcf4310eeb7d681f796725518e52810572636816fc827fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 564c54eeb5a689cdfccccacb0346d8c71b366e19a353918b5e6bce558ecec706
MD5 fa2605cd093dd243731567f74b322c94
BLAKE2b-256 d49272502e7af12695ec918f8e8568ac6efb8ed48d4c3ca3449b0626eeff4d73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f897e02f7222bc486b1173f4147db67bb5c295e24b75afe34fbaa16de8699aad
MD5 922e57bcb45d500a6acfb11bbf2b4c2b
BLAKE2b-256 29d3ea834670983bb52d825a6090e39ead5364eda84e12b052614ea8a459d160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c69c57a3df8ed64fb79fa93c31ea4b22658b5250c9ec528cde19789465c4804
MD5 7dd5769636788e7f27cad3fea3d74e48
BLAKE2b-256 af996ab0399c4407a29aec2501cd15c006f1d800703e84bc0e8eee923d3bda0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba8c1c75418dbdc08b746bb44f615ffebd476d0424f8cdf25e0f76a048ff58dc
MD5 16148c7469dc9b9d93a190c90f302d69
BLAKE2b-256 52f8a94b441fdec4a69827a19161c59e536f53bc7582b5f59615c16d1a6c637d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f09c3c5d3406a3c59b6ee112abd88163dbca94e21ca1b97b9337f3a25bf2aff8
MD5 f9d96b4f973bf82d51d28205a7c97f33
BLAKE2b-256 76dcacc2d06b2da005f859e41b413879026c9c786b7aa60a206358d60d5c80ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0604d5634a02a948322881adf9e7a6bc70efbefefa66b8c657dc86119f93c84a
MD5 1bc2632317d1b34568b4cf8847e8da14
BLAKE2b-256 c5fafd4869ac33381b024869f1beb5bd2cb66561a9507f78cf6738976bb9eae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dec25ee1bad7228b13d77dc7e0377b6340483eec86314ad1fb1029042ef5698a
MD5 a820c9631a13148d0df6489deab55410
BLAKE2b-256 a4bd2488198ade114748bdbf8648aad372938981d512dd436dd5e3cbf83d955e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33f54ef0f191643338309a0ae2fdf4bccb4f652bcd4250d2fbc0ab2102683312
MD5 c30239b5342a14b50d6cf7393b33249b
BLAKE2b-256 fd3a41995bffc33f97c848d81bd868b1ebbf507365bc4b9f112e0fd531bbe85c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f705db0f477da7dab64c474bdcf081c04a010ba47baa78277adc273331b2adfe
MD5 ac94cf87dd75a54bfa8d47432ce17ef4
BLAKE2b-256 d3b8f37ba15cbf5ebf269eaaf53779d3d939888457ff6ea75bb31cae440eed51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81a22c9e63eb2b8ead79aec591dd9ea18574cd1b48913533bb13efad9a057402
MD5 60923a0a85fe98ccb086a52c84178e81
BLAKE2b-256 78d703ef5d700faf049f9ba32ecf44d792ed82c0b9668298b6951cb35c831cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 365ebd6cb862974a75beaa2e3f4a7352433f7c016350d0aab9b17ed5ae0b867a
MD5 dbe18fd9c6a31309f8fb99f6044fbe86
BLAKE2b-256 fd987087ebf3ff4f89dacf0ac5b98067af307f993b0d77165df17110a0c81e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e9a6dbd62464de228257e26842d93e4ff95777fd3e898e49b8f89fc88e31ba5
MD5 5697a8d89b04d5385fef3a29e0bdfc00
BLAKE2b-256 231f2c60b6750bc3e293971fb761a3db3fd6813ae57bbc16e69a6a7abb080145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc8f6736c854817120f90c6a29779ef5346254252b6afd0e67500b63d6a218ca
MD5 6168a1ebff1cc9f816ebc095c362618c
BLAKE2b-256 58a4f033ecdc5f7603b3e660c3a6744da9564c2f36adbdd6b673391263041301

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6938f3ba889468558425eed7623d067c311d0592e585c9c3d1d86553fc334e24
MD5 7b387b3fdc3cc0586b3b0de497e24cb5
BLAKE2b-256 653412b85aef6b46088226034cd38f99cd7a3bbf16fbf9c5fb97fcfa48de6d4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d401f4d4d5d0f814fed542041d4c30b6c9e771e97ebd20af7d7c04c22ec5215
MD5 22e5fa8997032f0852e8e6ecb861b0fb
BLAKE2b-256 f4cbd0326908df55dd3e41178f9ec2b844afb691c8a39249d31ff80ac97066e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b95f58d79bcab9fa1fb00b9e998a821f9d2e9df2ab7f52b361b7f7baf80cb77
MD5 697441ba8b26d583e3a901016583d182
BLAKE2b-256 0556b2368f1683ab36e20099cc8bcb3c621ffe14ca0a7cd6c669008b75ea54bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bad572571f805d08c8e923bbc001e893a614a86955fa94a9553d8b10147b26b
MD5 3d4b2ed1451ead018a9f1b6889c6f6e0
BLAKE2b-256 3ed5892703b148f53278fb6f6ddf2bac2be892f714c22b9cbee5a1651086da2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb8e117211fd04cb6ba8fabb0ff65c9b4f910e08f3386c314d462a5d2b9f9a55
MD5 f2e2f3b9d7f1ec7ca59fedb0d0f4b930
BLAKE2b-256 9b74011cc219049757b49eea02b6e51a11e4d6cdf4c7112aba021951ce9d1c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e1a0ecea895da649c88bc076ade15e9c53e8dd3af99ce83ef95cd4f7ea6bbda5
MD5 4df16bdbd2c4b16c35c568e6b33cb266
BLAKE2b-256 ff12abbce9b25053439cc18ffba47ba55b8852e975e3bcac6ef8a63d5f124db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9639a995575f79264be4e68b826a6bf6c8b2894c7155284026ede9056858520c
MD5 834d10e02ebf8a018bc0d83e0402c1a0
BLAKE2b-256 53c509a4383505b64ae1789ba309aa92ef54676fd83c44ff2a9c3c1c131f8120

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be89df1ffc14c0cd2cac20de9f9b8c0d31c0391b700c7fe31b2c298184f1eb8a
MD5 e36f59aac05e2c1d3287b3ff512efc91
BLAKE2b-256 68db4cb406bfe46f5251355ccc0d37149a7e1f1e8bb49ac66e99470b86caed18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8fc11b6d2b6f8de19834e2f2adedef47927cc32159d6134e9191f31318b980db
MD5 2b475c4cb676f7b8c6e8dc24bd6ae528
BLAKE2b-256 f67c5e346213673571640e9535200fbbbc0ea609f2a50543b4e716d5000940d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97c6a6bdf13c424d2f64b6f0f79a1b0913cfd4ad2a19e02b8c358649c2ef5307
MD5 4406769ea81fcc17489a76f36b8626c7
BLAKE2b-256 5a8671d628373fbf971751212d8c69c8ed43801bac7a306c6cfdcb9a706882a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 892e91bf90432a44bdba171e37382a8871c39bef16091fa7b5fab465e047bdb9
MD5 e0d0ce3513d565ec098630a992f91262
BLAKE2b-256 52a0472380aa0348a6799c66db8c9c939d9cecbeea3f850a9049a8d46b39bfcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99fa7e51405c63511764e8571ecd5cf38a3eb5a74f390dba3b9805d6a3d811b2
MD5 605a50f9b92931751e408e93db973b98
BLAKE2b-256 d2e74d467b60781527dc21a30fe5dde981fc668bf67d7a3d9f96e4b639a6aea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44cf8ff14c431b01a7ffa1b0687f849d3b7b5afcff3aea6ba4f5cd1c5fa33131
MD5 238aba544246232dacd67b52a6652b17
BLAKE2b-256 502f0445a0f55f12cec4c9abdd32f2a953ba9a281a8ecd126e4d045ad6060869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1e8ff488becc7de170458034151b42127e7cbbf143a09576ca97de565532e40
MD5 bf8416ffb1d48036c9f6b400012482b6
BLAKE2b-256 41bef94f4e14163d81614fbb1e86235567c2f72a2dc03b06cd06f1792973d2d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 447f66ee9156f54cc3fd5c68c0c0bf2443a2e180053ab8675203f14a01a0ada3
MD5 0d38c6d52bc407b8a7a2ae304c17924c
BLAKE2b-256 c64d0b8994a8ddc16b285b31653b244ad02590333650b7ce09ac39b33775667b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5474204614af98ede90c946b89ce85a2f3ca4484af46f655af28b6ee38e75f58
MD5 33c15ed8996249481f3e10381edc455b
BLAKE2b-256 fecd745509fbe9542d9b2a12fd7c60c3a33895462f0fa2e087fa429d98586405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b625462e41e146b3ec0590e23cc9cb3f047a2c85701831427d09b6c2122388ed
MD5 d4cae5b14d1fb321597ab9b9a44f39bc
BLAKE2b-256 2d55d458ae3bc88d7b1c5bf9f4a484397c29900debdac8246b90e702104068ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3e2b25581f26b9efe6e34c14fac298364e32ee7ab302cdaeefb2c43a743e3f2
MD5 01201fea7106b8704cb591697923ae08
BLAKE2b-256 6ef345586211e2b9fbb041933ac5774352992e9d3a582ef52689aee2feb211b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79cd6092184e3a7c6fd87a6ec3fd6b230f44adbeab3d31ebaa02b3302448460e
MD5 5a1b6800bb4c1226190df35f4e38153e
BLAKE2b-256 84c5a6ab2bb76daee3d5696040b871d2dd5ac256919c5bb2ee7b18aa93cae499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0bc0bac864c86665ced4714b2c9e341d1db59ac28d8855b8ee43590c3b73e99
MD5 ca39e16ca48aae5401608afb6749cc06
BLAKE2b-256 62e8d4945d4c8f87226fac79b04fc3466ece1823a0ef7c27ee301bf8181f42c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0171d56afa7fa07690bc4b1713663cd25498c6c8fceadf8d6da4b436e523f4a
MD5 9a769392fd218742d57d431150316b44
BLAKE2b-256 d9494894dc6cf98e8e1b0ba24cb808f4d20e695f060c4276b53807ef3848447e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85e6657392784f1f4d16b047323f75ab9768612454186c3280e5fa9444ec6772
MD5 fb1555da2ebdc9020cb675beadc653c0
BLAKE2b-256 bf5cb95e03348c6e2aa1af606013db85ca2f4425dedb758ceb91b3abb0e607f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 832bfad6a3d6ed49fe921911c4de6811b432bda9e172c563fb202fbae1c83766
MD5 9a3eb7d206174e39b29b254f4bca3a41
BLAKE2b-256 7d7fcc801e566272c44540d283c537bc7efe621296206923b317aa72c3ab24f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1964dae03283a9b86f8124d43327ed3cad5b5db88b332315cbed11ddb2e9e265
MD5 9d5da48e94459b4ed649d7d7e4110269
BLAKE2b-256 84ab01fef79f20a368a4400a4634843bf28393a6b3fe801b04c0276ab6e9cbcf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f5354bebbbe6aad4bcd55688492baf8ea8fbf37428040daa9707004e489f171
MD5 f9b73a0f5d9472f0b091cc7b303387c5
BLAKE2b-256 a5b132758471f7083c6ee9374cb227e556b1d4f360dbd0c444c517f57543ee41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02d19d034eb851b64664e95927f2e34078fff0fb462d09546f2afdbc9e3084b4
MD5 d09ff3eee60e74102573a77faa03bcb9
BLAKE2b-256 d507f3e408419fe692ec4b3654a5f72100b63a2e8b7a3d44554bd4dcd779d295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc33aa98e0552cc93f3f8f999697da29dae58059dc20fa97db1af2fd40fd43ee
MD5 74ae0bbec02be45f65f0ed8ce14e8aeb
BLAKE2b-256 6e233ee3bceb20d357262077145212545bc7d6fa7cdb45f5a873f8284c373173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a596ad0353aad93abd2a97e8ee7d068304ad80493d3a1acb821dbc800c4a77b
MD5 bebb6f41cf2a21355eeb90d3ced263df
BLAKE2b-256 773285cd0e54ee2d2d56a21d2add80c06edcf15a18781cb049603d81f474f118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84e125d2e774504cb1f2eb0d324f7a38d718b15dd5a14abd53af1774da66bb61
MD5 d3d20b3ac82a17e7c1d1b403ca0d5b4d
BLAKE2b-256 93cc377e7091420a0d3467c891b5795fd1b85737aebcab76d5fe6e42e9cde856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 645ad7664141fd65047d9a7491338433b60243eb5d1cf12a8b3e001569ffaef9
MD5 7aa00ab80f2d99749dadafacc175139c
BLAKE2b-256 0778a199b636d59e5701f932f6227396a2f166c617f3250ab9e3987fe0d8be3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff8b6f7f0db66fcc3a53f813ac1db987a5da83cb64eea1f72ab54b68dd205dea
MD5 1667b1a08bde1b03c972845b437afdbe
BLAKE2b-256 e8f1cebf4da35b30d6f3e66090cb8ba09ca4db380e47e22b4286d421473f1b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91fa59966598bd86314163f93d08d3b9ef8b188b11058e640d71462f0f8dc9de
MD5 741c7a9bc8cb0ca62e3130a0a5d8c1c2
BLAKE2b-256 4a2476e1ffe44df77fe0c339f7b918681726bba6154c0d99eee3c43c89f63ff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21319a0fae811b1df6d558a09ee3e1acb8b5500154e11fda4b512ecdb67f9f57
MD5 6a394535d25f3c78fb76d3816da3e0e4
BLAKE2b-256 a65e289e6b3d344f622c739efc05e212fa4ae500b0db68c8dfcf73c0552e2b2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0b6bac8088edad25fe1cecd4b74da785c393b47b76837e81e031630bc00e33d
MD5 45541b5b7976f84cadcc48af0d4edd36
BLAKE2b-256 084b8d8da24b7d7620eb9d84118893f909eb4c3989b16087d75bbaf443589816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8125c993b8e7321c74f36623d8d06253ea128b2a637cb8a425b1bb0cd4a3bbea
MD5 5d756b6a2094d479776d0a5a7a38efaf
BLAKE2b-256 b6fe7c0e6a1ebaa261f706f4cb1f61130f36d33d807a695b656d15257383daea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a90de389f75933e7a83cafb1fa0040fd7a96c27a2e03dfc56a3cfd92d26b5b16
MD5 357f7e88a4c83d9d64c8ada42e8c54d1
BLAKE2b-256 025050f199349743ef84ae6463c2086c00672b54104ee70d0db7360d3c768654

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b57b648969e54254362f6fb3a5c783a9a04792a76aaad22a28058787a14670c8
MD5 39fc6a11074709cceba12410fc2009a9
BLAKE2b-256 3b3e20d4a556a0f927c41d2b5c7a495a645cd582db53e6407997db72dcf8ca37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f29597dfad9440143e1853e67b90ff81179c9d21c0ff45ff706ae2e5249c39cc
MD5 df24ad37bdf3f8ddfcd3e54c5d83c7a0
BLAKE2b-256 8b195162e760abf1ca436b931119291faacb4b7aa1a7ed184c91b28cf50634a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba5631a75c07870a747f1e8a9ecea3004138b5011396c99caeb4a4f906d3c63e
MD5 9adea9e736bef9c69320870b566d329c
BLAKE2b-256 98820427ff4a6b20900a008670538802c1cf11714d06013aaf9a754874be9c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e9346aaf9647d04cd2c9b6577d00fd13a79741bb335043a9e5fe79eeaa15cf7
MD5 0d3261288c31f434fe03131224180d01
BLAKE2b-256 b98d04dcc4ad995ab98474949648374dda65375f04e9ec79abd7ba2d96e17728

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44ee82346c3d87ee66964f28ededa2fbe52f42f2d2bafe7d72469cfee58fc920
MD5 397e644c4b77fe4964c2380464fb1d8b
BLAKE2b-256 6096e9cb9b286e1dffa866e9945b2523f877ef5dface9999b5e10ac5005f4b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eeefb5832afc1d46da1dddb0eaf33de95c5c4069aee56ddc419d8b615bb3d890
MD5 4e139eac60347f14ee8bd59582452083
BLAKE2b-256 2d58b2e9d7c34c9713a039821fb05d53eecb646ce4ad5c4c04265e44c89721b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89510b09cc2facc6fe792614edaa6ee7649c9c754220856b8cfc7465df6a9214
MD5 ce99481cfed29043711068a086d52f74
BLAKE2b-256 a71e4d77a901b88fdf20f7fb49100eaddab787fe809c0c929f914421a8139c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bbb6a1d95a6a41bb4e27db80dd5e1670c28e1bb2e41883b4f906d454a8d6eef
MD5 fd2ce595d904025ecc15a148e8c7b45e
BLAKE2b-256 9b7b1f8db5ae5010129328eede504ae5318cd8e86763ef64be5807260ec1ebde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1736647c8f94a8419820de3721c61071fe7682b1bdc19d79016457c0ae28e4e9
MD5 fce1fdde519231f5044d2f5ea24805de
BLAKE2b-256 c0e095c47a2dd69e1ed592f1ad04da651ee83705280362452e5d4f047683aef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1110721df7545017e45762b3fa42e494a1584ac62aea6287685821d48cca9cda
MD5 c7f36e592db21e9a63ce9ee95ca93b52
BLAKE2b-256 00eee31725175b30db2f01016027eb8191b97299df653d82772df251232543d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 83eaeb5190ac83ecce4558c2be2d938210f812ed555a02e403843d8f27f77ba0
MD5 6c120e95726ecc73a4f98f120f10f25b
BLAKE2b-256 5f54e62c34d4ca3d3e675ed3ece6cd5e2fe261a8d77ee076ce084b67dcee0fde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c31211248e65a71972ee8e3f69f79c9bc8ae10b12aa13ac800b2b5bdce0ce3c9
MD5 1fce5e95e381cf344956e7931b356e0e
BLAKE2b-256 2d8f5465abace6d750e9cab1442b4290d61ea1f4b9e4f01efec6bcc02d25ce41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 decc1f3e9a45ec43af9ea8ad008d44501524f28030897e5037e3244e35ae109e
MD5 b5c87d2977f74961bb16888248b03f8d
BLAKE2b-256 6b9e71aca51677a7da76196bad5e74b75059a91671434772b80c184a157cc7b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c473665038e8b614a476f19182b7ab7e343a8fb4a1fccbc0110fe2efd8544965
MD5 5943f204ce62d940c91e6721d740381c
BLAKE2b-256 121744f37543168d55fd992141dddd8a4fd93e52df1bf8d0f9854a36ae3a2708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b23fe99e79a9ac9babdb276573dc1f1e85f6ab6a892ef73f09e196ac27daf8bc
MD5 9bfb98f51a61bf911f7ebaab6b4b7ee6
BLAKE2b-256 27cec4559c44a5ed7e5c0f72b46ec6cd89cffae0b849617519f518fde5bd0407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b13a808324f58f02af816dd847757ade65404b3fd7415dc0410ea3b4841a8e52
MD5 a1b565153c6e872dd81d68a20fcc9a7c
BLAKE2b-256 03c234bee4d86ae5e85d80c74e2efd6c22443635d3ad4cb033471a99435b6353

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c92010c82b16a4e4c74c8eb7897f55feb8b271151f88c2e659158bdf7815f928
MD5 ad8ab2e3cc23f271cb78c1b75fa98ae9
BLAKE2b-256 bdd49771c23303dc36fb436a8ec9c2a4da41f01dbad2c7e990370847da7d4953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5659335d3e6d3c55a23ed3b946e0cedb84dcdd3cdcdcc5be5fb97b148644390b
MD5 5a34ea6a39fd545c1247b364752a7b8e
BLAKE2b-256 e7493e664cdf7ea74a63f8f98f1ea4f5e3ed604798abc355d8c698c0dfacd2c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e81bc748f3dd60c643f7764e87fde198b3eeca4821f6a94bca159227a600b3a
MD5 86178fb770aa42c29fd27ad273d088bd
BLAKE2b-256 9c856c1160c1688ceee45bff735460efbb0a8f74c93c98f494a7c32701b905aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e7fc9683447b27ba1a3db59eebbe72b734ecbb13aab08d2c4907bc1b2fba1af
MD5 d0b8a76127e866a553cd97b2ac038641
BLAKE2b-256 6a6f0d1e60ede481ae8d922d68dafea522cc9939eecffa803141baf0a62d50ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c26b82419251f58af42ea454c4cb64fdeb437b36e998313bff8e40fdefd77c0f
MD5 6a4145653565c6da4af447b7928363c6
BLAKE2b-256 426073c6bafd4c2168a8a91350917ac1823c5e7ec287e31fc21a939e184a3bee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 987fb31ad0247df2742d04ce5007a0c704c938852d7bf9d6ec0e3f5cdcff3392
MD5 f97f4efcc983067ffb7705414b11b520
BLAKE2b-256 8b4037bbf905754202579e4f9f543ecb03ee7d10c7ada48c65811bfff17772fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d6f98cfbbfe17380e8f6d31bd86e73b8bbc41d158370c5bfe0541ad966ade6f
MD5 4f1bc47f302a1a62189f6f338ec3c7fd
BLAKE2b-256 59fe9ae27fdfcc1c0e9d84003d1b3597eb829e059c1ee9d62821a28498280288

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9354c1dc3c63fdace65978a91cdfa36b864f924edf8188665607e6da9e0c61c7
MD5 6cf34f76eefff00d6cf821b0f24ed3c4
BLAKE2b-256 9e1b9b4dc7ed500c4e1e6b6e523c7f22b6773daeea9269be14f3b5304f2d2683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 974d192cec9aac34fb2907ad02ca10d36dd37e37c1ecebe18ec6eb09cc399601
MD5 8bddbea8c58ab79f5e5854c8cd75f615
BLAKE2b-256 a054bc8a69976ebe5f06a1ad565cf96bc3f3ccfbea0961b51991866504db51c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 899a0ad9b7391bde91e5a9bb02e57309dc26691ba8051a6d18d4ad6509eb3181
MD5 4a55a2a0a2ca82a24b69422ff98c09a1
BLAKE2b-256 939938215ef7c49eb7220c12ee141e1da003423ac12842705421125f5d101dda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2343643b8712b7e8b11e46a845cc0eb9ff0e5d0537844eb4706c02d52ca629e7
MD5 4ac942ac2b08bda96babb2901b425232
BLAKE2b-256 c55e9a424f14ce49325eb2d99a9b9567d75be42882afecffa9c3a35a8a89af8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a67cd76a163e82a8b14986d69cb85042e1266710713889ec1ca5dfa573a38844
MD5 ea999d7e7717028dade989ec40b39e87
BLAKE2b-256 f99dd3bbc66e01e7b554702b7d20f97f36130fa92f5cef94b18ceacc5f8d548c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wavelet_matrix-2.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 552ce8f5a5ece1236b30c928911b1ac8a3d104b2c81acc4d95d80661e1b399ff
MD5 df8a131843a4c3ea780054612e4d3ff1
BLAKE2b-256 941527e867305b99fec190f78ea7f717a2e43551afc0118fbc879f281f53feaa

See more details on using hashes here.

Provenance

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