High-performance Multi-method Mixed-Model Association for large-scale GWAS
Project description
JAMMA (High-performance Multi-method Mixed-Model Association) — a modern Python and C reimplementation of GEMMA for large-scale GWAS.
- GEMMA-compatible: Drop-in replacement with identical CLI flags and output formats
- Numerical equivalence: Validated against GEMMA — 100% significance agreement, 100% effect direction agreement
- Fast: Up to 17x faster than GEMMA 0.98.5
- Memory-safe: Pre-flight memory checks prevent OOM crashes before allocation
- Cross-platform: Runs on Linux, macOS, and Windows with NumPy and vendor BLAS
- Optimized for Intel: Best performance on Intel CPUs with MKL BLAS. Runs well on Apple Silicon (Accelerate BLAS). Other architectures (AMD, ARM Linux) work correctly but with less BLAS optimization
- Pure Python + C extensions (OpenMP SIMD): NumPy stack with vendor BLAS dispatch (MKL-ILP64, Accelerate-ILP64) via jlinalg C layer for eigendecomposition and OpenMP-parallel Wald tests
- Large-scale ready: Optional numpy-mkl ILP64 wheels (numpy 2.4.2) for >46k sample eigendecomposition
Installation
macOS (Intel or ARM)
pip install jamma
That's it. macOS Accelerate BLAS handles large matrices natively.
Linux / Windows / Intel Mac
For small datasets (<46k samples), the standard install works:
pip install jamma
For large-scale GWAS (>46k samples) on x86_64 (Linux or Intel Mac), install numpy-mkl first — standard numpy uses 32-bit BLAS integers which overflow at ~46k samples. MKL is x86_64-only; Windows users are limited to <46k samples (ARM Mac uses Accelerate-ILP64 natively). Pre-built ILP64 wheels are available for Python 3.11–3.14:
pip install numpy \
--extra-index-url https://michael-denyer.github.io/numpy-mkl \
--force-reinstall --upgrade
pip install jamma --no-deps
pip install psutil loguru threadpoolctl click progressbar2 bed-reader
From Git (latest development version):
pip install numpy \
--extra-index-url https://michael-denyer.github.io/numpy-mkl \
--force-reinstall --upgrade
pip install git+https://github.com/michael-denyer/jamma.git --no-deps
pip install psutil loguru threadpoolctl click progressbar2 bed-reader
Why
--no-deps? JAMMA depends onnumpy>=2.0.0, so a normalpip install jammawill pull in standard numpy and overwrite the ILP64 build.--no-depsprevents this; you install the runtime dependencies manually instead.
See the User Guide for ILP64 verification steps.
Platform Support
| Platform | BLAS | ILP64 | Notes |
|---|---|---|---|
| Linux x86_64 (Intel) | MKL (optimal) | numpy-mkl | Best performance |
| Linux x86_64 (AMD) | OpenBLAS | numpy-mkl | Works well |
| ARM Mac (M1+) | Accelerate | native | Excellent performance |
| ARM Linux | OpenBLAS | -- | Works correctly |
| Intel Mac | Accelerate / MKL | numpy-mkl | Full support |
| Windows | OpenBLAS | -- | Limited to <46k samples |
JAMMA's heavy computation (eigendecomposition, matrix multiplication, REML optimization) is BLAS-bound. Intel MKL delivers the best throughput, particularly at scale. Apple Accelerate is a close second on Apple Silicon. OpenBLAS works correctly everywhere but is less tuned for these workloads.
Quick Start
# Compute kinship matrix (centered relatedness)
jamma -gk 1 -bfile data/my_study -o output
# Output: output/output.cXX.npy (binary, fast)
# Add --legacy-text for GEMMA-compatible text format
# Run LMM association (Wald test)
jamma -lmm 1 -bfile data/my_study -k output/output.cXX.npy -o results
# Multiple phenotypes (eigendecomp computed once, reused)
jamma -lmm 1 -bfile data/my_study -k output/output.cXX.npy -n "1 2 3" -o results
Output files:
output.cXX.npy— Kinship matrix (binary NumPy format;.cXX.txtwith--legacy-text)results.assoc.txt— Association results (chr, rs, ps, n_miss, allele1, allele0, af, beta, se, logl_H1, l_remle, p_wald)results.log.txt— Run log
The reader auto-detects format, so existing .cXX.txt files still work as -k input.
Python API
One-call GWAS (recommended)
The gwas() function is the recommended way to run JAMMA from Python. It handles the full pipeline — data loading, kinship computation, eigendecomposition, and LMM association — in a single call. You don't need to compute a kinship matrix separately unless you want to reuse it across runs.
from jamma import gwas
# Simplest usage: computes kinship internally, no separate kinship step needed
result = gwas("data/my_study")
print(f"Tested {result.n_snps_tested} SNPs in {result.timing['total_s']:.1f}s")
# Or supply a pre-computed kinship matrix to skip recomputation
result = gwas("data/my_study", kinship_file="data/kinship.cXX.npy")
# Compute kinship from scratch and save it for reuse
result = gwas("data/my_study", save_kinship=True, output_dir="output")
# With covariates and LRT test
result = gwas("data/my_study", kinship_file="k.txt", covariate_file="covars.txt", lmm_mode=2)
# LOCO analysis (leave-one-chromosome-out)
result = gwas("data/my_study", loco=True)
# LOCO with eigen caching (skip eigendecomp on subsequent runs)
result = gwas("data/my_study", loco=True, write_eigen=True, eigen_dir="output/eigen")
result = gwas("data/my_study", loco=True, eigen_dir="output/eigen") # reuses cache
# Multi-phenotype with eigendecomp reuse (Python API)
result = gwas("data/my_study", write_eigen=True, phenotype_column=1)
result = gwas("data/my_study", eigenvalue_file="output/result.eigenD.npy",
eigenvector_file="output/result.eigenU.npy", phenotype_column=2)
# Or use the CLI for automatic multi-phenotype: jamma -lmm 1 ... -n "1 2 3"
# SNP filtering
result = gwas("data/my_study", kinship_file="k.txt", snps_file="snps.txt", hwe=0.001)
Low-level API
import numpy as np
from jamma.io import load_plink_binary
from jamma.kinship import compute_centered_kinship
from jamma.lmm import run_lmm_association_numpy
from jamma.lmm.eigen import eigendecompose_kinship
data = load_plink_binary("data/my_study")
phenotypes = np.loadtxt("data/my_study.pheno")
kinship = compute_centered_kinship(data.genotypes)
eigenvalues, eigenvectors = eigendecompose_kinship(kinship)
snp_info = [
{"chr": str(data.chromosome[i]), "rs": data.sid[i],
"pos": int(data.bp_position[i]), "a1": data.allele_1[i], "a0": data.allele_2[i]}
for i in range(data.n_snps)
]
# Returns LmmRunResult — .associations for list[AssocResult], .pve for heritability, .pve_se for SE
run_result = run_lmm_association_numpy(
genotypes=data.genotypes,
phenotypes=phenotypes,
kinship=None, # Not needed when eigenvalues/eigenvectors provided
snp_info=snp_info,
eigenvalues=eigenvalues,
eigenvectors=eigenvectors,
lmm_mode=1,
)
results = run_result.associations
Memory Safety
Unlike GEMMA, JAMMA includes pre-flight memory checks that prevent out-of-memory crashes:
from jamma.core.memory import estimate_workflow_memory
# Check memory requirements BEFORE loading data
estimate = estimate_workflow_memory(n_samples=125_000, n_snps=95_000)
print(f"Peak memory: {estimate.total_gb:.1f}GB")
print(f"Available: {estimate.available_gb:.1f}GB")
print(f"Sufficient: {estimate.sufficient}")
Key features:
- Pre-flight checks before large allocations (eigendecomposition, genotype loading)
- RSS memory logging at workflow boundaries
- Incremental result writing (no memory accumulation)
- Safe chunk size defaults with hard caps
GEMMA will silently OOM and get killed by the OS. JAMMA fails fast with clear error messages.
Performance
Benchmark on mouse_hs1940 (1,940 samples × 12,226 SNPs), Apple M2, GEMMA 0.98.5. Best-of runs, end-to-end wall clock:
| Operation | GEMMA (OpenBLAS) | GEMMA (Accelerate) | JAMMA NumPy | JAMMA NumPy+C | JAMMA NumPy+C (stream) | C speedup | vs GEMMA (OB) | vs GEMMA (Accel) |
|---|---|---|---|---|---|---|---|---|
Kinship (-gk 1) |
2.1s | 1.7s | 262ms | 262ms | — | 1.0x | 8.0x | 6.5x |
LMM Wald (-lmm 1) |
11.0s | 7.6s | 4.1s | 879ms | 1.1s | 4.7x | 12.5x | 8.7x |
LMM All (-lmm 4) |
20.5s | 13.9s | 6.0s | 1.3s | 1.4s | 4.7x | 16.0x | 10.9x |
LMM Wald+4cov (-lmm 1 -c) |
40.8s | 18.8s | 9.1s | 2.4s | 2.6s | 3.8x | 17.0x | 7.8x |
GEMMA (Accelerate) is GEMMA 0.98.5 compiled against Apple's Accelerate framework instead of Homebrew OpenBLAS — 1.3-2.2x faster due to AMX-accelerated BLAS, with identical numerical results. NumPy+C uses a C extension with OpenMP for Wald (-lmm 1) — REML optimization is compute-bound and parallelizes well across SNPs. The C speedup grows with covariates because the Pab table recursion is more expensive. NumPy+C is the fastest backend at all modes including all-tests (-lmm 4) at mouse scale. NumPy+C (stream) reads genotypes from disk in chunks — slightly slower than batch but the production code path for large datasets that don't fit in memory. Kinship is always pure NumPy/BLAS.
LOCO (Leave-One-Chromosome-Out)
| Backend | LOCO Wald | vs GEMMA |
|---|---|---|
| GEMMA 0.98.5 | 3m31s | 1.0x |
| JAMMA NumPy+C | 7.3s | 28.8x |
The large speedup has two sources: (1) JAMMA computes per-chromosome LOCO kinship via streaming and tests only that chromosome's SNPs, while GEMMA -loco tests all SNPs against each LOCO kinship (19x redundant work on 19 chromosomes); (2) JAMMA runs all chromosomes in a single process, avoiding 19 cold-start overheads.
Supported Features
Current
- Kinship matrix computation — centered (
-gk 1) and standardized (-gk 2) - Univariate LMM Wald test (
-lmm 1) - Likelihood ratio test (
-lmm 2) - Score test (
-lmm 3) - All tests mode (
-lmm 4) - LOCO kinship — leave-one-chromosome-out analysis (
-loco) - Binary
.npyI/O — default for kinship and eigen files;--legacy-textfor GEMMA text format - Multi-phenotype support —
-n "1 2 3"with single eigendecomposition reuse - Eigendecomposition reuse — manual via
-d/-u/-eigen, automatic in multi-phenotype mode - LOCO eigen caching —
--eigen-dirsaves/loads per-chromosome eigen files across runs - Phenotype column selection (
-n) - SNP subset selection for association and kinship (
-snps/-ksnps) - HWE QC filtering (
-hwe) - Pre-computed kinship input (
-k) - Covariate support (
-c) - PLINK binary format (
.bed/.bim/.fam) with input dimension validation - Large-scale streaming I/O (>100k samples via numpy-mkl ILP64 — numpy 2.4.2)
- Lambda optimization bounds (
-lmin/-lmax) - Individual weights for kinship (
-widv) - Categorical covariates with one-hot encoding (
-cat) - Pre-flight memory checks (fail-fast before OOM)
- RSS memory logging at workflow boundaries
- Incremental result writing
- In-place mean imputation for missing genotypes (per-chunk, zero-copy)
- Early sample filtering — kinship accumulated at filtered size when phenotype missingness is present
- jlinalg C layer: vendor BLAS dispatch for eigendecomposition (DSYEVD default, DSYEVR O(n) workspace fallback under memory pressure), DSYRK, DGEMM
- Optional C extension: OpenMP-parallel Wald tests (auto-fallback to pure Python)
Planned
- Multivariate LMM (mvLMM)
Architecture
JAMMA uses NumPy for data loading and kinship. Eigendecomposition uses jlinalg.eigh which dispatches to vendor DSYEVD (default) or DSYEVR (O(n) workspace, under memory pressure) via the jlinalg C layer. LMM association uses a NumPy backend with an optional C extension for OpenMP-parallel Wald/Score/LRT tests. Mode is auto-selected based on available memory: batch runner when genotypes fit in RAM, streaming runner (two-pass disk I/O) for large datasets.
flowchart TD
CLI["CLI / gwas()"] --> PIPE["PipelineRunner"]
PIPE --> LOAD["Load PLINK + Phenotypes<br>(NumPy)"]
LOAD --> KIN["Kinship<br>(NumPy matmul)"]
KIN --> EIG["Eigendecomposition<br>(jlinalg.eigh - vendor DSYEVD/DSYEVR)"]
EIG --> MEM{"memory?"}
MEM -->|"fits"| NP["NumPy Batch Runner"]
MEM -->|"large"| NPS["NumPy Streaming Runner<br>two-pass disk streaming"]
NP --> CEXT{"C extension?"}
NPS --> CEXT
CEXT -->|yes| C["C Extension<br>OpenMP + SIMD"]
CEXT -->|no| PY["Pure Python<br>fallback"]
C --> RES["AssocResult"]
PY --> RES
Core algorithms (likelihood.py, prepare_common.py) are shared between batch and streaming runners.
jlinalg: Controlled C Compute Layer
JAMMA includes jlinalg, a controlled C compute layer that dispatches to vendor BLAS/LAPACK (MKL-ILP64, Accelerate-ILP64) when available, with NumPy fallback when no vendor library is available. This eliminates numpy BLAS compatibility issues (LP64 integer overflow at >46k samples, scipy ILP64 incompatibility).
graph TD
A["jamma CLI / Python API"] --> B["LMM Pipeline"]
B --> C["jlinalg Python API"]
C --> D{"C Extension"}
D -->|Loaded| E["Vendor Dispatch<br/>MKL-ILP64 / Accelerate-ILP64"]
D -->|Not loaded| G["NumPy Fallback"]
B --> H["_lmm_accel.c<br/>Wald/Score/LRT"]
jlinalg provides vendor LAPACK dispatch (DSYEVD/DSYEVR) for eigendecomposition and symmetric BLAS specialization (dsyrk). See the jlinalg Architecture doc for layer diagrams and the contributing guide.
See Code Map for the full architecture diagram with source links.
Documentation
- Why JAMMA? — Key differentiators from GEMMA
- User Guide — Installation, usage examples, CLI reference
- Code Map — Architecture diagrams and source navigation
- Equivalence Proof — Mathematical proofs and empirical validation against GEMMA
- GEMMA Divergences — Known differences from GEMMA
- Performance — Bottleneck analysis, scale validation, configuration guide
- jlinalg Architecture — C vendor BLAS dispatch layer design
- jlinalg Algorithms — Cache blocking, D&C eigendecomposition, SVD
- Contributing — Development setup, testing, and PR guidelines
- Changelog — Version history
Requirements
- Python 3.11+
- NumPy 2.0+
License
GPL-3.0 (same as GEMMA)
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jamma-5.0.1.tar.gz.
File metadata
- Download URL: jamma-5.0.1.tar.gz
- Upload date:
- Size: 83.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9541438acab67598b83b6bd3ce76d0798d2d9a86675aaf64ed64f6f6ae76db89
|
|
| MD5 |
68ed1d2c17893b01acf861f46e8f4c99
|
|
| BLAKE2b-256 |
97d376b13dd067873a7f5874664026a9a57f6e8cd7a4dbed8812d6f69e90bf37
|
Provenance
The following attestation bundles were made for jamma-5.0.1.tar.gz:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1.tar.gz -
Subject digest:
9541438acab67598b83b6bd3ce76d0798d2d9a86675aaf64ed64f6f6ae76db89 - Sigstore transparency entry: 1180174797
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: jamma-5.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 668.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b271101e8d1a2c4fbdc57080677908bd12a58f3954aea1d752755599d9f617b2
|
|
| MD5 |
b068dfb6ebf8e1c633dee5af0b6a88bb
|
|
| BLAKE2b-256 |
97955b72ce4fbc45703223a6a505870b0b868f1384e9b07672adf2ee38db3bfa
|
Provenance
The following attestation bundles were made for jamma-5.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
b271101e8d1a2c4fbdc57080677908bd12a58f3954aea1d752755599d9f617b2 - Sigstore transparency entry: 1180175043
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.0.1-cp313-cp313-macosx_14_0_arm64.whl.
File metadata
- Download URL: jamma-5.0.1-cp313-cp313-macosx_14_0_arm64.whl
- Upload date:
- Size: 465.7 kB
- Tags: CPython 3.13, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c9b2a14d15a69a1bd48d795313d51895d860f9cf06a9b12124210f89b4a7eed
|
|
| MD5 |
48c0b32927b419e2c6adb53d0c74a39d
|
|
| BLAKE2b-256 |
51f22c51fda745337781ac9462026f7c93c83290c1bacafc31a74afd13ea5b31
|
Provenance
The following attestation bundles were made for jamma-5.0.1-cp313-cp313-macosx_14_0_arm64.whl:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1-cp313-cp313-macosx_14_0_arm64.whl -
Subject digest:
1c9b2a14d15a69a1bd48d795313d51895d860f9cf06a9b12124210f89b4a7eed - Sigstore transparency entry: 1180174870
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: jamma-5.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 668.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31913ea6ad2e82ae56a6b8ea683bb1617d5a9254d0dd0c03874dcd338cd7b1a1
|
|
| MD5 |
3defd412625c6a0edbe5f8a32f42eb3e
|
|
| BLAKE2b-256 |
970ccb12a61f2c239cf1114c48b47d7ea47bc95a6c0eab1c70f9abd3f8fa3e5b
|
Provenance
The following attestation bundles were made for jamma-5.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
31913ea6ad2e82ae56a6b8ea683bb1617d5a9254d0dd0c03874dcd338cd7b1a1 - Sigstore transparency entry: 1180174982
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.0.1-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: jamma-5.0.1-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 465.7 kB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc4819afb21469f5ec95ec77c739dffff4c9012e9f9d5236636effc60cedb85b
|
|
| MD5 |
f29a319457b7f1cdc2fcf66f38a7f110
|
|
| BLAKE2b-256 |
6afbf0262aec20297f08bce1ef10d17382acf2f462b38e735463cae856659eb7
|
Provenance
The following attestation bundles were made for jamma-5.0.1-cp312-cp312-macosx_14_0_arm64.whl:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
cc4819afb21469f5ec95ec77c739dffff4c9012e9f9d5236636effc60cedb85b - Sigstore transparency entry: 1180175228
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: jamma-5.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 665.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbae263ad6bba7e7ed202fd35fcca9faa4416a1bd0ba67db5cb7b9fff5ea440c
|
|
| MD5 |
ba49f04db7a68fffb7f29733b86ab750
|
|
| BLAKE2b-256 |
a8f11312a5d531f8af890568a1f523f494fd3f279afdb70b30c7056a19e4bbbe
|
Provenance
The following attestation bundles were made for jamma-5.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
bbae263ad6bba7e7ed202fd35fcca9faa4416a1bd0ba67db5cb7b9fff5ea440c - Sigstore transparency entry: 1180175099
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.0.1-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: jamma-5.0.1-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 466.0 kB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
395c2e3837f7942c251efb6c7ac78a0aa58136eca739a4b9aaa67f0d94eb6baa
|
|
| MD5 |
d2cc76000ca3d5a70dbcce0288ecd399
|
|
| BLAKE2b-256 |
6d36533b5ac327929993344a5e681948d29b0355c0f8c716c874ebab07ab48f0
|
Provenance
The following attestation bundles were made for jamma-5.0.1-cp311-cp311-macosx_14_0_arm64.whl:
Publisher:
build-wheels.yml on michael-denyer/jamma
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
jamma-5.0.1-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
395c2e3837f7942c251efb6c7ac78a0aa58136eca739a4b9aaa67f0d94eb6baa - Sigstore transparency entry: 1180175170
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Branch / Tag:
refs/tags/v5.0.1 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@f0602a453adb2cb8b56ea61a6cf05a6b2316ce83 -
Trigger Event:
release
-
Statement type: