cramjam 2.11.0
pip install cramjam
Released:
Thin Python bindings to de/compression algorithms in Rust
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT
- Author: Miles Granger <miles59923@gmail.com>
- Tags compression , decompression , snappy , zstd , bz2 , gzip , lz4 , brotli , deflate , blosc2
- Requires: Python >=3.8
-
Provides-Extra:
dev
Project description
cramjam
Install (Python)
pip install --upgrade cramjam # Requires no Python or system dependencies!
Install (JavaScript / TypeScript)
npm install cramjam
CLI
A CLI interface is available as cramjam-cli
libcramjam
A Rust crate and C friendly library available at libcramjam
Extremely thin and easy-to-install Python bindings to de/compression algorithms in Rust. Allows for using algorithms such as Snappy, without any system or other python dependencies.
Benchmarks
Some basic benchmarks are available in the benchmarks directory
Available algorithms:
- Snappy
cramjam.snappy
- Brotli
cramjam.brotli
- Bzip2
cramjam.bzip2
- Lz4
cramjam.lz4
- Gzip
cramjam.gzip
- Zlib
cramjam.zlib
- Deflate
cramjam.deflate
- ZSTD
cramjam.zstd
- XZ / LZMA
cramjam.xz
Experimental (Requires build from source enabling each feature):
- Blosc2
cramjam.experimental.blosc2
- ISA-L backend (only on 64-bit targets)
- igzip
cramjam.experimental.igzip
- ideflate
cramjam.experimental.ideflate
- izlib
cramjam.experimental.izlib
- igzip
All available for use as:
>>> import cramjam
>>> import numpy as np
>>> compressed = cramjam.snappy.compress(b"bytes here")
>>> decompressed = cramjam.snappy.decompress(compressed)
>>> decompressed
cramjam.Buffer(len=10) # an object which implements the buffer protocol
>>> bytes(decompressed)
b"bytes here"
>>> np.frombuffer(decompressed, dtype=np.uint8)
array([ 98, 121, 116, 101, 115, 32, 104, 101, 114, 101], dtype=uint8)
Where the API is cramjam.<compression-variant>.compress/decompress
and accepts
bytes
/bytearray
/numpy.array
/cramjam.File
/cramjam.Buffer
/ memoryview
objects.
de/compress_into
Additionally, all variants support decompress_into
and compress_into
.
Ex.
>>> import numpy as np
>>> from cramjam import snappy, Buffer
>>>
>>> data = np.frombuffer(b'some bytes here', dtype=np.uint8)
>>> data
array([115, 111, 109, 101, 32, 98, 121, 116, 101, 115, 32, 104, 101,
114, 101], dtype=uint8)
>>>
>>> compressed = Buffer()
>>> snappy.compress_into(data, compressed)
33 # 33 bytes written to compressed buffer
>>>
>>> compressed.tell() # Where is the buffer position?
33 # goodie!
>>>
>>> compressed.seek(0) # Go back to the start of the buffer so we can prepare to decompress
>>> decompressed = b'0' * len(data) # let's write to `bytes` as output
>>> decompressed
b'000000000000000'
>>>
>>> snappy.decompress_into(compressed, decompressed)
15 # 15 bytes written to decompressed
>>> decompressed
b'some bytes here'
import {Compress, Decompress} from 'cramjam';
const decoder = new TextDecoder();
const encoder = new TextEncoder();
const str = 'hello, world';
const encoded = encoder.encode(str);
const compressed = Compress.brotli(encoded);
const decompressed = Decompress.brotli(compressed);
const decoded = decoder.decode(decompressed);
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT
- Author: Miles Granger <miles59923@gmail.com>
- Tags compression , decompression , snappy , zstd , bz2 , gzip , lz4 , brotli , deflate , blosc2
- Requires: Python >=3.8
-
Provides-Extra:
dev
Release history Release notifications | RSS feed
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
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.12+ x86-64
Uploaded
PyPy
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
PyPy
manylinux: glibc 2.17+ x86-64
Uploaded
PyPy
manylinux: glibc 2.17+ ARM64
Uploaded
PyPy
macOS 11.0+ ARM64
Uploaded
PyPy
macOS 10.12+ x86-64
Uploaded
PyPy
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.14t
Windows x86-64
Uploaded
CPython 3.14t
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.14t
musllinux: musl 1.1+ i686
Uploaded
CPython 3.14t
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.14t
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.14t
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.14t
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.14t
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.14t
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.14t
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.14t
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.14t
macOS 11.0+ ARM64
Uploaded
CPython 3.14t
macOS 10.12+ x86-64
Uploaded
CPython 3.14t
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.14
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.14
musllinux: musl 1.1+ i686
Uploaded
CPython 3.14
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.14
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.14
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.14
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.14
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.14
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.14
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.14
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.14
macOS 11.0+ ARM64
Uploaded
CPython 3.14
macOS 10.12+ x86-64
Uploaded
CPython 3.14
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.13
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.1+ i686
Uploaded
CPython 3.13
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.13
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.12+ x86-64
Uploaded
CPython 3.13
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.12
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.1+ i686
Uploaded
CPython 3.12
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.12
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.12+ x86-64
Uploaded
CPython 3.12
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.11
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ i686
Uploaded
CPython 3.11
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.11
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.12+ x86-64
Uploaded
CPython 3.11
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.10
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ i686
Uploaded
CPython 3.10
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.10
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.12+ x86-64
Uploaded
CPython 3.10
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.9
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ i686
Uploaded
CPython 3.9
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.9
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.12+ x86-64
Uploaded
CPython 3.9
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
Uploaded
CPython 3.8
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ i686
Uploaded
CPython 3.8
musllinux: musl 1.1+ ARMv7l
Uploaded
CPython 3.8
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.12+ i686
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.12+ x86-64
Uploaded
CPython 3.8
macOS 10.12+ universal2 (ARM64, x86-64)
macOS 10.12+ x86-64
macOS 11.0+ ARM64
File details
Details for the file cramjam-2.11.0.tar.gz
.
File metadata
- Download URL: cramjam-2.11.0.tar.gz
- Upload date:
- Size: 99.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5c82500ed91605c2d9781380b378397012e25127e89d64f460fea6aeac4389b4
|
|
MD5 |
c71f126d0290e43b4c7043c32f898fd9
|
|
BLAKE2b-256 |
141234bf6e840a79130dfd0da7badfb6f7810b8fcfd60e75b0539372667b41b6
|
Provenance
The following attestation bundles were made for cramjam-2.11.0.tar.gz
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0.tar.gz
-
Subject digest:
5c82500ed91605c2d9781380b378397012e25127e89d64f460fea6aeac4389b4
- Sigstore transparency entry: 318136647
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp311-pypy311_pp73-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6c2eea545fef1065c7dd4eda991666fd9c783fbc1d226592ccca8d8891c02f23
|
|
MD5 |
1ea26227ab41e49d60a37fd3086eec96
|
|
BLAKE2b-256 |
c79020d1747255f1ee69a412e319da51ea594c18cca195e7a4d4c713f045eff5
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp311-pypy311_pp73-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp311-pypy311_pp73-win_amd64.whl
-
Subject digest:
6c2eea545fef1065c7dd4eda991666fd9c783fbc1d226592ccca8d8891c02f23
- Sigstore transparency entry: 318138247
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
24758375cc5414d3035ca967ebb800e8f24604ececcba3c67d6f0218201ebf2d
|
|
MD5 |
ec59e98a2430f6a67647a86fb6068209
|
|
BLAKE2b-256 |
e9313298e15f87c9cf2aabdbdd90b153d8644cf989cb42a45d68a1b71e1f7aaf
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
24758375cc5414d3035ca967ebb800e8f24604ececcba3c67d6f0218201ebf2d
- Sigstore transparency entry: 318137101
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
62ab4971199b2270005359cdc379bc5736071dc7c9a228581c5122d9ffaac50c
|
|
MD5 |
f5190b01be107c92617dbe98e1b71fc1
|
|
BLAKE2b-256 |
6c020ff358ab773def1ee3383587906c453d289953171e9c92db84fdd01bf172
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
62ab4971199b2270005359cdc379bc5736071dc7c9a228581c5122d9ffaac50c
- Sigstore transparency entry: 318138436
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d9e5db525dc0a950a825202f84ee68d89a072479e07da98795a3469df942d301
|
|
MD5 |
dd3228f2334d17cd44dc6797fa6ebef8
|
|
BLAKE2b-256 |
d599f68a443c64f7ce7aff5bed369b0aa5b2fac668fa3dfd441837e316e97a1f
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
-
Subject digest:
d9e5db525dc0a950a825202f84ee68d89a072479e07da98795a3469df942d301
- Sigstore transparency entry: 318136810
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4820516366d455b549a44d0e2210ee7c4575882dda677564ce79092588321d54
|
|
MD5 |
6b65ba8f60dbde3c0d4a2791ef387ecb
|
|
BLAKE2b-256 |
b6c2410ddb8ad4b9dfb129284666293cb6559479645da560f7077dc19d6bee9e
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
-
Subject digest:
4820516366d455b549a44d0e2210ee7c4575882dda677564ce79092588321d54
- Sigstore transparency entry: 318137787
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
52d5db3369f95b27b9f3c14d067acb0b183333613363ed34268c9e04560f997f
|
|
MD5 |
d781dd016cc75027cc38892b7cd597d9
|
|
BLAKE2b-256 |
81dab3301962ccd6fce9fefa1ecd8ea479edaeaa38fadb1f34d5391d2587216a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp311-pypy311_pp73-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
52d5db3369f95b27b9f3c14d067acb0b183333613363ed34268c9e04560f997f
- Sigstore transparency entry: 318137324
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp310-pypy310_pp73-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5eb4ed3cea945b164b0513fd491884993acac2153a27b93a84019c522e8eda82
|
|
MD5 |
d25c25fd60eb54b9ccce78c7977ca63a
|
|
BLAKE2b-256 |
2e4faf984f8d7f963f0301812cdd620ddcfd8276461ed7a786c0f89e82b14739
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp310-pypy310_pp73-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp310-pypy310_pp73-win_amd64.whl
-
Subject digest:
5eb4ed3cea945b164b0513fd491884993acac2153a27b93a84019c522e8eda82
- Sigstore transparency entry: 318137624
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7a6ed7926a5cca28edebad7d0fedd2ad492710ae3524d25fc59a2b20546d9ce1
|
|
MD5 |
606a56edad06c9b63fac31bd431a2d74
|
|
BLAKE2b-256 |
5f26c2813c5422c43b3dcd8b6645bc359f08870737c44325ee4accc18f24eee0
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp310-pypy310_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
7a6ed7926a5cca28edebad7d0fedd2ad492710ae3524d25fc59a2b20546d9ce1
- Sigstore transparency entry: 318138716
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c71e140d5eb3145d61d59d0be0bf72f07cc4cf4b32cb136b09f712a3b1040f5f
|
|
MD5 |
97f945c9fe4dc16f13227ff4192a9f45
|
|
BLAKE2b-256 |
9d1c899818999bbdb59c601756b413e87d37fd65875d1315346c10e367bb3505
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
c71e140d5eb3145d61d59d0be0bf72f07cc4cf4b32cb136b09f712a3b1040f5f
- Sigstore transparency entry: 318137272
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3d1ba626dd5f81f7f09bbf59f70b534e2b75e0d6582b056b7bd31b397f1c13e9
|
|
MD5 |
d857ec10217ba0b4f0b025abcd7187ce
|
|
BLAKE2b-256 |
a8fd848d077bf6abc4ce84273d8e3f3a70d61a2240519a339462f699d8acf829
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
-
Subject digest:
3d1ba626dd5f81f7f09bbf59f70b534e2b75e0d6582b056b7bd31b397f1c13e9
- Sigstore transparency entry: 318138102
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: PyPy, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
50e4a58635fa8c6897d84847d6e065eb69f92811670fc5e9f2d9e3b6279a02b6
|
|
MD5 |
0958778e435141beab5b52542c5c9514
|
|
BLAKE2b-256 |
f04e0c821918080a32ba1e52c040e12dd02dada67728f07305c5f778b808a807
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
-
Subject digest:
50e4a58635fa8c6897d84847d6e065eb69f92811670fc5e9f2d9e3b6279a02b6
- Sigstore transparency entry: 318138213
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
37bed927abc4a7ae2d2669baa3675e21904d8a038ed8e4313326ea7b3be62b2b
|
|
MD5 |
fe2d9ad7a8892abce88a23de779721ce
|
|
BLAKE2b-256 |
bf8f82e35ec3c5387f1864f46b3c24bce89a07af8bb3ef242ae47281db2c1848
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-pp310-pypy310_pp73-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
37bed927abc4a7ae2d2669baa3675e21904d8a038ed8e4313326ea7b3be62b2b
- Sigstore transparency entry: 318138923
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
028400d699442d40dbda02f74158c73d05cb76587a12490d0bfedd958fd49188
|
|
MD5 |
c8c9fc25530b7918fa601f6a0e575c67
|
|
BLAKE2b-256 |
cec6c71e82e041c95ffe6a92ac707785500aa2a515a4339c2c7dd67e3c449249
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-win_amd64.whl
-
Subject digest:
028400d699442d40dbda02f74158c73d05cb76587a12490d0bfedd958fd49188
- Sigstore transparency entry: 318138512
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0a70ff17f8e1d13f322df616505550f0f4c39eda62290acb56f069d4857037c8
|
|
MD5 |
adbab37cc991b967bea640f07b8ecb3a
|
|
BLAKE2b-256 |
575e66cfc3635511b20014bbb3f2ecf0095efb3049e9e96a4a9e478e4f3d7b78
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-win32.whl
-
Subject digest:
0a70ff17f8e1d13f322df616505550f0f4c39eda62290acb56f069d4857037c8
- Sigstore transparency entry: 318137553
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d388bd5723732c3afe1dd1d181e4213cc4e1be210b080572e7d5749f6e955656
|
|
MD5 |
22b67476a1511b4fea3328371ef8035f
|
|
BLAKE2b-256 |
4b853be6f0a1398f976070672be64f61895f8839857618a2d8cc0d3ab529d3dc
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-musllinux_1_1_x86_64.whl
-
Subject digest:
d388bd5723732c3afe1dd1d181e4213cc4e1be210b080572e7d5749f6e955656
- Sigstore transparency entry: 318136733
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
382dec4f996be48ed9c6958d4e30c2b89435d7c2c4dbf32480b3b8886293dd65
|
|
MD5 |
7c26ca3e1d7e534620814edb81a8d08b
|
|
BLAKE2b-256 |
84128d3f6ceefae81bbe45a347fdfa2219d9f3ac75ebc304f92cd5fcb4fbddc5
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-musllinux_1_1_i686.whl
-
Subject digest:
382dec4f996be48ed9c6958d4e30c2b89435d7c2c4dbf32480b3b8886293dd65
- Sigstore transparency entry: 318137879
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1f6449f6de52dde3e2f1038284910c8765a397a25e2d05083870f3f5e7fc682c
|
|
MD5 |
09f2c5c01b80a291ced7608ee630e80d
|
|
BLAKE2b-256 |
0176b5a53e20505555f1640e66dcf70394bcf51a1a3a072aa18ea35135a0f9ed
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-musllinux_1_1_armv7l.whl
-
Subject digest:
1f6449f6de52dde3e2f1038284910c8765a397a25e2d05083870f3f5e7fc682c
- Sigstore transparency entry: 318137080
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cb1fb8c9337ab0da25a01c05d69a0463209c347f16512ac43be5986f3d1ebaf4
|
|
MD5 |
691810dff4464f1365ed4828cff100eb
|
|
BLAKE2b-256 |
5545938546d1629e008cc3138df7c424ef892719b1796ff408a2ab8550032e5e
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-musllinux_1_1_aarch64.whl
-
Subject digest:
cb1fb8c9337ab0da25a01c05d69a0463209c347f16512ac43be5986f3d1ebaf4
- Sigstore transparency entry: 318137690
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7d5c8bfb438d94e7b892d1426da5fc4b4a5370cc360df9b8d9d77c33b896c37e
|
|
MD5 |
6634ae627851d3bd061f7ac63ad18c11
|
|
BLAKE2b-256 |
1d4c85cec77af4a74308ba5fca8e296c4e2f80ec465c537afc7ab1e0ca2f9a00
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
7d5c8bfb438d94e7b892d1426da5fc4b4a5370cc360df9b8d9d77c33b896c37e
- Sigstore transparency entry: 318137170
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c26a1eb487947010f5de24943bd7c422dad955b2b0f8650762539778c380ca89
|
|
MD5 |
1b1b2b87ee663dfac7b4d07f9445806d
|
|
BLAKE2b-256 |
c470d2ac33d572b4d90f7f0f2c8a1d60fb48f06b128fdc2c05f9b49891bb0279
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
c26a1eb487947010f5de24943bd7c422dad955b2b0f8650762539778c380ca89
- Sigstore transparency entry: 318136932
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b1f893014f00fe5e89a660a032e813bf9f6d91de74cd1490cdb13b2b59d0c9a3
|
|
MD5 |
0cff5d8a61fb5b3c65382f13b97b4a46
|
|
BLAKE2b-256 |
5b4eb48e67835b5811ec5e9cb2e2bcba9c3fd76dab3e732569fe801b542c6ca9
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
b1f893014f00fe5e89a660a032e813bf9f6d91de74cd1490cdb13b2b59d0c9a3
- Sigstore transparency entry: 318138801
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e5db59c1cdfaa2ab85cc988e602d6919495f735ca8a5fd7603608eb1e23c26d5
|
|
MD5 |
b724de9a392c772a09b105afd880e019
|
|
BLAKE2b-256 |
2ba968bc334fadb434a61df10071dc8606702aa4f5b6cdb2df62474fc21d2845
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
e5db59c1cdfaa2ab85cc988e602d6919495f735ca8a5fd7603608eb1e23c26d5
- Sigstore transparency entry: 318137463
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3c1aa56aef2c8af55a21ed39040a94a12b53fb23beea290f94d19a76027e2ffb
|
|
MD5 |
5907124961a4fb2d0d4cc5aa25138f0b
|
|
BLAKE2b-256 |
0943c2c17586b90848d29d63181f7d14b8bd3a7d00975ad46e3edf2af8af7e1f
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
3c1aa56aef2c8af55a21ed39040a94a12b53fb23beea290f94d19a76027e2ffb
- Sigstore transparency entry: 318138599
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14t, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ca905387c7a371531b9622d93471be4d745ef715f2890c3702479cd4fc85aa51
|
|
MD5 |
d783dbca279c89b456d79f9ea5f8df55
|
|
BLAKE2b-256 |
d986ec806f986e01b896a650655024ea52a13e25c3ac8a3a382f493089483cdc
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
ca905387c7a371531b9622d93471be4d745ef715f2890c3702479cd4fc85aa51
- Sigstore transparency entry: 318137611
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
665b0d8fbbb1a7f300265b43926457ec78385200133e41fef19d85790fc1e800
|
|
MD5 |
a459bcaf12960b1c2b3930260a65bc60
|
|
BLAKE2b-256 |
9d2830d5b8d10acd30db3193bc562a313bff722888eaa45cfe32aa09389f2b24
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-macosx_11_0_arm64.whl
-
Subject digest:
665b0d8fbbb1a7f300265b43926457ec78385200133e41fef19d85790fc1e800
- Sigstore transparency entry: 318138679
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
387f09d647a0d38dcb4539f8a14281f8eb6bb1d3e023471eb18a5974b2121c86
|
|
MD5 |
c5fd889908cb42c98227f31b4b8a2d03
|
|
BLAKE2b-256 |
cb4352b7e54fe5ba1ef0270d9fdc43dabd7971f70ea2d7179be918c997820247
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.whl
-
Subject digest:
387f09d647a0d38dcb4539f8a14281f8eb6bb1d3e023471eb18a5974b2121c86
- Sigstore transparency entry: 318138694
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14t, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
966ac9358b23d21ecd895c418c048e806fd254e46d09b1ff0cdad2eba195ea3e
|
|
MD5 |
99ded8970d7e4d8d4840b98dabf9be82
|
|
BLAKE2b-256 |
40816cdb3ed222d13ae86bda77aafe8d50566e81a1169d49ed195b6263610704
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314t-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
966ac9358b23d21ecd895c418c048e806fd254e46d09b1ff0cdad2eba195ea3e
- Sigstore transparency entry: 318138907
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ccec3524ea41b9abd5600e3e27001fd774199dbb4f7b9cb248fcee37d4bda84c
|
|
MD5 |
f913634b2485e2508a97e466aa739880
|
|
BLAKE2b-256 |
ccf801618801cd59ccedcc99f0f96d20be67d8cfc3497da9ccaaad6b481781dd
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-win_amd64.whl
-
Subject digest:
ccec3524ea41b9abd5600e3e27001fd774199dbb4f7b9cb248fcee37d4bda84c
- Sigstore transparency entry: 318138497
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4efe919d443c2fd112fe25fe636a52f9628250c9a50d9bddb0488d8a6c09acc6
|
|
MD5 |
d5a7a048d10e223233b5671bb7948903
|
|
BLAKE2b-256 |
b02288e6693e60afe98901e5bbe91b8dea193e3aa7f42e2770f9c3339f5c1065
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-win32.whl
-
Subject digest:
4efe919d443c2fd112fe25fe636a52f9628250c9a50d9bddb0488d8a6c09acc6
- Sigstore transparency entry: 318138617
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
26cb45c47d71982d76282e303931c6dd4baee1753e5d48f9a89b3a63e690b3a3
|
|
MD5 |
913a7e6cf91b6e5bb0915c9b08e14132
|
|
BLAKE2b-256 |
b2c55c5db505ba692bc844246b066e23901d5905a32baf2f33719c620e65887f
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-musllinux_1_1_x86_64.whl
-
Subject digest:
26cb45c47d71982d76282e303931c6dd4baee1753e5d48f9a89b3a63e690b3a3
- Sigstore transparency entry: 318136947
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d87d37b3d476f4f7623c56a232045d25bd9b988314702ea01bd9b4a94948a778
|
|
MD5 |
b2fcb03ddb9a381482841cd86b31478d
|
|
BLAKE2b-256 |
6c6c65a7a0207787ad39ad804af4da7f06a60149de19481d73d270b540657234
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-musllinux_1_1_i686.whl
-
Subject digest:
d87d37b3d476f4f7623c56a232045d25bd9b988314702ea01bd9b4a94948a778
- Sigstore transparency entry: 318137208
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
449fca52774dc0199545fbf11f5128933e5a6833946707885cf7be8018017839
|
|
MD5 |
88f8bc4940b3892ea6c08e66b77c435b
|
|
BLAKE2b-256 |
fc52e429de4e8bc86ee65e090dae0f87f45abd271742c63fb2d03c522ffde28a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-musllinux_1_1_armv7l.whl
-
Subject digest:
449fca52774dc0199545fbf11f5128933e5a6833946707885cf7be8018017839
- Sigstore transparency entry: 318138400
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
36aa5a798aa34e11813a80425a30d8e052d8de4a28f27bfc0368cfc454d1b403
|
|
MD5 |
5e9a04af5ef77b281459c34ea2066b5d
|
|
BLAKE2b-256 |
e0a3f95bc57fd7f4166ce6da816cfa917fb7df4bb80e669eb459d85586498414
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-musllinux_1_1_aarch64.whl
-
Subject digest:
36aa5a798aa34e11813a80425a30d8e052d8de4a28f27bfc0368cfc454d1b403
- Sigstore transparency entry: 318137580
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
17eb39b1696179fb471eea2de958fa21f40a2cd8bf6b40d428312d5541e19dc4
|
|
MD5 |
0a15e4bc085a1371b21b4e5c8a462e4f
|
|
BLAKE2b-256 |
190ff6121b90b86b9093c066889274d26a1de3f29969d45c2ed1ecbe2033cb78
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
17eb39b1696179fb471eea2de958fa21f40a2cd8bf6b40d428312d5541e19dc4
- Sigstore transparency entry: 318138476
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
54c4637122e7cfd7aac5c1d3d4c02364f446d6923ea34cf9d0e8816d6e7a4936
|
|
MD5 |
ce838aed451caf275cb94b9b1ae2bf76
|
|
BLAKE2b-256 |
a277a122971c23f5ca4b53e4322c647ac7554626c95978f92d19419315dddd05
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
54c4637122e7cfd7aac5c1d3d4c02364f446d6923ea34cf9d0e8816d6e7a4936
- Sigstore transparency entry: 318137929
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
724aa7490be50235d97f07e2ca10067927c5d7f336b786ddbc868470e822aa25
|
|
MD5 |
14e94344adb88ac053eae97b1cb3a969
|
|
BLAKE2b-256 |
6fc66ebc02c9d5acdf4e5f2b1ec6e1252bd5feee25762246798ae823b3347457
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
724aa7490be50235d97f07e2ca10067927c5d7f336b786ddbc868470e822aa25
- Sigstore transparency entry: 318137569
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f1f5c450121430fd89cb5767e0a9728ecc65997768fd4027d069cb0368af62f9
|
|
MD5 |
48839a21be8d495e651fbb24f422af0d
|
|
BLAKE2b-256 |
090c06b7f8b0ce9fde89470505116a01fc0b6cb92d406c4fb1e46f168b5d3fa5
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
f1f5c450121430fd89cb5767e0a9728ecc65997768fd4027d069cb0368af62f9
- Sigstore transparency entry: 318138640
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c5d927e87461f8a0d448e4ab5eb2bca9f31ca5d8ea86d70c6f470bb5bc666d7e
|
|
MD5 |
1729ce4a7e0e05b8a0dad9db5b190ea5
|
|
BLAKE2b-256 |
d9c75e8eed361d1d3b8be14f38a54852c5370cc0ceb2c2d543b8ba590c34f080
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
c5d927e87461f8a0d448e4ab5eb2bca9f31ca5d8ea86d70c6f470bb5bc666d7e
- Sigstore transparency entry: 318138862
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c3811a56fa32e00b377ef79121c0193311fd7501f0fb378f254c7f083cc1fbe0
|
|
MD5 |
1699cef81dd59183bcb9593d0f4b4eca
|
|
BLAKE2b-256 |
55a34e0b31c0d454ae70c04684ed7c13d3c67b4c31790c278c1e788cb804fa4a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
c3811a56fa32e00b377ef79121c0193311fd7501f0fb378f254c7f083cc1fbe0
- Sigstore transparency entry: 318138542
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b96a74fa03a636c8a7d76f700d50e9a8bc17a516d6a72d28711225d641e30968
|
|
MD5 |
529f73484d1378d9f9bbffedaae69c66
|
|
BLAKE2b-256 |
67b467f6254d166ffbcc9d5fa1b56876eaa920c32ebc8e9d3d525b27296b693b
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-macosx_11_0_arm64.whl
-
Subject digest:
b96a74fa03a636c8a7d76f700d50e9a8bc17a516d6a72d28711225d641e30968
- Sigstore transparency entry: 318137286
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b8adeee57b41fe08e4520698a4b0bd3cc76dbd81f99424b806d70a5256a391d3
|
|
MD5 |
794ac246f8dfdea165aa9b7b40a2a2b6
|
|
BLAKE2b-256 |
746658487d2e16ef3d04f51a7c7f0e69823e806744b4c21101e89da4873074bc
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.whl
-
Subject digest:
b8adeee57b41fe08e4520698a4b0bd3cc76dbd81f99424b806d70a5256a391d3
- Sigstore transparency entry: 318137737
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.14, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7ba5e38c9fbd06f086f4a5a64a1a5b7b417cd3f8fc07a20e5c03651f72f36100
|
|
MD5 |
79cf1ef597c2ca6defccfefe5c3cc775
|
|
BLAKE2b-256 |
de07a1051cdbbe6d723df16d756b97f09da7c1adb69e29695c58f0392bc12515
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp314-cp314-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
7ba5e38c9fbd06f086f4a5a64a1a5b7b417cd3f8fc07a20e5c03651f72f36100
- Sigstore transparency entry: 318138049
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ee36348a204f0a68b03400f4736224e9f61d1c6a1582d7f875c1ca56f0254268
|
|
MD5 |
a63e17d17e6b809239beb5812499fb8a
|
|
BLAKE2b-256 |
370547b5e0bf7c41a3b1cdd3b7c2147f880c93226a6bef1f5d85183040cbdece
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-win_amd64.whl
-
Subject digest:
ee36348a204f0a68b03400f4736224e9f61d1c6a1582d7f875c1ca56f0254268
- Sigstore transparency entry: 318137190
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ccf30e3fe6d770a803dcdf3bb863fa44ba5dc2664d4610ba2746a3c73599f2e4
|
|
MD5 |
1b3e3b034c43e74cd6189db0eb42d120
|
|
BLAKE2b-256 |
3a7d7f8eb5c534b72b32c6eb79d74585bfee44a9a5647a14040bb65c31c2572d
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-win32.whl
-
Subject digest:
ccf30e3fe6d770a803dcdf3bb863fa44ba5dc2664d4610ba2746a3c73599f2e4
- Sigstore transparency entry: 318138129
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f8195006fdd0fc0a85b19df3d64a3ef8a240e483ae1dfc7ac6a4316019eb5df2
|
|
MD5 |
55218743cef789b3472cf0be705ab9d7
|
|
BLAKE2b-256 |
135b966365523ce8290a08e163e3b489626c5adacdff2b3da9da1b0823dfb14e
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-musllinux_1_1_x86_64.whl
-
Subject digest:
f8195006fdd0fc0a85b19df3d64a3ef8a240e483ae1dfc7ac6a4316019eb5df2
- Sigstore transparency entry: 318138170
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c54eed83726269594b9086d827decc7d2015696e31b99bf9b69b12d9063584fe
|
|
MD5 |
d8abb67665cae72076dcd15ba2b22e3a
|
|
BLAKE2b-256 |
6981c4e6cb06ed69db0dc81f9a8b1dc74995ebd4351e7a1877143f7031ff2700
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-musllinux_1_1_i686.whl
-
Subject digest:
c54eed83726269594b9086d827decc7d2015696e31b99bf9b69b12d9063584fe
- Sigstore transparency entry: 318137142
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
13240b3dea41b1174456cb9426843b085dc1a2bdcecd9ee2d8f65ac5703374b0
|
|
MD5 |
2a6f65d0685ff3bb95ff29ffdc32ba18
|
|
BLAKE2b-256 |
745f748e54cdb665ec098ec519e23caacc65fc5ae58718183b071e33fc1c45b4
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-musllinux_1_1_armv7l.whl
-
Subject digest:
13240b3dea41b1174456cb9426843b085dc1a2bdcecd9ee2d8f65ac5703374b0
- Sigstore transparency entry: 318136866
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
362fcf4d6f5e1242a4540812455f5a594949190f6fbc04f2ffbfd7ae0266d788
|
|
MD5 |
e7bf9d99584fc3d2fc8379a07a43a952
|
|
BLAKE2b-256 |
e803982f54553244b0afcbdb2ad2065d460f0ab05a72a96896a969a1ca136a1e
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-musllinux_1_1_aarch64.whl
-
Subject digest:
362fcf4d6f5e1242a4540812455f5a594949190f6fbc04f2ffbfd7ae0266d788
- Sigstore transparency entry: 318137347
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7d9aecd5c3845d415bd6c9957c93de8d93097e269137c2ecb0e5a5256374bdc8
|
|
MD5 |
de9b13be67d84ffb8f3175f328295edb
|
|
BLAKE2b-256 |
35ced902b9358a46a086938feae83b2251720e030f06e46006f4c1fc0ac9da20
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
7d9aecd5c3845d415bd6c9957c93de8d93097e269137c2ecb0e5a5256374bdc8
- Sigstore transparency entry: 318137967
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
78ed2e4099812a438b545dfbca1928ec825e743cd253bc820372d6ef8c3adff4
|
|
MD5 |
9e80b810ee78bbdb6f01f0da1df09cb1
|
|
BLAKE2b-256 |
c3efdbba082c6ebfb6410da4dd39a64e654d7194fcfd4567f85991a83fa4ec32
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
78ed2e4099812a438b545dfbca1928ec825e743cd253bc820372d6ef8c3adff4
- Sigstore transparency entry: 318137647
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
28952fbbf8b32c0cb7fa4be9bcccfca734bf0d0989f4b509dc7f2f70ba79ae06
|
|
MD5 |
b0a4259be8493b21f6f6bf097b091aed
|
|
BLAKE2b-256 |
572763525087ed40a53d1867021b9c4858b80cc86274ffe7225deed067d88d92
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
28952fbbf8b32c0cb7fa4be9bcccfca734bf0d0989f4b509dc7f2f70ba79ae06
- Sigstore transparency entry: 318136742
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
57286b289cd557ac76c24479d8ecfb6c3d5b854cce54ccc7671f9a2f5e2a2708
|
|
MD5 |
f325730f511f1b14dcfb151d51c2b3e8
|
|
BLAKE2b-256 |
b206cf5b02081132537d28964fb385fcef9ed9f8a017dd7d8c59d317e53ba50d
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
57286b289cd557ac76c24479d8ecfb6c3d5b854cce54ccc7671f9a2f5e2a2708
- Sigstore transparency entry: 318137525
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
df7da3f4b19e3078f9635f132d31b0a8196accb2576e3213ddd7a77f93317c20
|
|
MD5 |
cb0f793c1c8c12dfdf19d216804afab6
|
|
BLAKE2b-256 |
d67088f2a5cb904281ed5d3c111b8f7d5366639817a5470f059bcd26833fc870
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
df7da3f4b19e3078f9635f132d31b0a8196accb2576e3213ddd7a77f93317c20
- Sigstore transparency entry: 318137834
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6eb3ae5ab72edb2ed68bdc0f5710f0a6cad7fd778a610ec2c31ee15e32d3921e
|
|
MD5 |
e0aebb6c86f215467f8a38c489214657
|
|
BLAKE2b-256 |
cd84d0c80d279b2976870fc7d10f15dcb90a3c10c06566c6964b37c152694974
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
6eb3ae5ab72edb2ed68bdc0f5710f0a6cad7fd778a610ec2c31ee15e32d3921e
- Sigstore transparency entry: 318137375
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
619cd195d74c9e1d2a3ad78d63451d35379c84bd851aec552811e30842e1c67a
|
|
MD5 |
a089bcf141d6da3e8d0700e3368b9813
|
|
BLAKE2b-256 |
540191b485cf76a7efef638151e8a7d35784dae2c4ff221b1aec2c083e4b106d
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-macosx_11_0_arm64.whl
-
Subject digest:
619cd195d74c9e1d2a3ad78d63451d35379c84bd851aec552811e30842e1c67a
- Sigstore transparency entry: 318138276
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
045201ee17147e36cf43d8ae2fa4b4836944ac672df5874579b81cf6d40f1a1f
|
|
MD5 |
2993d8967b212dc01fa2eadbd9931163
|
|
BLAKE2b-256 |
00ad4186884083d6e4125b285903e17841827ab0d6d0cffc86216d27ed91e91d
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.whl
-
Subject digest:
045201ee17147e36cf43d8ae2fa4b4836944ac672df5874579b81cf6d40f1a1f
- Sigstore transparency entry: 318136693
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.13, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2c289729cc1c04e88bafa48b51082fb462b0a57dbc96494eab2be9b14dca62af
|
|
MD5 |
ce6543a31d538ed80dc07eb9926bca10
|
|
BLAKE2b-256 |
0a8b406c5dc0f8e82385519d8c299c40fd6a56d97eca3fcd6f5da8dad48de75b
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp313-cp313-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
2c289729cc1c04e88bafa48b51082fb462b0a57dbc96494eab2be9b14dca62af
- Sigstore transparency entry: 318137813
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
53fed080476d5f6ad7505883ec5d1ec28ba36c2273db3b3e92d7224fe5e463db
|
|
MD5 |
95d07939720840a2e65bc319647d26ae
|
|
BLAKE2b-256 |
75b1d53002729cfd94c5844ddfaf1233c86d29f2dbfc1b764a6562c41c044199
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-win_amd64.whl
-
Subject digest:
53fed080476d5f6ad7505883ec5d1ec28ba36c2273db3b3e92d7224fe5e463db
- Sigstore transparency entry: 318136663
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
514e2c008a8b4fa823122ca3ecab896eac41d9aa0f5fc881bd6264486c204e32
|
|
MD5 |
45c2c376c9453db99b10e546ff3ed9d0
|
|
BLAKE2b-256 |
38477776659aaa677046b77f527106e53ddd47373416d8fcdb1e1a881ec5dc06
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-win32.whl
-
Subject digest:
514e2c008a8b4fa823122ca3ecab896eac41d9aa0f5fc881bd6264486c204e32
- Sigstore transparency entry: 318138361
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
193c6488bd2f514cbc0bef5c18fad61a5f9c8d059dd56edf773b3b37f0e85496
|
|
MD5 |
8f9a4c5e545392c58610673ca5b8fced
|
|
BLAKE2b-256 |
11b04a595f01a243aec8ad272b160b161c44351190c35d98d7787919d962e9e5
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
-
Subject digest:
193c6488bd2f514cbc0bef5c18fad61a5f9c8d059dd56edf773b3b37f0e85496
- Sigstore transparency entry: 318137014
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
86dca35d2f15ef22922411496c220f3c9e315d5512f316fe417461971cc1648d
|
|
MD5 |
c6ed23e59f5c429cb800cc43b838ebba
|
|
BLAKE2b-256 |
1abe60d9be4cb33d8740a4aa94c7513f2ef3c4eba4fd13536f086facbafade71
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-musllinux_1_1_i686.whl
-
Subject digest:
86dca35d2f15ef22922411496c220f3c9e315d5512f316fe417461971cc1648d
- Sigstore transparency entry: 318137920
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
309e95bf898829476bccf4fd2c358ec00e7ff73a12f95a3cdeeba4bb1d3683d5
|
|
MD5 |
6caa591e53de286b828938001c205ae0
|
|
BLAKE2b-256 |
787bd83dad46adb6c988a74361f81ad9c5c22642be53ad88616a19baedd06243
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-musllinux_1_1_armv7l.whl
-
Subject digest:
309e95bf898829476bccf4fd2c358ec00e7ff73a12f95a3cdeeba4bb1d3683d5
- Sigstore transparency entry: 318136968
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9ca14cf1cabdb0b77d606db1bb9e9ca593b1dbd421fcaf251ec9a5431ec449f3
|
|
MD5 |
d9565a503173b657ae9fee31d1150247
|
|
BLAKE2b-256 |
f98bb363a5fb2c3347504fe9a64f8d0f1e276844f0e532aa7162c061cd1ffee4
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
-
Subject digest:
9ca14cf1cabdb0b77d606db1bb9e9ca593b1dbd421fcaf251ec9a5431ec449f3
- Sigstore transparency entry: 318138768
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2fa2fe41f48c4d58d923803383b0737f048918b5a0d10390de9628bb6272b107
|
|
MD5 |
217cfd5852b930c7493a2ab8e946b679
|
|
BLAKE2b-256 |
dcf05c2a5cd5711032f3b191ca50cb786c17689b4a9255f9f768866e6c9f04d9
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
2fa2fe41f48c4d58d923803383b0737f048918b5a0d10390de9628bb6272b107
- Sigstore transparency entry: 318138190
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5edf4c9e32493035b514cf2ba0c969d81ccb31de63bd05490cc8bfe3b431674e
|
|
MD5 |
e643638950f1537976d676a82ad6a37b
|
|
BLAKE2b-256 |
df6bcd1778a207c29eda10791e3dfa018b588001928086e179fc71254793c625
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
5edf4c9e32493035b514cf2ba0c969d81ccb31de63bd05490cc8bfe3b431674e
- Sigstore transparency entry: 318138388
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
555eb9c90c450e0f76e27d9ff064e64a8b8c6478ab1a5594c91b7bc5c82fd9f0
|
|
MD5 |
b216d54224cd63653d0422eb3b5d2929
|
|
BLAKE2b-256 |
2e808a6343b13778ce52d94bb8d5365a30c3aa951276b1857201fe79d7e2ad25
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
555eb9c90c450e0f76e27d9ff064e64a8b8c6478ab1a5594c91b7bc5c82fd9f0
- Sigstore transparency entry: 318136990
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
529d6d667c65fd105d10bd83d1cd3f9869f8fd6c66efac9415c1812281196a92
|
|
MD5 |
730b97b11f475f1c834bc7db5b0b4d4c
|
|
BLAKE2b-256 |
a3bc3a0189aef1af2b29632c039c19a7a1b752bc21a4053582a5464183a0ad3d
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
529d6d667c65fd105d10bd83d1cd3f9869f8fd6c66efac9415c1812281196a92
- Sigstore transparency entry: 318137768
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
092a3ec26e0a679305018380e4f652eae1b6dfe3fc3b154ee76aa6b92221a17c
|
|
MD5 |
bccb4a3508bfbc30cd838c7d2eaaa636
|
|
BLAKE2b-256 |
9876122e444f59dbc216451d8e3d8282c9665dc79eaf822f5f1470066be1b695
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
092a3ec26e0a679305018380e4f652eae1b6dfe3fc3b154ee76aa6b92221a17c
- Sigstore transparency entry: 318138891
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4f8d82081ed7d8fe52c982bd1f06e4c7631a73fe1fb6d4b3b3f2404f87dc40fe
|
|
MD5 |
ba20795c5a27cbf94729a4618247424b
|
|
BLAKE2b-256 |
e9520851a16a62447532e30ba95a80e638926fdea869a34b4b5b9d0a020083ba
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
4f8d82081ed7d8fe52c982bd1f06e4c7631a73fe1fb6d4b3b3f2404f87dc40fe
- Sigstore transparency entry: 318136717
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
aeb26e2898994b6e8319f19a4d37c481512acdcc6d30e1b5ecc9d8ec57e835cb
|
|
MD5 |
2e484bf0461ab1dec80406bd95efb873
|
|
BLAKE2b-256 |
1ca8626c76263085c6d5ded0e71823b411e9522bfc93ba6cc59855a5869296e7
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
-
Subject digest:
aeb26e2898994b6e8319f19a4d37c481512acdcc6d30e1b5ecc9d8ec57e835cb
- Sigstore transparency entry: 318138332
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
11eb40722b3fcf3e6890fba46c711bf60f8dc26360a24876c85e52d76c33b25b
|
|
MD5 |
6680ae27bd33f2e91108ae3605b676de
|
|
BLAKE2b-256 |
2bcc4f6d185d8a744776f53035e72831ff8eefc2354f46ab836f4bd3c4f6c138
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.whl
-
Subject digest:
11eb40722b3fcf3e6890fba46c711bf60f8dc26360a24876c85e52d76c33b25b
- Sigstore transparency entry: 318137307
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.12, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
dba5c14b8b4f73ea1e65720f5a3fe4280c1d27761238378be8274135c60bbc6e
|
|
MD5 |
2c8ade54b1afaa6561c146872e7f3295
|
|
BLAKE2b-256 |
0b0d7c84c913a5fae85b773a9dcf8874390f9d68ba0fcc6630efa7ff1541b950
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp312-cp312-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
dba5c14b8b4f73ea1e65720f5a3fe4280c1d27761238378be8274135c60bbc6e
- Sigstore transparency entry: 318136747
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
dca88bc8b68ce6d35dafd8c4d5d59a238a56c43fa02b74c2ce5f9dfb0d1ccb46
|
|
MD5 |
060eee171704404fcaded7bf6acbb209
|
|
BLAKE2b-256 |
a9bd102d6deb87a8524ac11cddcd31a7612b8f20bf9b473c3c645045e3b957c7
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-win_amd64.whl
-
Subject digest:
dca88bc8b68ce6d35dafd8c4d5d59a238a56c43fa02b74c2ce5f9dfb0d1ccb46
- Sigstore transparency entry: 318137991
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5251585608778b9ac8effed544933df7ad85b4ba21ee9738b551f17798b215ac
|
|
MD5 |
1fe3fb133bde7b4b6e6e2edf9b5d551e
|
|
BLAKE2b-256 |
3432203c57acdb6eea727e7078b2219984e64ed4ad043c996ed56321301ba167
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-win32.whl
-
Subject digest:
5251585608778b9ac8effed544933df7ad85b4ba21ee9738b551f17798b215ac
- Sigstore transparency entry: 318138145
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
6b1b751a5411032b08fb3ac556160229ca01c6bbe4757bb3a9a40b951ebaac23
|
|
MD5 |
5fa04887c90204f323aef9fabbcd475f
|
|
BLAKE2b-256 |
1172bd5db5c49dbebc8b002f1c4983101b28d2e7fc9419753db1c31ec22b03ef
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
-
Subject digest:
6b1b751a5411032b08fb3ac556160229ca01c6bbe4757bb3a9a40b951ebaac23
- Sigstore transparency entry: 318136761
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
405f8790bad36ce0b4bbdb964ad51507bfc7942c78447f25cb828b870a1d86a0
|
|
MD5 |
bed542b28b3d2d272532e217ae10630f
|
|
BLAKE2b-256 |
8a6d3b98b61841a5376d9a9b8468ae58753a8e6cf22be9534a0fa5af4d8621cc
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-musllinux_1_1_i686.whl
-
Subject digest:
405f8790bad36ce0b4bbdb964ad51507bfc7942c78447f25cb828b870a1d86a0
- Sigstore transparency entry: 318137356
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
244c2ed8bd7ccbb294a2abe7ca6498db7e89d7eb5e744691dc511a7dc82e65ca
|
|
MD5 |
afa4f9ba5e8c2b794db974276a08351e
|
|
BLAKE2b-256 |
5062f11709bfdce74af79a88b410dcb76dedc97612166e759136931bf63cfd7b
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-musllinux_1_1_armv7l.whl
-
Subject digest:
244c2ed8bd7ccbb294a2abe7ca6498db7e89d7eb5e744691dc511a7dc82e65ca
- Sigstore transparency entry: 318138968
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
03a7316c6bf763dfa34279335b27702321da44c455a64de58112968c0818ec4a
|
|
MD5 |
a490ac9035d2fec0c426f5d283934b23
|
|
BLAKE2b-256 |
268e1dbcfaaa7a702ee82ee683ec3a81656934dd7e04a7bc4ee854033686f98a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
-
Subject digest:
03a7316c6bf763dfa34279335b27702321da44c455a64de58112968c0818ec4a
- Sigstore transparency entry: 318136675
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
41eafc8c1653a35a5c7e75ad48138f9f60085cc05cd99d592e5298552d944e9f
|
|
MD5 |
b4750f955ce4ac5cb38ec6e61d6c3e51
|
|
BLAKE2b-256 |
ffcd3b5a662736ea62ff7fa4c4a10a85e050bfdaad375cc53dc80427e8afe41c
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
41eafc8c1653a35a5c7e75ad48138f9f60085cc05cd99d592e5298552d944e9f
- Sigstore transparency entry: 318137532
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
320d61938950d95da2371b46c406ec433e7955fae9f396c8e1bf148ffc187d11
|
|
MD5 |
d14e80c06e4a774f6fe34aa352283e5d
|
|
BLAKE2b-256 |
9cad32a8d5f4b1e3717787945ec6d71bd1c6e6bccba4b7e903fc0d9d4e4b08c3
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
320d61938950d95da2371b46c406ec433e7955fae9f396c8e1bf148ffc187d11
- Sigstore transparency entry: 318137117
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4b86f8e6d9c1b3f9a75b2af870c93ceee0f1b827cd2507387540e053b35d7459
|
|
MD5 |
8f69b96ea50fd78362ee719fe28b4a68
|
|
BLAKE2b-256 |
366ec1b60ceb6d7ea6ff8b0bf197520aefe23f878bf2bfb0de65f2b0c2f82cd1
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
4b86f8e6d9c1b3f9a75b2af870c93ceee0f1b827cd2507387540e053b35d7459
- Sigstore transparency entry: 318138829
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ad52784120e7e4d8a0b5b0517d185b8bf7f74f5e17272857ddc8951a628d9be1
|
|
MD5 |
18d578dc9fe0b12975d7474483708179
|
|
BLAKE2b-256 |
a4ad40e4b3408501d886d082db465c33971655fe82573c535428e52ab905f4d0
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
ad52784120e7e4d8a0b5b0517d185b8bf7f74f5e17272857ddc8951a628d9be1
- Sigstore transparency entry: 318138259
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ee77ac543f1e2b22af1e8be3ae589f729491b6090582340aacd77d1d757d9569
|
|
MD5 |
1be8961f480e7cdfc6a7e918a072813d
|
|
BLAKE2b-256 |
0e7919dba7c03a27408d8d11b5a7a4a7908459cfd4e6f375b73264dc66517bf6
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
ee77ac543f1e2b22af1e8be3ae589f729491b6090582340aacd77d1d757d9569
- Sigstore transparency entry: 318138734
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1f71989668458fc327ac15396db28d92df22f8024bb12963929798b2729d2df5
|
|
MD5 |
d6407afb604777135e442ae92936ca8e
|
|
BLAKE2b-256 |
17eb5358b238808abebd0c949c42635c3751204ca7cf82b29b984abe9f5e33c8
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
1f71989668458fc327ac15396db28d92df22f8024bb12963929798b2729d2df5
- Sigstore transparency entry: 318137672
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
50e7d65533857736cd56f6509cf2c4866f28ad84dd15b5bdbf2f8a81e77fa28a
|
|
MD5 |
131c5a7849bcb04bf21901b67192f133
|
|
BLAKE2b-256 |
c935041a3af01bf3f6158f120070f798546d4383b962b63c35cd91dcbf193e17
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
-
Subject digest:
50e7d65533857736cd56f6509cf2c4866f28ad84dd15b5bdbf2f8a81e77fa28a
- Sigstore transparency entry: 318137715
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
66a18f68506290349a256375d7aa2f645b9f7993c10fc4cc211db214e4e61d2b
|
|
MD5 |
1730ae42ff33817b7fea91c6555cb21c
|
|
BLAKE2b-256 |
0bf3001d00070ca92e5fbe6aacc768e455568b0cde46b0eb944561a4ea132300
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.whl
-
Subject digest:
66a18f68506290349a256375d7aa2f645b9f7993c10fc4cc211db214e4e61d2b
- Sigstore transparency entry: 318137420
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.11, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
04cfa39118570e70e920a9b75c733299784b6d269733dbc791d9aaed6edd2615
|
|
MD5 |
4073897807e0f355954c9f8dba061d88
|
|
BLAKE2b-256 |
d0898001f6a9b6b6e9fa69bec5319789083475d6f26d52aaea209d3ebf939284
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp311-cp311-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
04cfa39118570e70e920a9b75c733299784b6d269733dbc791d9aaed6edd2615
- Sigstore transparency entry: 318138413
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
98aa4a351b047b0f7f9e971585982065028adc2c162c5c23c5d5734c5ccc1077
|
|
MD5 |
8bae55697c117f39a1ce314e3724f0e7
|
|
BLAKE2b-256 |
5af406af04727b9556721049e2127656d727306d275c518e3d97f9ed4cffd0d8
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-win_amd64.whl
-
Subject digest:
98aa4a351b047b0f7f9e971585982065028adc2c162c5c23c5d5734c5ccc1077
- Sigstore transparency entry: 318138554
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1c6cea67f6000b81f6bd27d14c8a6f62d00336ca7252fd03ee16f6b70eb5c0d2
|
|
MD5 |
eac353417727284b3c2ba016a0ad31e2
|
|
BLAKE2b-256 |
1facb2819640eef0592a6de7ca832c0d23c69bd1620f765ce88b60dbc8da9ba2
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-win32.whl
-
Subject digest:
1c6cea67f6000b81f6bd27d14c8a6f62d00336ca7252fd03ee16f6b70eb5c0d2
- Sigstore transparency entry: 318137255
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
033be66fdceb3d63b2c99b257a98380c4ec22c9e4dca54a2bfec3718cd24e184
|
|
MD5 |
cb18c231465456d49888178dab7bfb4d
|
|
BLAKE2b-256 |
3b80925a5c668dcee1c6f61775067185c5dc9a63c766d5393e5c60d2af4217a7
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
-
Subject digest:
033be66fdceb3d63b2c99b257a98380c4ec22c9e4dca54a2bfec3718cd24e184
- Sigstore transparency entry: 318137050
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f31fcc0d30dc3f3e94ea6b4d8e1a855071757c6abf6a7b1e284050ab7d4c299c
|
|
MD5 |
299bcdefd252b8999adbf0cde3ae15af
|
|
BLAKE2b-256 |
befbeb2aef7fb2730e56c5a2c9000817ee8fb4a95c92f19cc6e441afed42ec29
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-musllinux_1_1_i686.whl
-
Subject digest:
f31fcc0d30dc3f3e94ea6b4d8e1a855071757c6abf6a7b1e284050ab7d4c299c
- Sigstore transparency entry: 318137951
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
360c00338ecf48921492455007f904be607fc7818de3d681acbcc542aae2fb36
|
|
MD5 |
0d934c858bbd30878c671bff79fe404a
|
|
BLAKE2b-256 |
145c4ef926c8c3c1bf6da96f9c53450ff334cdb6d0fc1efced0aea97e2090803
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-musllinux_1_1_armv7l.whl
-
Subject digest:
360c00338ecf48921492455007f904be607fc7818de3d681acbcc542aae2fb36
- Sigstore transparency entry: 318138493
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0cf1b5a81b21ea175c976c3ab09e00494258f4b49b7995efc86060cced3f0b2e
|
|
MD5 |
d63da0499e9d7b81aec9a4390b2c1bb0
|
|
BLAKE2b-256 |
8a6cb241511c7ffd5f1da29641429bb0e19b5fbcffafde5ba1bbcbf9394ea456
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
-
Subject digest:
0cf1b5a81b21ea175c976c3ab09e00494258f4b49b7995efc86060cced3f0b2e
- Sigstore transparency entry: 318136890
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
0ee47c220f0f5179ddc923ab91fc9e282c27b29fabc60c433dfe06f08084f798
|
|
MD5 |
6e2adf39e702b8675a61362820ad033c
|
|
BLAKE2b-256 |
db7e4f6ca98a4b474348e965a529b359184785d1119ab7c4c9ec1280b8bea50a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
0ee47c220f0f5179ddc923ab91fc9e282c27b29fabc60c433dfe06f08084f798
- Sigstore transparency entry: 318137401
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cb148b35ab20c75b19a06c27f05732e2a321adbd86fadc93f9466dbd7b1154a7
|
|
MD5 |
83337615ee4c6e1a544fb1786b68d4d9
|
|
BLAKE2b-256 |
c8703bf0670380069b3abd4c6b53f61d3148f4e08935569c08efbeaf7550e87d
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
cb148b35ab20c75b19a06c27f05732e2a321adbd86fadc93f9466dbd7b1154a7
- Sigstore transparency entry: 318136785
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
e5d042c376d2025300da37d65192d06a457918b63b31140f697f85fd8e310b29
|
|
MD5 |
a711dd9ade1971069ce66d830100d2d1
|
|
BLAKE2b-256 |
601c79d522757c494dfd9e9b208b0604cc7e97b481483cc477144f5705a06ab7
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
e5d042c376d2025300da37d65192d06a457918b63b31140f697f85fd8e310b29
- Sigstore transparency entry: 318136825
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
40a75b95e05e38a2a055b2446f09994ce1139151721659315151d4ad6289bbff
|
|
MD5 |
4a21d680ebb440c793e09931eb705b20
|
|
BLAKE2b-256 |
28efb43280767ebcde022ba31f1e9902137655a956ae30e920d75630fa67e36e
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
40a75b95e05e38a2a055b2446f09994ce1139151721659315151d4ad6289bbff
- Sigstore transparency entry: 318137066
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a6d9a23a35b3a105c42a8de60fc2e80281ae6e758f05a3baea0b68eb1ddcb679
|
|
MD5 |
aebecea9579c0c915e52f61ea5ffbae6
|
|
BLAKE2b-256 |
d78079bd84dbeb109e2c6efb74e661b7bd4c3ba393208ebcf69e2ae9454ae80c
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
a6d9a23a35b3a105c42a8de60fc2e80281ae6e758f05a3baea0b68eb1ddcb679
- Sigstore transparency entry: 318137033
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
bd748d3407ec63e049b3aea1595e218814fccab329b7fb10bb51120a30e9fb7e
|
|
MD5 |
3d6dcef199078d82b437fc08f7ef3022
|
|
BLAKE2b-256 |
7a606665e52f01a8919bf37c43dcf0e03b6dd3866f5c4e95440b357d508ee14e
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
bd748d3407ec63e049b3aea1595e218814fccab329b7fb10bb51120a30e9fb7e
- Sigstore transparency entry: 318138661
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
66425bc25b5481359b12a6719b6e7c90ffe76d85d0691f1da7df304bfb8ce45c
|
|
MD5 |
71b34374a742c7a95f394d34efc9165d
|
|
BLAKE2b-256 |
96297961e09a849eea7d8302e7baa6f829dd3ef3faf199cb25ed29b318ae799b
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-macosx_11_0_arm64.whl
-
Subject digest:
66425bc25b5481359b12a6719b6e7c90ffe76d85d0691f1da7df304bfb8ce45c
- Sigstore transparency entry: 318138455
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1d77b9b0aca02a3f6eeeff27fcd315ca5972616c0919ee38e522cce257bcd349
|
|
MD5 |
a519566c7a13991f084a13bf889bbb48
|
|
BLAKE2b-256 |
f5a8a6e2744288938ccd320a5c6f6f3653faa790f933f5edd088c6e5782a2354
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.whl
-
Subject digest:
1d77b9b0aca02a3f6eeeff27fcd315ca5972616c0919ee38e522cce257bcd349
- Sigstore transparency entry: 318138080
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.10, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
d0859c65775e8ebf2cbc084bfd51bd0ffda10266da6f9306451123b89f8e5a63
|
|
MD5 |
7e6ab33b4b5c18536b958a1795dc8dcb
|
|
BLAKE2b-256 |
53d320d0402e4e983b66603117ad3dd3b864a05d7997a830206d3ff9cacef9a2
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp310-cp310-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
d0859c65775e8ebf2cbc084bfd51bd0ffda10266da6f9306451123b89f8e5a63
- Sigstore transparency entry: 318138315
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5eb0603d8f8019451fc00e1daf4022dfc9df59c16d2e68f925c77ac94555493b
|
|
MD5 |
96c29781a202ab5034a0e058321a2c97
|
|
BLAKE2b-256 |
376bae7626994c7285bfc0ffa0d9929c3c16f2d0aea5b9e151dad82fd0616762
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-win_amd64.whl
-
Subject digest:
5eb0603d8f8019451fc00e1daf4022dfc9df59c16d2e68f925c77ac94555493b
- Sigstore transparency entry: 318138576
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
dcc3b15b97f3054964b47e2a5fcfb4f5ff569e9af0a7af19f1d4c5f4231bbf3b
|
|
MD5 |
b1435a000f69fd9a24204353a256ddd8
|
|
BLAKE2b-256 |
9ce175706936eb81605a939e15b8b7a1241b35e805ce76a64838b4586c440f61
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-win32.whl
-
Subject digest:
dcc3b15b97f3054964b47e2a5fcfb4f5ff569e9af0a7af19f1d4c5f4231bbf3b
- Sigstore transparency entry: 318136851
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
cec977d673ad596bae6bdfc0091ee386cef05b515b23f2ce52f9fadd0156186a
|
|
MD5 |
9101bbdb4c42b02260170f9e972dcccc
|
|
BLAKE2b-256 |
6ed59aa69784da58b6bd3f5abcaad2eb76ad2a89efde7929821bad17355fd8da
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
-
Subject digest:
cec977d673ad596bae6bdfc0091ee386cef05b515b23f2ce52f9fadd0156186a
- Sigstore transparency entry: 318137499
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
19eb43e21db9dc42613599703c1a8e40b0170514a313f11f4c8be380425a1019
|
|
MD5 |
f6ed9de07ed16fd7de7ce927fbb26d0f
|
|
BLAKE2b-256 |
ed86b431a51162d4c8f33b28bdcca047382e1038757d43625e65c8d29ed6c31f
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-musllinux_1_1_i686.whl
-
Subject digest:
19eb43e21db9dc42613599703c1a8e40b0170514a313f11f4c8be380425a1019
- Sigstore transparency entry: 318138297
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7855bc4df5ed5f7fb1c98ea3fd98292e9acd3c097b1b21d596a69e1e60455400
|
|
MD5 |
140de6735eb0183004da527cba1a2be0
|
|
BLAKE2b-256 |
663b3f46a349b1a7a67e2bda10e99403e9163c87c95e34399cc69f4f86a2461a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-musllinux_1_1_armv7l.whl
-
Subject digest:
7855bc4df5ed5f7fb1c98ea3fd98292e9acd3c097b1b21d596a69e1e60455400
- Sigstore transparency entry: 318138021
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a88bc9b191422cd5b22a1521b28607008590628b6b2a8a7db5c54ec04dc82fa1
|
|
MD5 |
8f6434f6314f588e9966030c69b767d0
|
|
BLAKE2b-256 |
31b4c38f6077d8ec7c9208d23d4f7f19a618f5b4940170c9deba5d3bdc722eb6
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl
-
Subject digest:
a88bc9b191422cd5b22a1521b28607008590628b6b2a8a7db5c54ec04dc82fa1
- Sigstore transparency entry: 318137443
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
ab86d22f69a21961f35d1a1b02278b5bb9a95c5f5b4722c6904bca343c8d219f
|
|
MD5 |
202e327240fdfe9e8be60de8ba2a03ed
|
|
BLAKE2b-256 |
d11d6f6018ee81acec6c4ef6cda6bd0770959992caf2f1c41e7944a135a53eca
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
ab86d22f69a21961f35d1a1b02278b5bb9a95c5f5b4722c6904bca343c8d219f
- Sigstore transparency entry: 318138061
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a24c61f1fad56ca68aee53bf67b6a84cd762a2c71ee4b71064378547c2411ae6
|
|
MD5 |
35174cad6d79382de7e838195b143e57
|
|
BLAKE2b-256 |
f728fa3b017668a3264068c893e57a6b923dfd8fa851a1c821c4cc1c95cd47a6
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
a24c61f1fad56ca68aee53bf67b6a84cd762a2c71ee4b71064378547c2411ae6
- Sigstore transparency entry: 318136910
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
261e9200942189d8201a005ffa1e29339479364b5b0013ab0758b03229d9ac67
|
|
MD5 |
4f8a2082153c8a41d2eea338b7d70858
|
|
BLAKE2b-256 |
b4df1db5b57ccf77e923687b2061766e69c2cbdaf41641204207dbf55ef7ebe9
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
261e9200942189d8201a005ffa1e29339479364b5b0013ab0758b03229d9ac67
- Sigstore transparency entry: 318138344
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b820004db8b22715cee2ef154d4b47b3d76c4677ff217c587dd46f694a3052f9
|
|
MD5 |
9d8a6c6b5d170ca4943d602bc508d1e1
|
|
BLAKE2b-256 |
895c2663bdfcea6ab06fcac97883b5b574a12236c5d9f70691cc05dd49cb10fb
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
b820004db8b22715cee2ef154d4b47b3d76c4677ff217c587dd46f694a3052f9
- Sigstore transparency entry: 318137904
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1e2400c09ba620e2ca91a903dbe907d75f6a1994d8337e9f3026778daa92b08d
|
|
MD5 |
da0634aad2f13b8a50f28589d591231e
|
|
BLAKE2b-256 |
0a6075084f30277d5f2481d20a544654894a32528f98f4415c1bd467823ab5b2
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
1e2400c09ba620e2ca91a903dbe907d75f6a1994d8337e9f3026778daa92b08d
- Sigstore transparency entry: 318137471
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c9af16f0b07d851b968c54e52d19430d820bb47c26d10a09cfb5c7127de26773
|
|
MD5 |
f6d8f3516aadc813cf336e11baa82eb5
|
|
BLAKE2b-256 |
3552722a2efbe104903648185411f9c634e5678035476bc556001d6ef811e191
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
c9af16f0b07d851b968c54e52d19430d820bb47c26d10a09cfb5c7127de26773
- Sigstore transparency entry: 318138304
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a4963dac24213690183110d6b41125fdc4af871a5a213589d6c6606d49e1b949
|
|
MD5 |
79353d8b6321c203af7cd70af58b243a
|
|
BLAKE2b-256 |
4155d36255f1a9004a3352469143d2b8a5b769e0eb4e484a8192da41ad67e893
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-macosx_11_0_arm64.whl
-
Subject digest:
a4963dac24213690183110d6b41125fdc4af871a5a213589d6c6606d49e1b949
- Sigstore transparency entry: 318137749
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a9994a42cd12f07ece04eff94dbf6e127b3986f7af9b26db1eb4545c477a6604
|
|
MD5 |
cc7c6886acef1dee7147b7cfd0cac95c
|
|
BLAKE2b-256 |
d4b0ccf09697df7fcc750c4913dc4bf3fb91e5b778dda65fb9fa55dde61c03dc
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.whl
-
Subject digest:
a9994a42cd12f07ece04eff94dbf6e127b3986f7af9b26db1eb4545c477a6604
- Sigstore transparency entry: 318137860
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.9, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
2581e82dca742b55d8b1d7f33892394c06b057a74f2853ffcb0802dcddcbf694
|
|
MD5 |
fe14a8a199acd58500f6bfec6caf307a
|
|
BLAKE2b-256 |
8c333d7a7fbfb313614d59ae2e512b9dacfc22efb07c20e4af7deb73d3409f7b
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp39-cp39-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
2581e82dca742b55d8b1d7f33892394c06b057a74f2853ffcb0802dcddcbf694
- Sigstore transparency entry: 318137236
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Branch / Tag:
refs/tags/v2.11.0
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@1f411f3a05e5acf96ca8a632087916d5bf8b3500
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
20c8684d2a693e3052532b9730d4399ba2ee212cacf3b961349aad35d13b0c8c
|
|
MD5 |
d1e740d9b2899cc13822b70812d54850
|
|
BLAKE2b-256 |
60e1106831335ea27f8a3c0af51e0a7ae2c81d52e52d431c5ee201ef97f323d1
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-win_amd64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-win_amd64.whl
-
Subject digest:
20c8684d2a693e3052532b9730d4399ba2ee212cacf3b961349aad35d13b0c8c
- Sigstore transparency entry: 326504574
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
c77570660abcf3b8931b258d57b600b3484795977797009bed112f0d7b6933bf
|
|
MD5 |
aa6de3493cfccfdfe6c0c6eb26a6d2a2
|
|
BLAKE2b-256 |
506fc64a72a6784be9796788b23272b31dbf7fc41d3e7d239554b7424fd40aaa
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-win32.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-win32.whl
-
Subject digest:
c77570660abcf3b8931b258d57b600b3484795977797009bed112f0d7b6933bf
- Sigstore transparency entry: 326505565
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
84265f2221e83fb1e41a8e33788c06e3ba22629e88644d0841a470cc28baa3f7
|
|
MD5 |
23727a2bcd9eca568dced5e8d3507981
|
|
BLAKE2b-256 |
09b08cef3c4ce0509b082bc50df88b0c5836fea1e5393f5a4d68d7f31e3fb8ec
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
-
Subject digest:
84265f2221e83fb1e41a8e33788c06e3ba22629e88644d0841a470cc28baa3f7
- Sigstore transparency entry: 326506217
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
72524cd27e67cf95d9c6bb5eacf47cf78473554f74685f57ccabb368988d91bc
|
|
MD5 |
fbe611c61dcb584ba02f270c15116ab4
|
|
BLAKE2b-256 |
037cc592b327c2e2bbfa3522469a7cf3937bcada93623de62e3e4c58bdd76290
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-musllinux_1_1_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-musllinux_1_1_i686.whl
-
Subject digest:
72524cd27e67cf95d9c6bb5eacf47cf78473554f74685f57ccabb368988d91bc
- Sigstore transparency entry: 326504871
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-musllinux_1_1_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-musllinux_1_1_armv7l.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3705888b7acacddd46886926fa390dd3df0e1d9e6fe273fd4edb4cbf8eb64735
|
|
MD5 |
7719c412a0887ab5ca57ab57764f68aa
|
|
BLAKE2b-256 |
9466737ba79d9c541ab8f39dd7571d240176637064aea4133d895d1997ccb6c9
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-musllinux_1_1_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-musllinux_1_1_armv7l.whl
-
Subject digest:
3705888b7acacddd46886926fa390dd3df0e1d9e6fe273fd4edb4cbf8eb64735
- Sigstore transparency entry: 326505919
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4526c4313306a264049e03e6c17b4e728a0647166dddbc1af7baf8e78a65721c
|
|
MD5 |
b48d7b444b723e5f3cdc335d136cc7c0
|
|
BLAKE2b-256 |
4373beb35c34b43676a260baf116a080b32c48aab5322ea559d9f87b214109f5
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-musllinux_1_1_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-musllinux_1_1_aarch64.whl
-
Subject digest:
4526c4313306a264049e03e6c17b4e728a0647166dddbc1af7baf8e78a65721c
- Sigstore transparency entry: 326505437
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
f6a32313a5fdbc4fc4fd681a1895d55ee4bf81275e88638b1643b54ecf850cbe
|
|
MD5 |
6437c686d748f36a39a64ec1c73f1e25
|
|
BLAKE2b-256 |
151ac6eae628480aa1fc5f6f85437c7d8ec0d1172597acd1c61182202a902c0f
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
-
Subject digest:
f6a32313a5fdbc4fc4fd681a1895d55ee4bf81275e88638b1643b54ecf850cbe
- Sigstore transparency entry: 326506171
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
75b07d36ee034f05e3566878d83f3043d8297dad67937ada15c504ac3e50f9fd
|
|
MD5 |
4aafd7841d0bf0a46965ece1de0d644a
|
|
BLAKE2b-256 |
4c5a0e467f5cce7059dd5a0fc89b43d18d5d903c16d1438c1e26c86ba3d1f13a
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
-
Subject digest:
75b07d36ee034f05e3566878d83f3043d8297dad67937ada15c504ac3e50f9fd
- Sigstore transparency entry: 326504906
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9115f7a4ba2f110e9dcda72a43adaeba202f42cf181877bcf3eecca359576bfe
|
|
MD5 |
342c07c8738a8f707d9fd22eb2053619
|
|
BLAKE2b-256 |
9a9e20316ea2357365cfbe6abad87da983d54ed8783dd4c762d9fcea01500871
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
-
Subject digest:
9115f7a4ba2f110e9dcda72a43adaeba202f42cf181877bcf3eecca359576bfe
- Sigstore transparency entry: 326506478
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
753710ae1f33b1a34178d104b7e1ac0a94a3f386d14dc24305663f63dc67cabc
|
|
MD5 |
3752289e4fb1273253fdcf92e6f633c4
|
|
BLAKE2b-256 |
f3b5b58bb5f99dafadcb374eae0327ca43f9809f89b059763dc55d994df9aba8
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
-
Subject digest:
753710ae1f33b1a34178d104b7e1ac0a94a3f386d14dc24305663f63dc67cabc
- Sigstore transparency entry: 326503737
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
1789a057b6d09acf112c1c84701fc03ba5cc0fcf2ada786ce02a7e73dd466ca5
|
|
MD5 |
bc949f0a24d0cc5efe3d5e0a3accf94d
|
|
BLAKE2b-256 |
0ef57b8bf3970371dcdefdb826ad176fc6c7629b4cefbf535030186c004f785b
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
-
Subject digest:
1789a057b6d09acf112c1c84701fc03ba5cc0fcf2ada786ce02a7e73dd466ca5
- Sigstore transparency entry: 326505412
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
4b9a46eca804a51e8eb7b243c8e4513afc3b63aa60b69bc48e0efe6c648c4de0
|
|
MD5 |
c772ba66a69e5c600d7c440e1863a715
|
|
BLAKE2b-256 |
582f8a676748ce6dfeaa634342174136e7917a33863e0a6704ffff15f6ac2c54
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-manylinux2010_i686.manylinux_2_12_i686.whl
-
Subject digest:
4b9a46eca804a51e8eb7b243c8e4513afc3b63aa60b69bc48e0efe6c648c4de0
- Sigstore transparency entry: 326506012
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
a8949f97ab445d8aa2ccbeab244b46257114d38b6860210b2109b7e5b3ff2c5e
|
|
MD5 |
292f7af98bfc10dd1acfe5e674c0f849
|
|
BLAKE2b-256 |
ed4172439b1a438a564c6332fda3716ca4f19a7df709d6f22e69e72058e1a3ce
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-macosx_11_0_arm64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-macosx_11_0_arm64.whl
-
Subject digest:
a8949f97ab445d8aa2ccbeab244b46257114d38b6860210b2109b7e5b3ff2c5e
- Sigstore transparency entry: 326504547
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
9f995c6b638255c9301166ed7033cb8fe0f34043a46b8e6a055a56b8a38c2114
|
|
MD5 |
8ce83f524816a2aae2e4d7aea8e7542f
|
|
BLAKE2b-256 |
d191dd17eea749d42a6a07a1eb90043520a24f95b1fa31ebb4cefe75e0b94a84
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.whl
-
Subject digest:
9f995c6b638255c9301166ed7033cb8fe0f34043a46b8e6a055a56b8a38c2114
- Sigstore transparency entry: 326503847
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type:
File details
Details for the file cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
.
File metadata
- Download URL: cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
- Upload date:
- Size: 3.6 MB
- Tags: CPython 3.8, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
bf81b2e517baadf41eb85c4762ae596dd1dd2c852988ce86a2df6aa7e31d9228
|
|
MD5 |
2d0b97d0d057d4d3d3247c0c121dc8c6
|
|
BLAKE2b-256 |
6564e34ee535519fd14cde3a7f3f8cd3b4ef54483b9df655e4180437eb884aab
|
Provenance
The following attestation bundles were made for cramjam-2.11.0-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
:
Publisher:
CI.yml
on milesgranger/cramjam
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1
-
Predicate type:
https://docs.pypi.org/attestations/publish/v1
-
Subject name:
cramjam-2.11.0-cp38-cp38-macosx_10_12_universal2.macosx_10_12_x86_64.macosx_11_0_arm64.whl
-
Subject digest:
bf81b2e517baadf41eb85c4762ae596dd1dd2c852988ce86a2df6aa7e31d9228
- Sigstore transparency entry: 326504231
- Sigstore integration time:
-
Permalink:
milesgranger/cramjam@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Branch / Tag:
refs/tags/v2.11.0.post1
- Owner: https://github.com/milesgranger
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com
-
Runner Environment:
github-hosted
-
Publication workflow:
CI.yml@111fa5c59d857bc8a9fcccfe83522902d2f03304
-
Trigger Event:
release
-
Statement type: