Skip to main content

Optional NumPy backend for G.722 module

Project description

libg722

Build & Test

Introduction

The G.722 module is a bit-exact implementation of the ITU G.722 specification for all three specified bit rates: 64,000 bps, 56,000 bps and 48,000 bps. It passes the ITU tests.

To allow fast and flexible interworking with narrowband telephony, the encoder and decoder support an option for the linear audio to be an 8 kHz stream. In this mode the codec is considerably faster, and still fully compatible with wideband terminals using G.722.

History

The code was originally written by Milton Anderson milton@thumper.bellcore.com from BELLCORE, and was modified by Chengxiang Lu and Alex Hauptmann from the Speech Group, School of Computer Science, Carnegie Mellon University, to be fairly fast and efficient while retaining high fidelity.

Steve Underwood steveu@coppice.org improved the code a lot later on and contributed it into several popular open source projects.

Himanshu Soni sonihimanshu@gmail.com has adjusted some coefficients to avoid overflows and underflows in the decoder.

Phil Schatzmann phil.schatzmann@gmail.com has added CMake glue and Arduino support.

Packaged as libg722 by Sippy Software, Inc.

Build and Install Library

macOS and Linux

git clone https://github.com/sippy/libg722.git
cmake -B libg722/build -S libg722
make -C libg722/build clean all test install

Note for macOS users: The library will be installed to ~/Library/libg722 by default. If you prefer a different location, you can specify it with:

cmake -B libg722/build -S libg722 -DCMAKE_INSTALL_PREFIX=/your/preferred/path

After installation, you may need to add the library path to your environment:

export DYLD_LIBRARY_PATH="$HOME/Library/libg722/lib:$DYLD_LIBRARY_PATH"

iOS

git clone https://github.com/sippy/libg722.git
cmake -B libg722/build-ios-device -S libg722 \
  -DCMAKE_SYSTEM_NAME=iOS \
  -DCMAKE_OSX_ARCHITECTURES=arm64 \
  -DCMAKE_OSX_SYSROOT=iphoneos \
  -DCMAKE_OSX_DEPLOYMENT_TARGET=12.0
make -C libg722/build-ios-device

Install Python Module With pip

The core package has no required NumPy dependency:

pip install G722

Install the optional NumPy decode backend with the numpy extra:

pip install "G722[numpy]"

This installs G722-numpy at the same version as G722. You can also install the addon package directly:

pip install G722-numpy

Build and Install Python Module From Source

The default source build installs the core package:

git clone https://github.com/sippy/libg722.git
pip install ./libg722

After installing the core package, build the optional NumPy backend from the same checkout:

LIBG722_PACKAGE_VARIANT=numpy-addon pip install ./libg722

Python Build Options

LIBG722_BUILD_MODE controls build profile for the main G722 extension:

  • production: build with optimization (-O2, or /O2 on Windows).
  • debug: build with -g3 -O0.
  • auto (default): if . is a git repository and git is available, run git diff v{version} -- .; build in debug mode when it differs, otherwise production. If . is not a git repository or git is unavailable, use production.

LIBG722_PACKAGE_VARIANT controls which Python distribution is built from this repository:

  • core (default): builds/publishes G722.
  • numpy-addon: builds/publishes G722-numpy from python/G722_numpy_mod.c.

Python API

G722(sample_rate, bit_rate, use_numpy=None) accepts an optional use_numpy flag:

  • True: return NumPy arrays from decode() (raises if G722-numpy is not installed).
  • False: return Python array('h') from decode().
  • omitted or None: use the G722-numpy backend when installed, otherwise return array('h').

Pull Library Into Your Docker Container

Published Docker images contain the installed library and public headers under /usr/local. The default-branch images are published with these tags:

  • sippylabs/libg722:latest-debian_sid-slim
  • sippylabs/libg722:latest-debian_12-slim
  • sippylabs/libg722:latest-debian_13-slim
  • sippylabs/libg722:latest-ubuntu_latest

Branch, release, pull request and SHA tags use the same base-image suffixes, for example <ref>-debian_12-slim.

