Optional NumPy backend for G.722 module
Project description
libg722
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/O2on Windows).debug: build with-g3 -O0.auto(default): if.is a git repository andgitis available, rungit diff v{version} -- .; build indebugmode when it differs, otherwiseproduction. If.is not a git repository orgitis unavailable, useproduction.
LIBG722_PACKAGE_VARIANT controls which Python distribution is built from this repository:
core(default): builds/publishesG722.numpy-addon: builds/publishesG722-numpyfrompython/G722_numpy_mod.c.
Python API
G722(sample_rate, bit_rate, use_numpy=None) accepts an optional use_numpy flag:
True: return NumPy arrays fromdecode()(raises ifG722-numpyis not installed).False: return Pythonarray('h')fromdecode().- omitted or
None: use theG722-numpybackend when installed, otherwise returnarray('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-slimsippylabs/libg722:latest-debian_12-slimsippylabs/libg722:latest-debian_13-slimsippylabs/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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file g722_numpy-1.2.8.tar.gz.
File metadata
- Download URL: g722_numpy-1.2.8.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a89f6a4075bdc7e40747f909d2a4af7682bd66f145f24b874dde463d3a105bf8
|
|
| MD5 |
e0ccc1fe2a405fbf831d7e9375fabb3d
|
|
| BLAKE2b-256 |
4934b8cec58f697ec4a133848d17f7883d2ef6350e9fcfed0f83ec2a1b2277cd
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8.tar.gz:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8.tar.gz -
Subject digest:
a89f6a4075bdc7e40747f909d2a4af7682bd66f145f24b874dde463d3a105bf8 - Sigstore transparency entry: 2013953591
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 33.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80e3fb15e15d9952d402693675757de82c7b46dbc3048ed92c695452723bff22
|
|
| MD5 |
d81508036844fdac773719eb36b11af8
|
|
| BLAKE2b-256 |
043dfa20ef5603154b765d12c81455c58b53431456f58b22d7ae6719ea0a46f1
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-win_amd64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-win_amd64.whl -
Subject digest:
80e3fb15e15d9952d402693675757de82c7b46dbc3048ed92c695452723bff22 - Sigstore transparency entry: 2013960940
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-win32.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-win32.whl
- Upload date:
- Size: 30.9 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90093e2d2eb6667d4b88c03852da7a82339f8b82e8cd48cd073e4d7734b39ddc
|
|
| MD5 |
b00042ad4892eaa78d459b96f307f162
|
|
| BLAKE2b-256 |
01cd1c13048feff25c458f74b403feec8a37274a20d0f340565087c5e618ad00
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-win32.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-win32.whl -
Subject digest:
90093e2d2eb6667d4b88c03852da7a82339f8b82e8cd48cd073e4d7734b39ddc - Sigstore transparency entry: 2013954999
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 81.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b5752152130494ac95aca885ee711b70564ca645022d619a970b591ec212929
|
|
| MD5 |
f8b3cadb49e15054960de13b123d967e
|
|
| BLAKE2b-256 |
ca195d3ce8b698da359e9304ea853e7c5163a0d8a9a788467a20a63e3221ed59
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
6b5752152130494ac95aca885ee711b70564ca645022d619a970b591ec212929 - Sigstore transparency entry: 2013968027
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
- Upload date:
- Size: 83.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.34+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5489670127ce45b57fe0a6b9a637b0674c3dc8e555c7b2e97e76205e92f009f
|
|
| MD5 |
48034dec91f9c9b561865432bcab977b
|
|
| BLAKE2b-256 |
bdcf4a8292cb3c41de33601b064ed7f92b14fe7a40a5057384230d59afdb53e1
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl -
Subject digest:
f5489670127ce45b57fe0a6b9a637b0674c3dc8e555c7b2e97e76205e92f009f - Sigstore transparency entry: 2013956515
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 85.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a0949b9ce875407f8880f5e931429a88d3f5dc34814ccba78c7861a0387a9dd
|
|
| MD5 |
d59254fd02bafe05680106aa0c42f7d8
|
|
| BLAKE2b-256 |
7b0dba888f6a525e174fd1a02d833de3611fc49a4151a95059213235329254bc
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
1a0949b9ce875407f8880f5e931429a88d3f5dc34814ccba78c7861a0387a9dd - Sigstore transparency entry: 2013963610
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
- Upload date:
- Size: 88.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.34+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71f255927c4cff15eed0e7e20a2cc96ceaa3b48c7f461837552846dcd808d8be
|
|
| MD5 |
f229f33ea45ff979d8338cb8cd1bcfd1
|
|
| BLAKE2b-256 |
04b31586cc976d4343396bd77a01f4a20daf8d56a676fcf44b42a7ea195fe70a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl -
Subject digest:
71f255927c4cff15eed0e7e20a2cc96ceaa3b48c7f461837552846dcd808d8be - Sigstore transparency entry: 2013957783
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 90.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da6c363441e508c82004e711a6e6f1f6d90ec174022eff10fdcaef0b60994c97
|
|
| MD5 |
d29b99c789f139947b5497eb5b35b636
|
|
| BLAKE2b-256 |
9472a7d389dfd64cb662751d6f486dc26daea411148e6747590ca5aea7dcfd20
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
da6c363441e508c82004e711a6e6f1f6d90ec174022eff10fdcaef0b60994c97 - Sigstore transparency entry: 2013960412
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
- Upload date:
- Size: 83.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abf26c954c06581d090ab07667c6d66521c4743fae9502545d35851b300f4dde
|
|
| MD5 |
14d3b9552274c82adeb33d2365699a2a
|
|
| BLAKE2b-256 |
cde511d10d528b0205481524faf69b5d4fe30a9b19565db1ff837a1bb3da743d
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl -
Subject digest:
abf26c954c06581d090ab07667c6d66521c4743fae9502545d35851b300f4dde - Sigstore transparency entry: 2013965653
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
- Upload date:
- Size: 82.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5bf67a84e1ed55f19a187d26c7099d499dcad781d2c06e40a8a6c150f020f7e
|
|
| MD5 |
5b0959e2eb21c2a3910445391d04fc5b
|
|
| BLAKE2b-256 |
70f34e9449daab6c79aa3ecea7bcb1975d28911f9c3facd52ec9148ff570f98e
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl -
Subject digest:
f5bf67a84e1ed55f19a187d26c7099d499dcad781d2c06e40a8a6c150f020f7e - Sigstore transparency entry: 2013960659
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 83.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
852c18a9f96050e78c521e63aa988059a0eb7158f7e68a7286040759af5fc83a
|
|
| MD5 |
b1b976409c2abba276dd15172c673c11
|
|
| BLAKE2b-256 |
ba25bfeefa0de3aaf2c37d060c90f341c793bc01b792f3348fb0d93a07c4cf13
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
852c18a9f96050e78c521e63aa988059a0eb7158f7e68a7286040759af5fc83a - Sigstore transparency entry: 2013964527
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 80.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.34+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a45f10c211850e2e086be8e5ad110ce70631c842f500b79489eda7961523eb0
|
|
| MD5 |
672d98d9173a7e52d14032023d64f56f
|
|
| BLAKE2b-256 |
32bb8a4dc14665c612f0c9d0a868c13418666893757500f6ade93c1c5ebc1337
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
2a45f10c211850e2e086be8e5ad110ce70631c842f500b79489eda7961523eb0 - Sigstore transparency entry: 2013960997
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 81.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91d8098184dbe9fb24811210063dd8cd9ff37181bacc98afd0dfd8dabb400e80
|
|
| MD5 |
acbf018206f15a0bdc2c7e868d3ad4b2
|
|
| BLAKE2b-256 |
49332659e3c8c5562d2c87e788345da6f21c09b4ca21c30cd168e3260aa0015e
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
91d8098184dbe9fb24811210063dd8cd9ff37181bacc98afd0dfd8dabb400e80 - Sigstore transparency entry: 2013962086
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 79.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.34+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78fb833ca9d5fa3ab9fd82f76d8079d7f209a62363374ad014db62a3d6810f37
|
|
| MD5 |
21cfa99e0efc830685e4bd20298f703c
|
|
| BLAKE2b-256 |
70eba888965f23685e06f5768f658e4958a0d3e06772fe742473c84f9031cecb
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl -
Subject digest:
78fb833ca9d5fa3ab9fd82f76d8079d7f209a62363374ad014db62a3d6810f37 - Sigstore transparency entry: 2013963245
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 79.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2a8196ed3912974e508d4344d850effd0122f9a41b2d56edc59bad576eacd50
|
|
| MD5 |
1c3cd35853e55270cce16d92acbea1ee
|
|
| BLAKE2b-256 |
8876ba7207d8e817d9d86825f099ecebbbce468b96fcd4da3258c73867795117
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
e2a8196ed3912974e508d4344d850effd0122f9a41b2d56edc59bad576eacd50 - Sigstore transparency entry: 2013960151
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.3 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f21efd6abb8b9a2020d085ccd6636ec91e8fea811cdf60d3efa7a711d5554bf
|
|
| MD5 |
23b195e4c202ddc4d2d2aab3baa2edb2
|
|
| BLAKE2b-256 |
d7e2b35a79c6a1ed4cf9285ea0a80c5be69d40904e5e37cd677ae6ec7560c510
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
9f21efd6abb8b9a2020d085ccd6636ec91e8fea811cdf60d3efa7a711d5554bf - Sigstore transparency entry: 2013960203
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 32.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb9c68bc9b137e67b1c57d4577349b36ce11c0a91b4a0ec7541a83871400d140
|
|
| MD5 |
9941d00831cb2a98c18a7f81d8a38440
|
|
| BLAKE2b-256 |
e53ba468cf51f9c4bef7e96df2cfb342f1d20dfdf950e2ba549f3fc3a0adc324
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-win_amd64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-win_amd64.whl -
Subject digest:
fb9c68bc9b137e67b1c57d4577349b36ce11c0a91b4a0ec7541a83871400d140 - Sigstore transparency entry: 2013959578
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-win32.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-win32.whl
- Upload date:
- Size: 30.0 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccaac289e5ac872914d991b49926f3544970fe3451f9e49ed58e18ca15494875
|
|
| MD5 |
a77d0ad17c24170939d861715c946e8b
|
|
| BLAKE2b-256 |
9b288762094ada07a00f19a298673bda91d50ab8f71eda493b00e79e752192bd
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-win32.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-win32.whl -
Subject digest:
ccaac289e5ac872914d991b49926f3544970fe3451f9e49ed58e18ca15494875 - Sigstore transparency entry: 2013965517
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 81.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09b71eadbb4b442e74813cf798c03ff922346610d847fc2681220cc5e92d62f5
|
|
| MD5 |
8bccc58e3518f2d7b7322dec1adc8284
|
|
| BLAKE2b-256 |
958142625cd014987be0de0c31802eec0bace2337b97a6b76e28c3ac831247bf
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
09b71eadbb4b442e74813cf798c03ff922346610d847fc2681220cc5e92d62f5 - Sigstore transparency entry: 2013959732
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
- Upload date:
- Size: 83.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.34+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64282b85862fdf68ff00725034cdedcf72ef628269cae97121c1365825345408
|
|
| MD5 |
73a2c68b5418c4aea39a98f0a78543f7
|
|
| BLAKE2b-256 |
9998c3d000bdf26ff423383887dfff2eb6b71c45c096e51b73451ffc2e025bd6
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl -
Subject digest:
64282b85862fdf68ff00725034cdedcf72ef628269cae97121c1365825345408 - Sigstore transparency entry: 2013961604
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 85.0 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3ddc97316487b172728f60ed20b3e78e17f1fedbd56ca529f0fa1e9746244f8
|
|
| MD5 |
e7c547fcd452255825d75ce058b15d8d
|
|
| BLAKE2b-256 |
955e31283459f67e0bfb3d2d7e85b0ba50fef97869af7c8331572a826ac647b0
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
f3ddc97316487b172728f60ed20b3e78e17f1fedbd56ca529f0fa1e9746244f8 - Sigstore transparency entry: 2013964965
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
- Upload date:
- Size: 88.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.34+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a279a9974d6e827f703f050ed1baca6513c9bb69b71bda6e133fbdfa7fcdd12
|
|
| MD5 |
64219d8ff53b96ae4866d79387f38220
|
|
| BLAKE2b-256 |
6c97687c68b1e83dad069a7bd12079c06e94c588f9dbb18c3d2297acae4832fe
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl -
Subject digest:
9a279a9974d6e827f703f050ed1baca6513c9bb69b71bda6e133fbdfa7fcdd12 - Sigstore transparency entry: 2013959507
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 90.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62b7200625829ddd7e6711cbe1c3881e29ba14b4d91a99a69ac971f0305f0eb0
|
|
| MD5 |
140e430ab5e4bfce7ab7c82552596d62
|
|
| BLAKE2b-256 |
ca3ba526e8a4fadf4bfd69baac75531898168eae51c92b12f769b1e9160909f4
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
62b7200625829ddd7e6711cbe1c3881e29ba14b4d91a99a69ac971f0305f0eb0 - Sigstore transparency entry: 2013967771
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
- Upload date:
- Size: 83.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fd896151adbdb4d38f79a1e288e6f7d4a7d87e90b449e77c74bba6749b969ba
|
|
| MD5 |
c39610bf39411bd345f6a7dda15cc478
|
|
| BLAKE2b-256 |
a4be15f9c2c8976f06081deba94208fd4faca125773f8ac8cc6e3610ce928bca
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl -
Subject digest:
5fd896151adbdb4d38f79a1e288e6f7d4a7d87e90b449e77c74bba6749b969ba - Sigstore transparency entry: 2013959801
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
- Upload date:
- Size: 82.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c690b9ea89635e9d8bac54ff29aa8c66ede590e7080605b43d39498ddca80f8
|
|
| MD5 |
1a03dff52ce529c7b2ad3f46828ae45f
|
|
| BLAKE2b-256 |
7a2e1aaf828ed34729008e942423679ca3d059ec042d680b8f418be2c4d0142f
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl -
Subject digest:
5c690b9ea89635e9d8bac54ff29aa8c66ede590e7080605b43d39498ddca80f8 - Sigstore transparency entry: 2013963382
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 83.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fc90647c120506acbb65616bd3d17bc9c4ce4a9c629176b1c8da42549272bec
|
|
| MD5 |
7a56dc8d1c190f87014ff7aa46f2c793
|
|
| BLAKE2b-256 |
8c3fcc754b2398740370a385d296757ef98ee34ae5e7da607047c273821eca59
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
7fc90647c120506acbb65616bd3d17bc9c4ce4a9c629176b1c8da42549272bec - Sigstore transparency entry: 2013960604
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 80.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.34+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33b41a15e80a52185fcbe312e26d24b02c5a6e725dbeec8d43cdaaca8f365a4d
|
|
| MD5 |
36ca23818fe7588be368495c615dd789
|
|
| BLAKE2b-256 |
b4dc00edc0695a87d55030d55dbb748b0253f66a56e687b0802307f8c9ab80f1
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
33b41a15e80a52185fcbe312e26d24b02c5a6e725dbeec8d43cdaaca8f365a4d - Sigstore transparency entry: 2013960263
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 81.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79e0dfddfc0967a4deea1e92287d5ded99b04ca0215e271a7a09dd4c894fd9e1
|
|
| MD5 |
7772806781d373f663f4c43d692feb8d
|
|
| BLAKE2b-256 |
99e6c417b2da90d8c4c5853a100356698b47883b27dd2c84a6d87c38c7c2b9f3
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
79e0dfddfc0967a4deea1e92287d5ded99b04ca0215e271a7a09dd4c894fd9e1 - Sigstore transparency entry: 2013965836
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 79.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.34+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ea421b4a084fee51fc9131957915e2552395eb33f66a0f7f9381172b9908e05
|
|
| MD5 |
379d70bb78a0316efb30aa454075db36
|
|
| BLAKE2b-256 |
7a7c0f2af3970e3fe46d9e445807561972923d008e79ca1a40b459206af9e36a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl -
Subject digest:
2ea421b4a084fee51fc9131957915e2552395eb33f66a0f7f9381172b9908e05 - Sigstore transparency entry: 2013957463
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 78.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdca75ed4393aed9ff57c35bca599bd106a7eb9e70beb90fd7ce670b1a13f3c0
|
|
| MD5 |
a3baecd955dfc3fa29fcaa673d0111ff
|
|
| BLAKE2b-256 |
7b7444701b19c448b143cd17850d491f6dc134267b24898667d8e637e56f47a5
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
fdca75ed4393aed9ff57c35bca599bd106a7eb9e70beb90fd7ce670b1a13f3c0 - Sigstore transparency entry: 2013959205
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0921fa97e517a17c0be99903b8c4f2bacc2ad78eec51efb1cd8f67239c8a3f5c
|
|
| MD5 |
a738441dafb058daf024cf44277ae58a
|
|
| BLAKE2b-256 |
000a14cdf18379601155fa5675855f1c72652c14ce21f156d9fa65055882ac45
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
0921fa97e517a17c0be99903b8c4f2bacc2ad78eec51efb1cd8f67239c8a3f5c - Sigstore transparency entry: 2013961189
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 32.4 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cea1707866a01e3bc4f4d29432b02f52a3de9cfb0c714def02f34f660e467fcc
|
|
| MD5 |
a40cc121ecb151fbeb4014cae07ff14b
|
|
| BLAKE2b-256 |
20f479213d5007d8d643cecbb38c7ce33f81af3d79bed32c971d950010bbe1ee
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-win_amd64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-win_amd64.whl -
Subject digest:
cea1707866a01e3bc4f4d29432b02f52a3de9cfb0c714def02f34f660e467fcc - Sigstore transparency entry: 2013964649
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-win32.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-win32.whl
- Upload date:
- Size: 30.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44b4fef14650e31607898e6f8abb0e7699913476f91c7116063a40168e0ad3ca
|
|
| MD5 |
b92777374edc59b904d64358c9d26b9e
|
|
| BLAKE2b-256 |
3ecfa95f7515712e9b055c0334260802129f30fc3b77bd2d626954ffe0da78ca
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-win32.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-win32.whl -
Subject digest:
44b4fef14650e31607898e6f8abb0e7699913476f91c7116063a40168e0ad3ca - Sigstore transparency entry: 2013963009
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 81.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
520162cd8cb0f4011b23d2e9180457cc58fb2fb58f93a4bfd315c460b429b426
|
|
| MD5 |
ce8c29a6b75fe2d9df5100bb6083b264
|
|
| BLAKE2b-256 |
7946de926e8c8ccbb8c1990a55e7bbe4892a0847d131b7ad2140d41e78f3646f
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
520162cd8cb0f4011b23d2e9180457cc58fb2fb58f93a4bfd315c460b429b426 - Sigstore transparency entry: 2013962874
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
- Upload date:
- Size: 83.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.34+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b37e4c3b8ccdfc268a951a27ba4968bfcec7902ce78fb636484a6c29614ddae4
|
|
| MD5 |
df037b5ba69415912c9c799f28fe9a70
|
|
| BLAKE2b-256 |
b3b8ff034564d89f51b822fa59d3ce2a44570de9afccab9faf3462df25cddd82
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl -
Subject digest:
b37e4c3b8ccdfc268a951a27ba4968bfcec7902ce78fb636484a6c29614ddae4 - Sigstore transparency entry: 2013964428
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 84.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1af7b2a491a0683718d405334810b188ca1ee3c0c91de26dc1549945d813af3a
|
|
| MD5 |
f237e511744afeb6ded9d76b07d3d6a1
|
|
| BLAKE2b-256 |
408559033f35f896291d0bc075b99651a9053a08ed905a936679c62ad0316f91
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
1af7b2a491a0683718d405334810b188ca1ee3c0c91de26dc1549945d813af3a - Sigstore transparency entry: 2013967281
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
- Upload date:
- Size: 88.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.34+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eeaf76085def124848f25d7d17a1e29f3895b1a738b426785cb8c51f1d43767b
|
|
| MD5 |
d983fcb7a3634cfda462f7bed1efc17b
|
|
| BLAKE2b-256 |
d47bff1b660acc9a036e7a42c0abef469eb6a294060f9de6c22cbbd8e66ec89b
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl -
Subject digest:
eeaf76085def124848f25d7d17a1e29f3895b1a738b426785cb8c51f1d43767b - Sigstore transparency entry: 2013965945
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 90.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b5e6cc2915302e4393a19e960207690c0915099a355f3948958f74a5d22290c
|
|
| MD5 |
147edde5b5f7b26e98c6adc92c0dfdff
|
|
| BLAKE2b-256 |
894ec84354caae020c30f1ffcded2d5a8b62edca99360d5dafe63c36ebf9098f
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
7b5e6cc2915302e4393a19e960207690c0915099a355f3948958f74a5d22290c - Sigstore transparency entry: 2013966395
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
- Upload date:
- Size: 83.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3194c5fb7abc5ab92b2065e9a77bf2031a774e209cedb58ab87e706f3487883a
|
|
| MD5 |
a2c530ad220fcfbb7ad447058dc742e7
|
|
| BLAKE2b-256 |
876badd7e75c0d68b8f5a275a4041808289e8538a2565cd79b6a64b67f9b4c5a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl -
Subject digest:
3194c5fb7abc5ab92b2065e9a77bf2031a774e209cedb58ab87e706f3487883a - Sigstore transparency entry: 2013966797
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
- Upload date:
- Size: 82.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
537c2194afb7cbae74f53e3f66dae18dc3db52fe944b43426decd993e2b1ee6e
|
|
| MD5 |
46ea71f335c4c27a9cc3a2a72ad6a080
|
|
| BLAKE2b-256 |
35c5d6b984653226f7f30ae514c8880d5dd653988dbc8ae9bbf95deaa103ae51
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl -
Subject digest:
537c2194afb7cbae74f53e3f66dae18dc3db52fe944b43426decd993e2b1ee6e - Sigstore transparency entry: 2013968080
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 83.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
399c34d121d0f10ec5d2ac7b2dab01ff4ae870049927de8156e449f4bb4fe02e
|
|
| MD5 |
55b52cf0f63d31443d559df789da78e9
|
|
| BLAKE2b-256 |
7bfadd2ce44031735003aefee1be5f3fc81669ade03cd9183844360956d90162
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
399c34d121d0f10ec5d2ac7b2dab01ff4ae870049927de8156e449f4bb4fe02e - Sigstore transparency entry: 2013960095
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 80.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6f8eaf59743c13073ddebcb6154d4e5e5afbc9f0a3b1c4f023e3055d70d2103
|
|
| MD5 |
6dd2ae7cae1ff312a3a826a2fde1b52c
|
|
| BLAKE2b-256 |
6c5b4344d69163949236e42e407141e0dd3e95de8c319adf784a4e3218fa4ccf
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
d6f8eaf59743c13073ddebcb6154d4e5e5afbc9f0a3b1c4f023e3055d70d2103 - Sigstore transparency entry: 2013966078
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 81.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2424c16cd0d8cf1d59fb668b3cd2c51cd6cccbb520e294971267c4f2d55bf786
|
|
| MD5 |
ebb4a13c10de873d6f145da5683b299d
|
|
| BLAKE2b-256 |
c594b5742fdf7aaf569b910caa56e0d8b68e13c3eb243eeba91d8941c94a65eb
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
2424c16cd0d8cf1d59fb668b3cd2c51cd6cccbb520e294971267c4f2d55bf786 - Sigstore transparency entry: 2013958907
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 79.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.34+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b52fec191a3a8800c992e82fc4839c9d5a27e055dabfed1e42cea75ce4e044a0
|
|
| MD5 |
a7895fd0b605fbc45f122e6ddf914da1
|
|
| BLAKE2b-256 |
d7642778e141848b4d292c1a9523c8b8530f2f4a42bad52f28b8d8037047bfd5
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl -
Subject digest:
b52fec191a3a8800c992e82fc4839c9d5a27e055dabfed1e42cea75ce4e044a0 - Sigstore transparency entry: 2013967702
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 78.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20cd0aed7a265e75408461effb5e8211e62b8d09da7ac9ab83b9f1cdef1d808e
|
|
| MD5 |
4c4cbe41f27c27da07c4d14ffa8848ed
|
|
| BLAKE2b-256 |
7eacae2dc3b887b34cc639bf8a32a7a868b3564f119c7ca3023c645539a72f0d
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
20cd0aed7a265e75408461effb5e8211e62b8d09da7ac9ab83b9f1cdef1d808e - Sigstore transparency entry: 2013959082
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5263c72212a9ad5d48b0b8b6972494d3d55413c190237ae785df4ee78e2eeaf
|
|
| MD5 |
db6b3a7e6320bd8329c0d664f61b4ea3
|
|
| BLAKE2b-256 |
27c4cc846a2f27ef8d697e7e429d8ea8993015e4fd0adface6cb3831e01aaa7a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
f5263c72212a9ad5d48b0b8b6972494d3d55413c190237ae785df4ee78e2eeaf - Sigstore transparency entry: 2013957934
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 32.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
897d6bde9630291a564f309956184bfdbdb46d88b5a2dcecee4d055758d6943c
|
|
| MD5 |
9f3c2206c54f784a4e51479f8dac0ca7
|
|
| BLAKE2b-256 |
c8edeb019be6b7cfc180eb2b5c489f9d9b5da3cdcff6e9887bd325ec68df3f9f
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-win_amd64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-win_amd64.whl -
Subject digest:
897d6bde9630291a564f309956184bfdbdb46d88b5a2dcecee4d055758d6943c - Sigstore transparency entry: 2013955509
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-win32.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-win32.whl
- Upload date:
- Size: 29.8 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d46b06c95710f3e57ea5940daa5e06e8053761aacd759ea14407972abdca4dff
|
|
| MD5 |
28918c5eedba2c6e968dd8b148601a92
|
|
| BLAKE2b-256 |
9357109a632a98d8627e6cdbbb19ae57fb07e9ce3346909d86e137ba5088f0a0
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-win32.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-win32.whl -
Subject digest:
d46b06c95710f3e57ea5940daa5e06e8053761aacd759ea14407972abdca4dff - Sigstore transparency entry: 2013967459
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 77.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04f0848a60d8a32c0afe9a2887cf11e9851a0d5de726d55a4a2a67c9731c8ac5
|
|
| MD5 |
084a1245c9bd206422921f12aab06cf5
|
|
| BLAKE2b-256 |
8c370a2b60859cc8bc1928965a358c127c68378d31410fd34f4b804c924a484e
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
04f0848a60d8a32c0afe9a2887cf11e9851a0d5de726d55a4a2a67c9731c8ac5 - Sigstore transparency entry: 2013962283
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
- Upload date:
- Size: 79.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.34+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8be32c46c11a258421dd83c95c0e0be7b91c379f8da4f1296e4a1e34b10e8837
|
|
| MD5 |
bd0c68e35f63b755ef74763cb57aed86
|
|
| BLAKE2b-256 |
7191bb3668b4d2a8ec370ff2126980f7448ae237f9f5ecc7945e9932621d2474
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl -
Subject digest:
8be32c46c11a258421dd83c95c0e0be7b91c379f8da4f1296e4a1e34b10e8837 - Sigstore transparency entry: 2013967098
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 80.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c77e242b0723f2fed739c65b93592652c1ad3dd8575d647211550b91caf0474
|
|
| MD5 |
676243415a7eaf6f7a2f0e59dfe3a5c5
|
|
| BLAKE2b-256 |
8e0ad42bf0c40cf2f9eb816b3282f6665d36c9daf6106cf6c27039cf195d7a84
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
6c77e242b0723f2fed739c65b93592652c1ad3dd8575d647211550b91caf0474 - Sigstore transparency entry: 2013966845
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
- Upload date:
- Size: 84.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.34+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1941c1fd6bfe19cb338468d921597e054bbf85a195441eb1efcc2bf17389337c
|
|
| MD5 |
928775ebb76b1a5f6182f6eed99886cb
|
|
| BLAKE2b-256 |
04e3f9c74f124d9e191570f44e80b908672098d485b3d04a0e0f5a2daffd463d
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl -
Subject digest:
1941c1fd6bfe19cb338468d921597e054bbf85a195441eb1efcc2bf17389337c - Sigstore transparency entry: 2013961423
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 85.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbac177e9a99c4f2198cc06b20bb16db8e8394ff5d6f5dd4f4d524173a733847
|
|
| MD5 |
a0e73f2b46ba59a8578cde29e763507e
|
|
| BLAKE2b-256 |
e124988cb35ff7c2ca0a28b22600adaebb5487569e3a2bb3930ed513c1006e01
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
bbac177e9a99c4f2198cc06b20bb16db8e8394ff5d6f5dd4f4d524173a733847 - Sigstore transparency entry: 2013960537
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
- Upload date:
- Size: 79.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f837d53ad40df12eb65fdb82e1cd2cf049db08da10749b2f05803fba92ea80d2
|
|
| MD5 |
94b4b59fbeddbebba49f071c5ad21209
|
|
| BLAKE2b-256 |
c8c4f6805a6e5cc34e67ea4f3a3f633ab0e88ac4eac77fb099649cbad1cdf705
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl -
Subject digest:
f837d53ad40df12eb65fdb82e1cd2cf049db08da10749b2f05803fba92ea80d2 - Sigstore transparency entry: 2013967824
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
- Upload date:
- Size: 78.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86e2ff94ebdc3072b5caf51bc0031353fe95b9ac9c44a70f7b6e15cc9168f791
|
|
| MD5 |
65c9bf952012499c5c37fd4dcdd7e18e
|
|
| BLAKE2b-256 |
dee80d590d701f37f5259abfbb2561a234083ebf0b2a8d32fb070c0b392c3bdc
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl -
Subject digest:
86e2ff94ebdc3072b5caf51bc0031353fe95b9ac9c44a70f7b6e15cc9168f791 - Sigstore transparency entry: 2013964792
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 79.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e490a19a163462ddf3b8196c9fd27157b13c8f801fdefe6e9ab8030220608259
|
|
| MD5 |
5142857708c7551bd59cf12066d7f850
|
|
| BLAKE2b-256 |
3bf41c2d2141ca30100fa223c4e55f09878b7750b37817c702e2d7b91d92463a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e490a19a163462ddf3b8196c9fd27157b13c8f801fdefe6e9ab8030220608259 - Sigstore transparency entry: 2013963488
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 76.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b54e529befe76d9f446300586f49958b6010f8f5224301992c29612bc8e03196
|
|
| MD5 |
6f46ae41f03e336432740eb947063288
|
|
| BLAKE2b-256 |
3fa535eefc100e936362bb8b8f89ca4a62868354df3fe726534f0bbb6df96113
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
b54e529befe76d9f446300586f49958b6010f8f5224301992c29612bc8e03196 - Sigstore transparency entry: 2013964153
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 76.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3baf7c0f2546493ae0fb13ca0fd87a428136b8033cc76f5d727b0fa0a1de493
|
|
| MD5 |
ed9903776c6e75a3d88d8893ac6f290b
|
|
| BLAKE2b-256 |
bcd9c293cdfaa23d70fba016e84cb2f0e9b80c442c7679af6693aafded686b55
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
e3baf7c0f2546493ae0fb13ca0fd87a428136b8033cc76f5d727b0fa0a1de493 - Sigstore transparency entry: 2013954597
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 75.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.34+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ddf7c3559ec446aafb41b9a91bfd352e6cb82dd9dc36acad738dc367e376053
|
|
| MD5 |
dc26ad4ec023e9493ffd6b8a6c2f8125
|
|
| BLAKE2b-256 |
719cded423c19982462515ac6f49e130a11279cf55bfd3e860dbdde677bcbc16
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl -
Subject digest:
0ddf7c3559ec446aafb41b9a91bfd352e6cb82dd9dc36acad738dc367e376053 - Sigstore transparency entry: 2013953885
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 74.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a0280420aaa2e9b0bc3d98a244a4d2421ed340edc0d6bb0c627554f8a8c9203
|
|
| MD5 |
d759a16dd4d35ec72399308ce6b28f4e
|
|
| BLAKE2b-256 |
7d4fb5703b00e0ab850f3555ebdd0a5e986aafe4c8c50901af2c0cce1a9d43b5
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
7a0280420aaa2e9b0bc3d98a244a4d2421ed340edc0d6bb0c627554f8a8c9203 - Sigstore transparency entry: 2013959660
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf8ef26aed8c17e61a2291f14233772cd80cc21e1b65795fa34f10d901d6e70d
|
|
| MD5 |
c8cacbe63006e0d9ec58261222a4b381
|
|
| BLAKE2b-256 |
725a8200b80f2ac7d6ddc990931e2b6401f59b5f600e5c5e370044402efaffc4
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
cf8ef26aed8c17e61a2291f14233772cd80cc21e1b65795fa34f10d901d6e70d - Sigstore transparency entry: 2013960331
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 32.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
970bf8c2e4a1578dc122543bf9fd63a8d25ad7ee0e2d4d579322d1449410a5f1
|
|
| MD5 |
7693f86f986703913c0b8d9da998fee0
|
|
| BLAKE2b-256 |
15f12ca346f5eb2740d040de77f7bf78b622630e2442276cc8ce51810639ca4c
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-win_amd64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-win_amd64.whl -
Subject digest:
970bf8c2e4a1578dc122543bf9fd63a8d25ad7ee0e2d4d579322d1449410a5f1 - Sigstore transparency entry: 2013960838
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-win32.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-win32.whl
- Upload date:
- Size: 29.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f5b97d0f4b3e5bfe15e41fe5e732298a588fef1b2030513db9544611b64d99c
|
|
| MD5 |
b2039cdd382b2737bd1122ebbc1764a5
|
|
| BLAKE2b-256 |
82a80e565a394c59fe31b1203a8bed1cd2c454eb1c7ed9e60388a8e988eef559
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-win32.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-win32.whl -
Subject digest:
4f5b97d0f4b3e5bfe15e41fe5e732298a588fef1b2030513db9544611b64d99c - Sigstore transparency entry: 2013964287
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
- Upload date:
- Size: 77.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.31+ riscv64, manylinux: glibc 2.39+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e5daf8d7adf9f05a565cdb0083d49c0582e8aadfac343d421bef0cdac83a484
|
|
| MD5 |
7126cb296cedcae2239f1a27c0847334
|
|
| BLAKE2b-256 |
02c70b93c9465d9135689a6a8904530386b9fafd49cde46d757d1bcaa2b3d057
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl -
Subject digest:
6e5daf8d7adf9f05a565cdb0083d49c0582e8aadfac343d421bef0cdac83a484 - Sigstore transparency entry: 2013966340
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl
- Upload date:
- Size: 78.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.34+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
795123ccd1c10842c13d2ad8b4d0b44c400d98a45d29339676b70f83d18ba722
|
|
| MD5 |
1bbbdc6d23471f692969cf37ff147d86
|
|
| BLAKE2b-256 |
facd3b7bbe7954eba116f0a1458d6aec58cf17ae38ae067bfe9701fc4a96c47d
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_34_s390x.whl -
Subject digest:
795123ccd1c10842c13d2ad8b4d0b44c400d98a45d29339676b70f83d18ba722 - Sigstore transparency entry: 2013967663
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
- Upload date:
- Size: 79.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x, manylinux: glibc 2.28+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3d90cefb5c5e5c43903e69223fbe252eece6bc354a28d1e85c97247f0b3f0bd
|
|
| MD5 |
5ce9aede2c6fce6d64f018a8300da97d
|
|
| BLAKE2b-256 |
00854930c806128a76777960d61379df87d4e80716ad7023d5c5a464550fd58d
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl -
Subject digest:
e3d90cefb5c5e5c43903e69223fbe252eece6bc354a28d1e85c97247f0b3f0bd - Sigstore transparency entry: 2013961071
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl
- Upload date:
- Size: 83.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.34+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cbb70615f3a64f1db8b973def3de272ab599caa4c23b63d53427afa5f3b6e867
|
|
| MD5 |
500ac4cbc3b0a93a4e3358281fce81f8
|
|
| BLAKE2b-256 |
fa7f3272b9e7a606efe238370681653e744b6e6a483bdacb080f0780749eecda
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_34_ppc64le.whl -
Subject digest:
cbb70615f3a64f1db8b973def3de272ab599caa4c23b63d53427afa5f3b6e867 - Sigstore transparency entry: 2013966678
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
- Upload date:
- Size: 84.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le, manylinux: glibc 2.28+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1b7a7577a425080a185322ba06dfd1409dfef3a067422b9b58f0e6769a83a3d
|
|
| MD5 |
2255f2df88038566350a00f7d8c7030a
|
|
| BLAKE2b-256 |
abbec4b3c4a2c0214866b6ab063464ff2bff10c0de1770c7b3effb91cef5cf3c
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl -
Subject digest:
f1b7a7577a425080a185322ba06dfd1409dfef3a067422b9b58f0e6769a83a3d - Sigstore transparency entry: 2013962636
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl
- Upload date:
- Size: 78.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.39+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40df8d6794222ce7f6bf4730dc7db4bced38e12c064884b209b3d740852ba1e0
|
|
| MD5 |
de406c06695d37f0dbf71c79d6cb7462
|
|
| BLAKE2b-256 |
56d7077930dd9a9be1c31b5d8a621e2cac1920a2118a40ccd98de95c89fcec90
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_39_aarch64.whl -
Subject digest:
40df8d6794222ce7f6bf4730dc7db4bced38e12c064884b209b3d740852ba1e0 - Sigstore transparency entry: 2013957326
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl
- Upload date:
- Size: 78.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.34+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72b3702ce3c0644384c8090902094820e5e27c5b1b646b1c74c4e982c3184072
|
|
| MD5 |
6faa43b9d2c7b1f3a99c292c5fdcbf2a
|
|
| BLAKE2b-256 |
45e29091a314d9c715c7921e30d072e5d36d3d7576d8da100a5f6c5e32afad2b
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_34_aarch64.whl -
Subject digest:
72b3702ce3c0644384c8090902094820e5e27c5b1b646b1c74c4e982c3184072 - Sigstore transparency entry: 2013963866
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 78.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b83f1f07076d7f173fdfedd3337e90674956278f0668e67b716378beae2a76d
|
|
| MD5 |
22699aa5eac74943ae460fe963161795
|
|
| BLAKE2b-256 |
91e63a729962612f1f04e31474b6c5a547425fe7ef7503e56344cc0a7494851a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
4b83f1f07076d7f173fdfedd3337e90674956278f0668e67b716378beae2a76d - Sigstore transparency entry: 2013963148
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 76.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97fd2f1c8751cec9c171f21dd0489867758a99ac6393edf7fe5bcfe829670fc7
|
|
| MD5 |
4e076d84c888b2e1e4460b8052160ae1
|
|
| BLAKE2b-256 |
36cd4cea6eca650e55051fde3a2f238c87e95383be430a8836eb5a739b529db7
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_34_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
97fd2f1c8751cec9c171f21dd0489867758a99ac6393edf7fe5bcfe829670fc7 - Sigstore transparency entry: 2013967230
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
- Upload date:
- Size: 76.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2664e4a7f0f63253d3a548248c2259bdfb627f88f249502b2ab56cda15f84189
|
|
| MD5 |
e4439950b32fa1de6daadc3d97ea2aa9
|
|
| BLAKE2b-256 |
0457d9fbc3941ddc0c043adf1458543a415698d726b40c68b57372d173bb136a
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl -
Subject digest:
2664e4a7f0f63253d3a548248c2259bdfb627f88f249502b2ab56cda15f84189 - Sigstore transparency entry: 2013954158
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 74.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.34+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2dda82cc27e4d53b26850834539cf84f634b07f1b48188df4bfa993c42cc6cd8
|
|
| MD5 |
400f4eb4a0c8e205eb0b56868126ec0b
|
|
| BLAKE2b-256 |
0203fb3fe64982e5c46294b71974caa057d14d7c2a5c1047a9c642507710783b
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_34_i686.manylinux_2_5_i686.whl -
Subject digest:
2dda82cc27e4d53b26850834539cf84f634b07f1b48188df4bfa993c42cc6cd8 - Sigstore transparency entry: 2013954008
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
- Upload date:
- Size: 74.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.28+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6571b75a0906c61e48828695bc460ffe2710cd4bc446d4fc8e5cbb58191ee42e
|
|
| MD5 |
6404c6d76da281b724ba625bf8a9cb0e
|
|
| BLAKE2b-256 |
a0089101f9cb1593024e9e7dba2dc986cedbd07bdead7866693fd5624e5232d0
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl -
Subject digest:
6571b75a0906c61e48828695bc460ffe2710cd4bc446d4fc8e5cbb58191ee42e - Sigstore transparency entry: 2013958105
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type:
File details
Details for the file g722_numpy-1.2.8-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: g722_numpy-1.2.8-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 26.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afd8f8d4d604a6a1a4315ef67e9bd2e41e8f5f612faa2b6143431d69ff662119
|
|
| MD5 |
5fbd2f4ac834a6c16c3b43aeb3cd8edf
|
|
| BLAKE2b-256 |
cc720b1c79fff6583022b8758fcb245b9fc165450fdb115d5a95f21afd2cc756
|
Provenance
The following attestation bundles were made for g722_numpy-1.2.8-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build_and_test.yml on sippy/libg722
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
g722_numpy-1.2.8-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
afd8f8d4d604a6a1a4315ef67e9bd2e41e8f5f612faa2b6143431d69ff662119 - Sigstore transparency entry: 2013961718
- Sigstore integration time:
-
Permalink:
sippy/libg722@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Branch / Tag:
refs/tags/v1.2.8 - Owner: https://github.com/sippy
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_and_test.yml@4c2e79c5cbcb5ee12a97a16002a073ac83396480 -
Trigger Event:
release
-
Statement type: