Skip to main content

CI PyPI Python 3.11+ NumPy Hypothesis License: GPL-3.0 Buy Me a Coffee

JAMMA

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 43x faster than GEMMA 0.98.5 (LOCO mode); 16-31x on single-pass LMM. Against a GEMMA built with Apple Accelerate rather than OpenBLAS, roughly 25x and 9.7-15.2x
  • 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.6+) 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 on numpy>=2.4.6, so a normal pip install jamma will pull in standard numpy and overwrite the ILP64 build. --no-deps prevents 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.txt with --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.txt and .cXX.txt formats
  • Accepts PLINK binary .bed/.bim/.fam files (same as GEMMA)
  • Output columns match GEMMA (mode-dependent -- see User Guide)
  • Also supports binary .npy format for kinship (faster I/O); use --legacy-text for 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: writes a per-chromosome eigen cache to output_dir
result = gwas("data/my_study", loco=True, write_eigen=True, output_dir="output")
# Reusing a LOCO eigen cache on a later run is CLI-only — the cache is a set of
# per-chromosome files keyed by directory, so point --eigen-dir at the same dir:
#   jamma -lmm 1 -bfile data/my_study -loco --eigen-dir output -o result

# Several phenotypes against one eigendecomposition (the CLI's -n "1 2 3")
result = gwas("data/my_study", phenotype_columns=[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

JAMMA on mouse_hs1940 (1,940 samples x 12,226 SNPs), Apple M5 Pro (18 cores), Accelerate-ILP64, GEMMA 0.98.5. Best of 3 wall-clock runs of scripts/bench_all_backends.py, measured 2026-09-05 (LOCO retains its 2026-09-02 measurement). GEMMA timings include the CLI command; JAMMA batch timings start with genotypes loaded. Association runs use precomputed kinship.

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) 1.1s 1.3s 275ms 275ms -- 1.0x 3.9x 4.5x
LMM Wald (-lmm 1) 7.4s 4.4s 8.5s 364ms 515ms 23.3x 20.4x 12.2x
LMM All (-lmm 4) 13.7s 7.8s 12.3s 388ms 509ms 31.7x 35.3x 20.2x
LMM Wald+4cov (-lmm 1 -c) 27.7s 12.1s 19.4s 840ms 951ms 23.1x 33.0x 14.4x
LOCO Wald (-loco) 2m31s 1m20s -- 3.3s -- -- ~46x ~24x

LOCO includes 19 per-chromosome eigendecompositions. Its historical timing predates the REML score refinement; it has not been remeasured for this change.

See Performance for benchmark methodology, the version-over-version comparison, 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 .npy I/O -- default for kinship and eigen files; --legacy-text for 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-dir saves/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.6+)
  • 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 +<br/>Phenotypes"]
    end

    subgraph CORE["CORE COMPUTATION"]
        KIN["Kinship<br/>(DGEMM, chunked)"]
        EIG["Eigendecomposition<br/>(jlinalg.eigh → DSYEVD/DSYEVR)"]
        KIN --> EIG
    end

    subgraph ASSOC["ASSOCIATION TESTING"]
        MEM{"Memory<br/>budget?"}
        NP["Batch Runner<br/>(genotypes in RAM)"]
        NPS["Streaming Runner<br/>(two-pass disk I/O)"]
        CEXT{"C extension?"}
        C["C Extension<br/>OpenMP + SIMD"]
        PY["Pure Python<br/>fallback"]
        MEM -->|fits| NP
        MEM -->|large| NPS
        NP --> CEXT
        NPS --> CEXT
        CEXT -->|yes| C
        CEXT -->|no| PY
    end

    RES["AssocResult<br/>(.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, pab.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

Start here

  • Getting Started -- Install, first run, common setup problems
  • Why JAMMA? -- Key differentiators from GEMMA
  • User Guide -- Installation, usage examples, CLI reference
  • Configuration -- Every CLI flag, environment variable, and tool setting
  • Glossary -- Terms and abbreviations (ILP64, REML, LOCO, BLAS, etc.)

Internals

GEMMA parity

Contributing and operations

  • Contributing -- Development setup, testing, and PR guidelines
  • Development -- Build commands, code style, local gates
  • Testing -- Tiers, mocking policy, suite map, sanitizer repro
  • Deployment -- Docker image, PyPI publishing, release pipeline
  • Changelog -- Version history

Requirements

  • Python 3.11+
  • NumPy 2.4.6+

License

GPL-3.0 (same as GEMMA).

Release files for jamma 8.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for jamma 8.0.0
File Size Uploaded
jamma-8.0.0.tar.gz 75.6 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for jamma 8.0.0
File
jamma-8.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
jamma-8.0.0-cp314-cp314-macosx_14_0_arm64.whl CPython 3.14 CPython 3.14 macOS 14.0+ ARM64 Details
jamma-8.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
jamma-8.0.0-cp313-cp313-macosx_14_0_arm64.whl CPython 3.13 CPython 3.13 macOS 14.0+ ARM64 Details
jamma-8.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
jamma-8.0.0-cp312-cp312-macosx_14_0_arm64.whl CPython 3.12 CPython 3.12 macOS 14.0+ ARM64 Details
jamma-8.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
jamma-8.0.0-cp311-cp311-macosx_14_0_arm64.whl CPython 3.11 CPython 3.11 macOS 14.0+ ARM64 Details

Total release size: 79.8 MB

Release files / jamma-8.0.0.tar.gz

Download URL jamma-8.0.0.tar.gz
Size 75.6 MB
Tags Source
SHA-256 checksum
How to use checksums
7bbaa656ca41dfa30a2e1d892854453c95e91ff9e28e67d3ef6ab4f903e169eb
BLAKE2b-256 checksum
How to use checksums
f0bb9a33f125c5290a6edb520810b8ec24c98a0e48271c0e1dfb51ac1ae4c22b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL jamma-8.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 600.0 kB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e1d9ce62921b63f2dacb4121ed5b67b4ad2327c9e54bcff431a798249d3912d1
BLAKE2b-256 checksum
How to use checksums
5c093e515171875d52dff8a2401ff5daa65eaac20691e701b438d01d4c0b885b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp314-cp314-macosx_14_0_arm64.whl

Download URL jamma-8.0.0-cp314-cp314-macosx_14_0_arm64.whl
Size 448.8 kB
Tags CPython 3.14 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
e41a2703d2c6547cf71db8ddc8b2a40b83425926412e2363ddfae90ee8ed3462
BLAKE2b-256 checksum
How to use checksums
7d761ff93a0c063ad16e41697288cc25d31587b54d69d18245b50faf0c5b3668
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL jamma-8.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 600.0 kB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
1c0d640fe5de0434d320dbc3cd871666d4c6cdb431d805560c1bdbde7d4d0be0
BLAKE2b-256 checksum
How to use checksums
0ede7fdc6e5af1eae8fd7c138c6e6782eff49f0c380eee834031a3594afa056a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp313-cp313-macosx_14_0_arm64.whl

Download URL jamma-8.0.0-cp313-cp313-macosx_14_0_arm64.whl
Size 448.8 kB
Tags CPython 3.13 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
020c678efb1b0ae75735060c613d5496db3138957c2dde25fdfc71d38c76dd49
BLAKE2b-256 checksum
How to use checksums
2c6020a4b41162f08e34034e5c9b3a44cc3bbebacf5da4f611f85f347a8c8837
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL jamma-8.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 600.0 kB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
80df2f953e787d3252bc9908768dbb8166eac5a9b6d5795ca902bcc489899bc8
BLAKE2b-256 checksum
How to use checksums
ee0670066726f9e45842d930f54c719a3cebf8d31e0fb44587dc61b306e090dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp312-cp312-macosx_14_0_arm64.whl

Download URL jamma-8.0.0-cp312-cp312-macosx_14_0_arm64.whl
Size 448.8 kB
Tags CPython 3.12 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
51f434e05f77d6a85f4def0758d4c75dbf207fdac9ac58969c611ab8c015bfad
BLAKE2b-256 checksum
How to use checksums
a979f51aa70220a70c3dcd547de9ad7949aad1963ca27378194c93d00dca1424
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL jamma-8.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 598.8 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c157d4b3e0f68c089356c4fe0b7e54f67329426a450540ddd95e5dee43223ea0
BLAKE2b-256 checksum
How to use checksums
013c1a15a0b531e38cedfeb5312a3a75627ca2c31ed37969ff63f9987fd0a152
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / jamma-8.0.0-cp311-cp311-macosx_14_0_arm64.whl

Download URL jamma-8.0.0-cp311-cp311-macosx_14_0_arm64.whl
Size 448.8 kB
Tags CPython 3.11 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
5df102a2f5968b215623c1684354bc0c5c29dc10399ce9f54f1ea8e6aa2758ce
BLAKE2b-256 checksum
How to use checksums
6f5656353929a89def5c9d1958cda1c56184b1a088773c12761e9573b6083fe8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release history Release notifications | RSS feed

8.1.0

9 release files

8.0.4

9 release files

8.0.3

9 release files

8.0.2

9 release files

8.0.1

9 release files

This release

8.0.0 This release

9 release files

7.2.0

7 release files

7.1.0

7 release files

7.0.0

7 release files

6.0.0

7 release files

5.6.0

7 release files

5.5.0

7 release files

5.4.5

7 release files

5.4.4

7 release files

5.4.3

7 release files

5.4.2

7 release files

5.4.1

7 release files

5.4.0

7 release files

5.3.2

7 release files

5.3.1

7 release files

5.3.0

7 release files

5.2.1

7 release files

5.1.6

7 release files

5.1.5

7 release files

5.1.4

7 release files

5.1.3

7 release files

5.1.2

7 release files

5.1.1

7 release files

5.1.0

7 release files

5.0.1

7 release files

4.6.3

7 release files

4.6.2

7 release files

4.6.1

7 release files

4.6.0

7 release files

4.5.3

7 release files

4.5.2

7 release files

4.5.1

7 release files

4.5.0

7 release files

4.4.2

7 release files

4.4.1

7 release files

4.4.0

7 release files

4.3.1

7 release files

4.3.0

7 release files

4.2.1

7 release files

4.2.0

7 release files

4.1.0

7 release files

3.5.1

7 release files

3.5.0

7 release files

3.4.1

7 release files

3.4.0

7 release files

3.3.2

7 release files

3.3.1

7 release files

3.3.0

7 release files

3.2.0

7 release files

3.1.0

7 release files

3.0.1

7 release files

3.0.0

7 release files

2.9.6

7 release files

2.9.5

7 release files

2.9.4

7 release files

2.9.3

7 release files

2.9.1

7 release files

2.8.3

2 release files

2.8.2

2 release files

2.8.1

2 release files

2.8.0

2 release files

2.7.1

2 release files

2.7.0

2 release files

2.6.1

2 release files

2.6.0

2 release files

2.5.8

2 release files

2.5.7

2 release files

2.5.6

2 release files

2.5.5

2 release files

2.5.4

2 release files

2.5.3

2 release files

2.5.2

2 release files

2.5.1

2 release files

2.5.0

2 release files

2.4.5

2 release files

2.4.4

2 release files

2.4.3

2 release files

2.4.2

2 release files

2.4.1

2 release files

2.4.0

2 release files

2.3.0

2 release files

2.2.0

2 release files

2.1.0

2 release files

2.0.1

2 release files

2.0.0

2 release files

1.5.1

2 release files

1.5.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page