ARG BASE_IMAGE=debian:sid-slim
ARG LIBG722_IMAGE=sippylabs/libg722:latest-debian_sid-slim
FROM ${LIBG722_IMAGE} AS libg722
FROM ${BASE_IMAGE} AS build
COPY --from=libg722 /usr/local/lib/libg722.* /usr/local/lib/
COPY --from=libg722 /usr/local/include/g722* /usr/local/include/

License

This code is mostly Public Domain. Library test code is under BSD 2-clause license.

See LICENSE for copyright details and each individual file for specifics.

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

g722_numpy-1.2.7.tar.gz (19.9 kB view details)

Uploaded Source

Built Distributions

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

g722_numpy-1.2.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (79.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl (81.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.34+ s390x

g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (82.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl (86.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.34+ ppc64le

g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (88.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl (81.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.39+ ARM64

g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl (80.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.34+ ARM64

g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (81.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl (78.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (79.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl (77.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (76.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (79.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl (81.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.34+ s390x

g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (82.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl (86.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.34+ ppc64le

g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (88.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl (80.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.39+ ARM64

g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl (80.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.34+ ARM64

g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (81.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (78.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl (76.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (76.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (79.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl (81.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.34+ s390x

g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (82.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl (86.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.34+ ppc64le

g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (88.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl (80.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.39+ ARM64

g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl (80.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.34+ ARM64

g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (81.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (78.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl (76.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (76.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (77.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl (79.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.34+ s390x

g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (80.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl (84.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.34+ ppc64le

g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (85.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl (79.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.39+ ARM64

g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl (78.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.34+ ARM64

g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (79.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (76.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl (75.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (74.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (77.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl (78.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.34+ s390x

g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (79.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl (83.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.34+ ppc64le

g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (84.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl (78.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.39+ ARM64

g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl (78.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.34+ ARM64

g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (78.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl (76.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (76.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl (74.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686manylinux: glibc 2.5+ i686

g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (74.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

File details

Details for the file g722_numpy-1.2.7.tar.gz.

File metadata

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

File hashes

Hashes for g722_numpy-1.2.7.tar.gz
Algorithm Hash digest
SHA256 748db532644739c9590ec9c9029b14f13990119914a5c00aae3c5dc99723c352
MD5 7d864bde052f05d52b21f8949316ac86
BLAKE2b-256 fb97909afea5cb96dd72257b839cc7c1351355de1be588fb2f47ed4d3aabb622

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7.tar.gz:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b23cfa588f736f4a00b9026eb6e2cfb605f50fd2cc021c36c7d64371577e3e24
MD5 67e034ea6b301b09f2a8024c54f703e8
BLAKE2b-256 1939f35d1428a3c65df98146aaa18c875f2767254adc7706bc14f1172e825859

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 e394897142c826316a6f7fb2caf8a2f53cf27b9f952503feeeaf7738702d7ff2
MD5 49e65f96f41319db5aa035a449abcaa0
BLAKE2b-256 96dddff6c034d8f9cb6f8d73ff4f1ac8736f83db9adc371ef724b3e6d091b05f

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f1c2093107796464dff791a613094843891643a3dfb71459e082e6bd4c09ea1f
MD5 eba63c5fbc07656369665f143d101bc4
BLAKE2b-256 1d816825e66050f12bf720a9dd5e124d65d295cd113d2cba315cddb4a84bfdb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 207367c576bcd08fe8cdf3e98c1a42cd8efebc0a817a445f4f6f2edb22f4d8cf
MD5 4116a74934ed48fb084162c673db7dea
BLAKE2b-256 998721857a206d5a2585edb9f1e83fab59f0824be4c56f74705b96fd62b6f300

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 52fd55913ac31634c916883cf940b00b67a68c7b5bf09225d01ccfcc0aa2e20c
MD5 69e434efa5005b964896f08674dfe7ac
BLAKE2b-256 b30b3ba74fa9efa87fcd05c5512515d1f754da0519863ec3c6df2ee26aaa13bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f41fb9dae62d093e6f9317ed7b29a12d653b94bca63523024741e886a75e37cc
MD5 87e1ebdec736067b7328ee12e796b2d9
BLAKE2b-256 3a75b19736402ca89f10441591fbccee4c84c34562cf0692f55b580389d7a2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 1ac7643c4fe54071f823937657af1a04bf0f976943608fa6b8d8b592c56b8574
MD5 322ac130e9c4100e774209af1d1bf931
BLAKE2b-256 0a8a73d20ac26f169989b0fa3a0206bafc81ce81b6fffd37b03be62731f26d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53e04e5f3a1d0d66e2863d136ee251812e2f971e5687f7976f9d78f290606b08
MD5 0cca2e2e6a7e362ef1bd20af45bad7f9
BLAKE2b-256 5796db7dfea5056fcf8216f17d2411aada665d4b172f009a1d4afe1b9efb6f8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fe356859c45a26e247cd070a537e50e269b27a4bcd517c8c3809b2ba7eb8297d
MD5 ee33583a3cac06abb1d47f97e0c6f52a
BLAKE2b-256 65feab9fbbf1bffd51d7c6cccb0543bfbc65a477eef991de4ca3f197f1a9d9c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8864a1e6d62b73b02983ef10b5f52085c997076d71451e6df15afd71f5eb893c
MD5 67ea3d030730886bb0e1547e7fcbcb02
BLAKE2b-256 701c8d6b8051e564d58e337fb71f632d47e91e1cfed81dc1442e57cd51d037a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 bfdc7f015cd65095931a283885d3b2e61ec43ab5e82556b10cb01eabb9d5a1e8
MD5 e2464279004e8315c17242b666b8f429
BLAKE2b-256 4320dff979fe9fb7771dff70a270d330576fec1700a4882811befafcd35033f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 031fd1f271b26a51686895680cbe98d97832cc4ca2e43a7b739680bb8c16979a
MD5 d2f81d3acaf5554585017b1527951059
BLAKE2b-256 62c81f7617eaa9fe872ca7fb7be3712a9d9ccfca1e2ac6feabb8940502a17a82

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a4d7d801afa8e1cc75aa637431c379eff4756301bf993ad73dcd9187e0c1ca04
MD5 cc974709a5e270be9b1f045831113fc3
BLAKE2b-256 191b6c11f7158b11a059119b4ccf1db52961a8e3100f7e3643a1786551ca65c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 bd945b9f8469b98906afee78bf70df7aa76ec0eac266a1df2bc2b40fbfd9257c
MD5 d4d9bf4b5c401bb396508a03b7f61b13
BLAKE2b-256 ff425779843110a97acf59308baa95646b1f4ef0d83a4e7cbae12b1caee2ed6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4d6b18e5ff57fdf519918e52cdfb2a631f93214b92bbb7b123f721b2b89c1f14
MD5 fbc06202ce5790f5a801e8c36783d32b
BLAKE2b-256 866303524c342f435296e8752740e7b00337239df32e62ce84990adaf1dde296

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 67313d97b6958187d9a9847c7624f15bf1d6a371c1567cd21f7edfd74f72b0fb
MD5 740b99841d4d653d970c85ac40b4d514
BLAKE2b-256 711b1d05977e4d541b08066fa1d3270418971c7b6ed7f83ef3c90795621b27ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 97286e5fd1a44e9dae3a364e1b4ebd8e7a84968ff4f43ebf1fe4638d98ac381d
MD5 0aaf2d7dda32d35f92f666a4a1e05845
BLAKE2b-256 d9629e7d3a66f9da804f05a913a323c804eaf4edeefeda1a4830aca14eb86aad

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 249862df5371c6bb5f8a9e3b5717b7c13df3ee74eae5a019be143cdbda6ce95e
MD5 94852e64950a131cf915ab824bb390ed
BLAKE2b-256 cc4a298f78722582e8bcbf8d9730d8479b5d3f3d6562c9f6b06414528305dd87

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 d165d4ca6437b5c2ac0b8d33d23db2dbc1f4ffd62a0b1818b67018398a7abcfa
MD5 e5659961b827ad7fead93835c2b0d5d3
BLAKE2b-256 6921acafae0d82de953eabef96421bf9e3fc2e0eef7a272797bda84ab4b5bf1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3d107302d832cc87e3723ca49c10a337bd495485ad0eb1d3f6fd3173e0dc664
MD5 a3d8cc40283d3f24a94dd978c120ff12
BLAKE2b-256 db61c31d4e7b62fea58823a93340b00081fc4c956bdcf74d306237767d86e42d

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2d6a047452c7e69abdb146e1c4d7172ef73802e02a7946330e76021ca857de71
MD5 ab8d7ed6a9e7f95e07263d1f9ba4ffe3
BLAKE2b-256 50f8ddcb92d2516b4c1db92cd09bf07f9c8785adfd9cdcbd244583c499a2ee14

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bbac0b5267513d99decf175daeee59e2024e40247b49feea0a3b2358450c1884
MD5 deea48b8f64ffaa1338182587be52eb8
BLAKE2b-256 b7fa187831bd5249e211fabb324d358f1f1dab72365cd84b51cd31adc1f4d8f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 0de58626b908935bcbb9f33ed971845f1ada174f756d0fe33cdadc3eb19324d9
MD5 0baf71bd59f2cb922e386d7356c35b81
BLAKE2b-256 3bf45cfe6e89d99e61b4acd715d65d2bf9607ceba9d69a52bd0dc10a0b0b59b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 cafe81f5fd7af2e5d940bf96907f90b16cbd7ca9dc78e43e1ab41b41687613bb
MD5 bb8d5f11a73cd5feaaa601fe61c0c401
BLAKE2b-256 371cd5fcca9ad9e42fa86efb8fcc8337a1644259d99bcf940f8319181ba9c080

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 733a111739fdfabb571f67172e608d46848b1396fca618a933c7ab4a88d8daf1
MD5 58550e860dad4affb053269c76dbabea
BLAKE2b-256 6033eda9bea96ba0d1a625b763fd37803d2e8737e27de9347d3770382a1cb69a

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 9aa122275ab680fd79ba4c7de2d7a1ed08870b5c368222686a8728b151037931
MD5 a45026fe9f8c4c1eff6d1676868638b2
BLAKE2b-256 b0619ff0870870b1253a0d73efbcaff82f484f8c630ddadf5811f5c55a67db96

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 56e0e684e72780b67f8964a63cbbeffa3fc2144623595f50207292b594a9eee3
MD5 7557691faedb39992cc7963b818214e9
BLAKE2b-256 fe9601b9829967be500d1005367b48a5121869c87244005c0d0e8eb66aaa6301

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 e5b3b4a2a7e5aa633e6b70399701a1462b10bd6c216d8087810827a04eea995f
MD5 72c212f2f591e75cbca601571fe02ae5
BLAKE2b-256 e82c788bf45419fa7387a8ec1cedcde118402820c4064275e4e1fb7d1ec5f00e

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ff4729dc74de85e2538fa6ae7c994670550ecc8b6fb30af8a711f2037224ae82
MD5 75b38a7e30173323deb6bedf8cf1fdd3
BLAKE2b-256 f33ea717a7b811eecbfdc01bd143f1a34da77cd6aeb5048245ec44e7618d7395

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b98835f6c0cb06d5d3f19bd2e78d4717a571b2d2c1e8dfa8f9e218432ab2dc11
MD5 6d7c7042df34ed6bd00dbe920289df5e
BLAKE2b-256 9760c0b2452bdb8f1f406fd8477f247dc7c106edfa68c07a8406622b253e9099

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 6e0c0955ee7f8f702c525ae1a7a244aadac626ba4d227c95d815779ccddb04c1
MD5 999938016d12064ae33bf0b22328f15f
BLAKE2b-256 ae1f988d3ce19a2893f251504105785181a2796bf93a6f651ded39360c0e03cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a676f53b5446e85fdc2b0e49bcf6f915f09efec0a36d677784ed69313ca168af
MD5 1d874a0a886bac6e8a08de8968ec8fea
BLAKE2b-256 958acc61765e9593faa746aa4c0daed46e3b228639aaff6e16da0b0159b096b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 699b19d0af80cd4e5a26018927866b3da574582156c74d0d5046f66c761abc37
MD5 d088e8ad318993b02ffae873c14615c8
BLAKE2b-256 56cca316a211f26388e14f9e5e6f9afc842707bbd46c56b274ac83972d4ba491

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5023596770baf953162aa2e11fd0d3ca83c6bc45f42b637f2897e2ebd06de53b
MD5 103c47fa082fb9cb7c92c9feb496c67f
BLAKE2b-256 2639f803a3bcae79d00a7f70e3c4ef3d866b6dfe5ff47c250076dd31cfd819e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9f6785825a7dff3a518062f7d6511db802f849fdf8ab31f91ea4ba6126ca0fc6
MD5 b142273f1342a1d0d0faeb51fa70883d
BLAKE2b-256 0d92ef136188a894824bba612f8afef299d336ef0f9a153da2125b8d9f972708

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2d16c04db82544d5fffb9ba0279c0253ebc26cd9bf7a0b241d9f88e0fb198581
MD5 f9685b2155704fef90389d31a7fb2a15
BLAKE2b-256 6164c67bd73c770163b01c2eb9f405fa1fab99c53445ebe848cd82f3c1d17d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 73bc0ca6bf974080c3db38f8725cc83e97d69bae5af13ad42464008922d59bf3
MD5 7775463a306b89a056a0d59be9ec2d97
BLAKE2b-256 87a9ec18e5566f68ee6e785aa2cc2ef97ae2516f85cc9c8c015c586fcadf3cd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 963ac56ac246bde1abb0dbc7a7387c22bfabffb875246760319bfebbedc89ce4
MD5 28b3a98b9af2ea4d5cc45c15e1dd1943
BLAKE2b-256 3279cdc4fa4d63bb34172f4f21f350b6c95be0e4ab3b9ae9d720f7c8c53c60d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c56d6dc978ffb381646c729f9e44ea88b0e99b22cb5ad4608330c95efa50353c
MD5 7f94ecfc720c4fbe3df9f252dace1d07
BLAKE2b-256 bd3690ed086021426c3d85d2a99a59b9033f38c5032495ea200707fe668e3359

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 84f4b56b5c4b840b202651471414ea105aa67853fe5142929ee7c2afbbdb3d7f
MD5 5a02b39eef933ac48395c59a8d6a6868
BLAKE2b-256 3a034fa6468ad068a97ac9f57620332ebda76315eab7a2aac7e68043670d9faf

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 528f1b65301f967cd40b8861fd0419b938f92810a3a1c9f80a805714cafe8fc1
MD5 ec288891c4c327ddf6f7bef572375b46
BLAKE2b-256 c39b03fde82abfa48e6adf670fca1921d29ff4381d2835cb98cd8ff4f285869b

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 536e8740bfe8e3c6670176e8d59c113f4cc280b3c4c41de2c24455f820b0cd20
MD5 eef9db320b63d904da400fc1477f2044
BLAKE2b-256 a0f4b7f44e08b48128f256294518ea393ccb52e79a521c9ca8e404b55f64de4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 764297e1b901640ff3011010511b98318fb95e38af5d3d99189cd939d697f53c
MD5 5e2198ed5ebd38c50a1c2cca97cbbe3f
BLAKE2b-256 1a23ebbee6e7e40e66d8962af0a97ace41ccad100a56b68dfffa742086aee7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d7e07ae6fe830ebc2f60db6d07c412300e4fb057cabb8abc77ba005fe92d2af6
MD5 a35b247a124682bbade2eb1bc981bb24
BLAKE2b-256 86fbc238c4dafbcf51f8ec84726d768d8e24c67e97f19bb9db47baff187f17fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ce99fae621c0e99c09aa65da8de332b74cc692a3dfc9df803681c94b8e429725
MD5 e48bf4213833531f5e7baf974a6b1da6
BLAKE2b-256 376c06aaee8dc80eb6fa9b2d243add6aa0c76cbb94b06fe60f141d23e2a6f916

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 318e6d53c82ac583874a5cde9a4684d6d1f0db354112bbec52994459e2392f52
MD5 8d95fa05d168db78c128dd42aeafa851
BLAKE2b-256 9fa54486059cef83fcb52aad521917692cacd4c920a16111d87e65992a15f938

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a8663602e2854d6b2ab0d8958caa3dd6423ac602ba69e613cd226fed8d79c1dd
MD5 c19aa68490520190a2ba6a84ad1c459c
BLAKE2b-256 9016176099cfa65066cfe45e010777daf4106d390f0a85e1c967eb79769db6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f466784a6ab8769280a74be8b14b362a12e8000d08b0f616f732134ecde7e94c
MD5 0095ac228e2449aae3dee76b600bdc72
BLAKE2b-256 6ca984953bf56046cf39670f8bd5e9334c0ecb67129048ce8ede90db2dd4560f

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 48fdc500205cb18750852c788d821889a5cca80aa6f79773779af62d1639f6d8
MD5 cf5fa4b4ec422019a8ae3a6184b772ba
BLAKE2b-256 a029d6ddb03cb9074efddd21f6cc008d94cef412eb56a43d967d3a45a2b50035

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 1a723f5f215a52f11b3e82660d38386c7f674969d7a0b469c5b1f7578b8bbc4b
MD5 94a1e12ecb5278b5330d003fcc88c976
BLAKE2b-256 5006062004bd8634f7b2f0eb60461741dc514b9d4e5db31ccb310865a39ebf04

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a7db9a5717c6ae8f54f925b4849b3c5deb205adce1cea172ca5a1eb41531ad55
MD5 1a7303a34ced79eea285d9f93a328d3e
BLAKE2b-256 13922e09f5d659cdf7a7f5a1bb5a15da5cac46605898a405fe86e3b31a1a7440

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 32be69cc0110c99f066462b4a68075e560a4d59983bfd5d8f67af6c711a1d6d9
MD5 5895185add7537c471f394800e0e06fa
BLAKE2b-256 b4b7b4ffe3f523f486268286df495dcec82cc832e900118189e7cf80c1ce43d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 35cb1394710f5e4e395f8d7d36220b339d604b1bb623e45202ca0cb167e68d22
MD5 65084b0af8e9d529a74bc2359155b567
BLAKE2b-256 32551c964919832f5b9c95907b890ed2f8e4293d9be7550e01e22273343288d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 04ecd2641049a8aed95bcea913929d10008d92185e6f3462a991b8f9a5a24fa8
MD5 538e49b5241eb56a74b7a4e1c7b436e9
BLAKE2b-256 5b6c43146e194f0a0ca1e3f6e81b56fa824996fd136e05add2782f8d3cbb4a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 891607f62a152b8577315f3512ec2402df1fdb2d5e8f8e484cb03e1f476b58aa
MD5 d284c88eb2eade3f488b0f803d2bba61
BLAKE2b-256 bea7903d5e898b512e0cbaef4a0b83229308aab4045515d7f64301709e7c1d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c9117300c4260d9e778954bea1be911555b71a2a674f078e5bc69d550432654
MD5 6e88c8b886c80206eb22b92077799411
BLAKE2b-256 9289f4e320814e92d4aede356e4b9a379f36d9276ddd59fb22a2903b447523c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3b739d50820f3cbf76565f1eb288fbf845ad782e4b3d5a2ec503075ec44c5c24
MD5 8ef1870a4e4d9bb5c50b7ef044a6ae3a
BLAKE2b-256 c8c08732fdbd0df91b5247dbe249628b5e0bee7c7a214d1e367f928ab673a46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3a91bb3f4b3d0c08f0d02f91e4a703fee73a13ee0f57b2eb622b13f9f6196ad0
MD5 54f965dd94549bf63ebc8e5de16afcdc
BLAKE2b-256 cf69dc9eb1e95e4c8482481633175adf31b383a5dc57b8f08046f999fcd2c82c

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 84092b146bf874e0e80c66769236efbcc93e0a5adbc85e3f864a8e0c571880d4
MD5 f66c4e3f646e65423daeab10558b1c78
BLAKE2b-256 831847546efca35b2396137d9991dd93cf66d9cc996cf99160933ad5b72e05a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 94e2f61a5e47768c1ff3a950118da03765efb85f1153f9381545346d471bd589
MD5 a0b841d8d4e14729f81d2c1d1e95a695
BLAKE2b-256 d655692f03445fdbdb11785d491607ab9580476f25fc1f99b2d0a53a9ca38377

See more details on using hashes here.

Provenance

The following attestation bundles were made for g722_numpy-1.2.7-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: build_and_test.yml on sippy/libg722

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