Highly-Accelerated Multi-method Mixed-Model Association for large-scale GWAS
Project description
JAMMA (Highly-Accelerated Multi-method Mixed-Model Association) -- a modern Python and C reimplementation of GEMMA for large-scale GWAS.
- Drop-in GEMMA replacement: Same CLI flags, same file formats, same results. Change one word in your pipeline.
- Numerical equivalence: Validated against GEMMA -- 100% significance agreement, 100% effect direction agreement
- Fast: Up to 30x faster than GEMMA 0.98.5 (LOCO mode); 12-17x on single-pass LMM
- 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.3) for >46k sample eigendecomposition
Installation
macOS (13.3+)
pip install jamma
That's it. macOS Accelerate BLAS handles large matrices natively (Accelerate-ILP64).
Windows (10+), Windows Server (2016+) and Linux (Intel/AMD)
Install numpy-mkl first -- standard numpy uses 32-bit BLAS integers which overflow at ~46k samples. Pre-built ILP64 wheels are available for Python 3.11-3.14:
pip install psutil loguru threadpoolctl click progressbar2 bed-reader
pip install numpy \
--index-url https://michael-denyer.github.io/numpy-mkl \
--force-reinstall --upgrade
pip install jamma --no-deps
From Git (latest development version):
pip install psutil loguru threadpoolctl click progressbar2 bed-reader
pip install numpy \
--index-url https://michael-denyer.github.io/numpy-mkl \
--force-reinstall --upgrade
pip install git+https://github.com/michael-denyer/jamma.git --no-deps
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 | MKL (optimal) | numpy-mkl | Best performance |
| ARM Linux | OpenBLAS | -- | Works correctly |
| ARM Mac (M1+) | Accelerate | native | Excellent performance |
| Intel Mac (macOS 13.3+) | Accelerate | native | Full support |
| Windows x86_64 (10+) | MKL (optimal) | numpy-mkl | Best performance |
| Windows Server x86_64 (2016+) | MKL (optimal) | numpy-mkl | Best performance |
See the User Guide for BLAS backend details.
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.
GEMMA CLI Parity
JAMMA supports GEMMA's core GWAS flags (-gk, -lmm, -bfile, -k, -c, -o, -n, -loco, -snps, -hwe) with identical names and semantics. Existing GEMMA commands work by changing gemma to jamma:
| GEMMA | JAMMA |
|---|---|
gemma -gk 1 -bfile study -o out |
jamma -gk 1 -bfile study -o out |
gemma -lmm 1 -bfile study -k kinship.cXX.txt -o results |
jamma -lmm 1 -bfile study -k kinship.cXX.txt -o results |
gemma -lmm 4 -bfile study -k k.txt -c covars.txt -o results |
jamma -lmm 4 -bfile study -k k.txt -c covars.txt -o results |
- Reads and writes GEMMA
.assoc.txtand.cXX.txtformats - Accepts PLINK binary
.bed/.bim/.famfiles (same as GEMMA) - Output columns match GEMMA (mode-dependent -- see User Guide)
- Also supports binary
.npyformat for kinship (faster I/O); use--legacy-textfor GEMMA text format
Python API
The gwas() function 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)
# Reuse cached eigen files from a previous run
result = gwas("data/my_study", loco=True,
eigenvalue_file="output/result.eigenD.npy",
eigenvector_file="output/result.eigenU.npy")
# 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)
See the User Guide for the low-level component API (kinship, eigendecomposition, LMM runners).
Memory Safety
Unlike GEMMA, JAMMA includes pre-flight memory checks that prevent out-of-memory crashes:
- 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. See the User Guide for the programmatic memory estimation API.
Performance
Benchmark on mouse_hs1940 (1,940 samples x 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 |
LOCO Wald (-loco) |
3m30s | 2m26s | -- | 7.1s | -- | -- | 29.6x | 20.6x |
See Performance for benchmark methodology and large-scale (125k) results.
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.3)
- 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
subgraph ENTRY["ENTRY"]
CLI["CLI / gwas()"]
PIPE["PipelineRunner"]
CLI --> PIPE
end
subgraph IO["DATA LOADING"]
LOAD["Load PLINK +\nPhenotypes"]
end
subgraph CORE["CORE COMPUTATION"]
KIN["Kinship\n(DGEMM, chunked)"]
EIG["Eigendecomposition\n(jlinalg.eigh → DSYEVD/DSYEVR)"]
KIN --> EIG
end
subgraph ASSOC["ASSOCIATION TESTING"]
MEM{"Memory\nbudget?"}
NP["Batch Runner\n(genotypes in RAM)"]
NPS["Streaming Runner\n(two-pass disk I/O)"]
CEXT{"C extension?"}
C["C Extension\nOpenMP + SIMD"]
PY["Pure Python\nfallback"]
MEM -->|"fits"| NP
MEM -->|"large"| NPS
NP --> CEXT
NPS --> CEXT
CEXT -->|"yes"| C
CEXT -->|"no"| PY
end
RES["AssocResult\n(.assoc.txt)"]
PIPE --> LOAD --> CORE
EIG --> ASSOC
C --> RES
PY --> RES
style ENTRY fill:#1a1a2e,stroke:#53a8b6,color:#eee,stroke-width:2px
style IO fill:#1a1a2e,stroke:#53a8b6,color:#eee,stroke-width:2px
style CORE fill:#0f3460,stroke:#f5b461,color:#eee,stroke-width:2px
style ASSOC fill:#0f3460,stroke:#e94560,color:#eee,stroke-width:2px
style CLI fill:#53a8b6,stroke:#3d8a96,color:#fff
style PIPE fill:#53a8b6,stroke:#3d8a96,color:#fff
style LOAD fill:#53a8b6,stroke:#3d8a96,color:#fff
style KIN fill:#f5b461,stroke:#d4943f,color:#1a1a2e
style EIG fill:#f5b461,stroke:#d4943f,color:#1a1a2e
style MEM fill:#e94560,stroke:#c73550,color:#fff
style NP fill:#7b68ae,stroke:#5a4d8a,color:#fff
style NPS fill:#7b68ae,stroke:#5a4d8a,color:#fff
style CEXT fill:#e94560,stroke:#c73550,color:#fff
style C fill:#2ecc71,stroke:#27ae60,color:#1a1a2e
style PY fill:#95a5a6,stroke:#7f8c8d,color:#1a1a2e
style RES fill:#2ecc71,stroke:#27ae60,color:#1a1a2e
Core algorithms (likelihood.py, prepare_common.py) are shared between batch and streaming runners. See jlinalg Architecture for the C vendor BLAS dispatch layer.
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
- Glossary -- Terms and abbreviations (ILP64, REML, LOCO, BLAS, etc.)
- 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.1.4.tar.gz.
File metadata
- Download URL: jamma-5.1.4.tar.gz
- Upload date:
- Size: 84.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b5d3d1bd2d7851571f4b7ea43103fc104ba4058bf6a7d26490a77c2a09a10e1
|
|
| MD5 |
c04b6fdf3c7b58852fa6babac040cb03
|
|
| BLAKE2b-256 |
5e745b27c8b95ffbd9d021ce0051bafd760a16e056d7424162985fdd2ad473f4
|
Provenance
The following attestation bundles were made for jamma-5.1.4.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.1.4.tar.gz -
Subject digest:
8b5d3d1bd2d7851571f4b7ea43103fc104ba4058bf6a7d26490a77c2a09a10e1 - Sigstore transparency entry: 1252926509
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: jamma-5.1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 673.1 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 |
dbf3bf46ab77a95df75db91dbd5a40f032efd4c44d14154f539c4d61cd4a319a
|
|
| MD5 |
1af22eea38e09e57de63719d228f751f
|
|
| BLAKE2b-256 |
c6f1059e9ed4ee460df409597e272c2446857db0fc4b95e143b2bbf54437327a
|
Provenance
The following attestation bundles were made for jamma-5.1.4-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.1.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
dbf3bf46ab77a95df75db91dbd5a40f032efd4c44d14154f539c4d61cd4a319a - Sigstore transparency entry: 1252926613
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.1.4-cp313-cp313-macosx_14_0_arm64.whl.
File metadata
- Download URL: jamma-5.1.4-cp313-cp313-macosx_14_0_arm64.whl
- Upload date:
- Size: 469.9 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 |
69e911602be902580fc2c18a76cd9734813cb62bd6f34d77adb47ccda32c94b9
|
|
| MD5 |
d9cae2bc45094d7a3ac4edae166f69dc
|
|
| BLAKE2b-256 |
bd9d939093c155d992d4b74b86a2fab875938c65def982edc7050afcdd6ac1ba
|
Provenance
The following attestation bundles were made for jamma-5.1.4-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.1.4-cp313-cp313-macosx_14_0_arm64.whl -
Subject digest:
69e911602be902580fc2c18a76cd9734813cb62bd6f34d77adb47ccda32c94b9 - Sigstore transparency entry: 1252926547
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: jamma-5.1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 673.1 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 |
228653c0881e7c46010162c7a4d67574326f61e04a33b79102a741185eff7d12
|
|
| MD5 |
8cae22c1b46ae1a0d463592c7bc96273
|
|
| BLAKE2b-256 |
067c7148edf2fd9aeb4a68a437cce1e3c24ab6c300c209ebaaf2b5be9245a0a7
|
Provenance
The following attestation bundles were made for jamma-5.1.4-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.1.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
228653c0881e7c46010162c7a4d67574326f61e04a33b79102a741185eff7d12 - Sigstore transparency entry: 1252926646
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.1.4-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: jamma-5.1.4-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 469.9 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 |
b2b79aa88aa9c63943d739e33d10782c2afecd7d463c8d911a16062b9034839b
|
|
| MD5 |
5af1ff40a48e59982b841ee8bc1fce3b
|
|
| BLAKE2b-256 |
0319f063cd42b9be98a5b8da717e6cf68a8c71a409648945cb8fa19cf86e82a7
|
Provenance
The following attestation bundles were made for jamma-5.1.4-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.1.4-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
b2b79aa88aa9c63943d739e33d10782c2afecd7d463c8d911a16062b9034839b - Sigstore transparency entry: 1252926632
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: jamma-5.1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 669.6 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 |
abaccce664e0c9e3ee196da18386c064568388f41268dd3c79a4e146f3a71198
|
|
| MD5 |
4cda94f40fb84b0e49e7354062c29c77
|
|
| BLAKE2b-256 |
9aaad106ef3f402e6d92c704c1aca1fda487c3c89f8dbbb6bdc5061143d1342b
|
Provenance
The following attestation bundles were made for jamma-5.1.4-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.1.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
abaccce664e0c9e3ee196da18386c064568388f41268dd3c79a4e146f3a71198 - Sigstore transparency entry: 1252926659
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type:
File details
Details for the file jamma-5.1.4-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: jamma-5.1.4-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 470.3 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 |
6fb296657e6a253d93c556fb5ade261bbed44bfeb794e98650b3e73e371f6b49
|
|
| MD5 |
d046d90d868d973ac37d16a431ae9aeb
|
|
| BLAKE2b-256 |
24fd59b492aeb94e2520cd0a90a451cf472550d6bcda067352bb2d470c3f9d21
|
Provenance
The following attestation bundles were made for jamma-5.1.4-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.1.4-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
6fb296657e6a253d93c556fb5ade261bbed44bfeb794e98650b3e73e371f6b49 - Sigstore transparency entry: 1252926577
- Sigstore integration time:
-
Permalink:
michael-denyer/jamma@a2b842e25163444988931d2a7cfb6399e753d72b -
Branch / Tag:
refs/tags/v5.1.4 - Owner: https://github.com/michael-denyer
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@a2b842e25163444988931d2a7cfb6399e753d72b -
Trigger Event:
release
-
Statement type: