PRIMAT: precise Big Bang Nucleosynthesis computations, with a fast C backend and a pure-Python fallback
Project description
primat
A precise Big Bang Nucleosynthesis (BBN) solver. It integrates coupled ODEs for the cosmological background (photon/neutrino temperatures, scale factor) and a nuclear reaction network to predict primordial abundances of H, D, He3, He4, Li7, and heavier nuclides.
Installation
For most users:
pip install primat
That's it. The package includes a fast C backend compiled for your platform, with a pure-Python fallback if no compiled binary is available — both give identical results, just different speed. To get started, just type
primat --help
For development, examples, and notebooks:
Clone the repository and install in editable mode:
git clone https://github.com/CyrilPitrou/primat
cd primat
pip install -e .
With optional dependencies for best performance:
pip install -e ".[recommended]"
| Package | Role |
|---|---|
numpy, scipy |
Mandatory (installed by pip install primat) — everything needed for a single run_bbn/solve |
numba (recommended) |
JIT compilation gives ~5× speedup on rate kernels |
vegas (recommended) |
Monte Carlo integration for thermal weak-rate corrections |
joblib (recommended, mc) |
Parallel Monte-Carlo (run_mc(..., n_jobs != 1)); a core install can still run MC serially with n_jobs=1 or on the C backend |
joblib and plotly are no longer mandatory — they moved into extras so a
lean pip install primat core (numpy + scipy) is enough to install and solve.
Pick an extra by use case:
| Extra | pip install "primat[…]" |
Adds |
|---|---|---|
recommended |
numba, vegas, joblib |
fast kernels + thermal-rate integrator + parallel MC |
mc |
joblib |
parallel Monte-Carlo only |
plots |
plotly |
interactive plotting (used by the GUI figures) |
gui |
streamlit, pandas, plotly |
the primat-gui web app |
notebooks |
matplotlib, pandas, papermill, ipykernel |
the example notebooks |
all |
all of the above | everything in one shot |
For the graphical interface (primat-gui), install the gui extra:
pip install "primat[gui]"
| Package | Role |
|---|---|
streamlit |
Required for primat-gui — the web app framework |
pandas |
Required for primat-gui — final-abundance table |
plotly |
Required for primat-gui — the abundance-evolution figures |
For the example notebooks, install from source:
pip install -e ".[notebooks]"
| Package | Role |
|---|---|
matplotlib, pandas |
Plotting and tabular display in the notebooks |
Full documentation: primat.readthedocs.io — tutorials, how-to guides, the API reference, and the CLI reference.
Quick start
from primat.backend import run_bbn
result = run_bbn({"Omegabh2": 0.02242})
print(f"YP (BBN) = {result['YPBBN']:.8f}") # 0.24699911
print(f"D/H = {result['DoH']:.7e}") # 2.4350167e-05
run_bbn() is the main entry point and automatically selects the best available
backend (fast C engine by default, pure-Python fallback if needed). Pass an optional
parameter dict to override defaults; all keys are optional and drawn from
primat/config.py's DEFAULT_PARAMS.
Using primat
There are four ways to use primat, all of which produce identical results:
1. Python API (recommended)
from primat.backend import run_bbn
# Automatically selects C backend if available, falls back to pure-Python
result = run_bbn({"Omegabh2": 0.02242, "network": "large"})
To force a specific backend:
result = run_bbn({"network": "small"}, force_backend="c") # C only
result = run_bbn({"network": "small"}, force_backend="python") # Python only
2. Command-line interface
primat --Omegabh2 0.02242 --network large --amax 8
Output:
Neff = 3.04397730
YP (BBN) = 0.24699808
YP (CMB) = 0.24567178
D/H = 2.4365389e-05
He3/H = 1.0397042e-05
He3/He4 = 1.2677615e-04
Li7/H = 5.501865e-10
Li6/Li7 = 1.418945e-05
--- running time: 3.67 seconds ---
| Flag | Description |
|---|---|
--Omegabh2 VALUE |
Baryon density Ω_b h² (default: 0.02242) |
--DeltaNeff VALUE |
Extra relativistic degrees of freedom (default: 0) |
--network {small,small_parthenope,large} |
Nuclear reaction network (default: small) |
--amax A |
Drop reactions involving any nuclide with mass number > A; applies to any network |
--numerical_precision RTOL |
solve_ivp relative tolerance (default: 1e-7) |
--backend {auto,c,python} |
Force a backend (default: auto) |
--json |
Print full results dict as JSON instead of summary |
--verbose |
Enable progress messages (timings, cache hits, ...) |
--set KEY=VALUE |
Set any configuration parameter (e.g., --set tau_n=880.1); use primat --help for the full list |
Run primat --help to see all available command-line options. For parameters not exposed as flags, use --set or the Python API.
3. Graphical interface (GUI)
After installing the gui extra:
primat-gui
The browser-based app offers a parameter form, interactive abundance-evolution
plot, and final-abundances panel. It supports custom networks, time-evolution
output, and can use either the C or Python backend (automatically selected
like the CLI, or pinned for the whole session with primat-gui --backend {auto,c,python}, e.g. primat-gui --backend python to exercise the
pure-Python backend).
4. Example scripts (development/source-only)
Clone the repo and run from the root:
python runfiles/primat_run.py # Standard SM run
python runfiles/primat_compare.py # Network comparison
python runfiles/primat_reference_run.py # High-precision run (~2 min)
python runfiles/primat_mc.py # MC uncertainty + covariance/correlation demo
Backend selection
run_bbn() automatically picks the best available backend:
- Default (
force_backend=Noneor"auto"): C engine if available (pre-compiled in wheels), pure-Python fallback otherwise - Force C (
force_backend="c"): Raises if C backend is unavailable - Force Python (
force_backend="python"): Useful for development or when using Python-only features
Python-only features (that force fallback to pure-Python even with
force_backend="auto"; raise instead if force_backend="c"):
background=argument (a customBackgroundobject — an inherently-Python extension point, so it has no C-side equivalent)- MC
prev(incremental sample reuse acrossrun_mc()calls)
Note that custom_network, output_time_evolution=True, extra_rho, and
decay_era are not in this list — all four are supported on the C
backend too. (extra_rho is handed to C as a table sampled from the
callables; decay_era's only output, the output_decay_evolution TSV, is
written identically by both backends.)
Using primat-c directly
For users who prefer to work directly with the C code, the primat-c/ directory
contains a standalone C99 implementation that can be compiled independently.
See primat-c/README.md for detailed compilation instructions and usage
information for various platforms.
Key parameters
Physics parameters
| Parameter | Default | Description |
|---|---|---|
Omegabh2 |
0.02242 | Baryon density Ω_b h² |
DeltaNeff |
0.0 | Extra relativistic degrees of freedom |
tau_n |
878.4 | Neutron lifetime [s] |
network |
"small" |
"small" (12 reactions) / "small_parthenope" (12, Parthenope 3.0 tables) / "large" (~429), optionally restricted via amax. |
amax |
None | Maximum mass number A for nuclides in reactions (filters any network) |
radiative_corrections |
True | Coulomb + T=0 resummed radiative corrections to n↔p (CCR) |
finite_mass_corrections |
True | Fokker-Planck finite-nucleon-mass correction (FM) |
thermal_corrections |
True | Finite-temperature radiative corrections to n↔p (CCRTh) |
spectral_distortions |
True | Correct n↔p rates for non-FD neutrino distributions (SD) |
tau_n_normalization |
True | Normalise weak rates using τ_n (neutron lifetime) |
Precision parameters
| Parameter | Default | Description |
|---|---|---|
numerical_precision |
1e-7 | solve_ivp relative tolerance (rtol) for all ODE integration |
sampling_temperature_per_decade |
400 | Background grid points per decade of T |
sampling_nTOp_per_decade |
80 | n↔p rate grid points per decade of T |
rate_grid_npts |
1000 | Points in the master T9 grid used for rate-table resampling |
rate_grid_T9_min |
1e-3 | Minimum T9 [GK] of the master rate grid |
rate_grid_T9_max |
10.0 | Maximum T9 [GK] of the master rate grid |
Caching parameters
| Parameter | Default | Description |
|---|---|---|
cache_dir |
None | Writable directory for all regenerable caches (n↔p weak-rate + plasma tables). None = <data_dir>/cache_plasma_weak/; set it on a read-only install (see below) |
weak_rate_cache |
True | If False, never load n↔p rates from the cache (always recompute) |
save_nTOp |
True | Save recomputed n↔p rates to cache_plasma_weak/weak/ (or the cache_dir redirect) with a fingerprint header |
save_nTOp_thermal |
True | Save recomputed thermal corrections to cache_plasma_weak/weak/ (or the cache_dir redirect) with a fingerprint header |
Output parameters
| Parameter | Default | Description |
|---|---|---|
output_time_evolution |
False | Generate time-evolution data (accessible via result["evolution"]) |
output_file |
results/output_tables.tsv |
Output file path for time evolution (relative to current directory) |
output_n_points |
500 | Number of interpolated rows in output file |
output_rates_time_evolution |
False | Append per-reaction <reaction>_frwrd rate columns to the time-evolution output (one per reaction in the active LT network) |
n↔p weak rate workflow
The n↔p weak rates are the most expensive part of initialisation (~1.8 s). The
non-thermal rate (Born+FM+CCR+SD) is cached in
data/cache_plasma_weak/weak/nTOp_<hash>.txt (forward and backward columns
together); the finite-temperature radiative correction (CCRTh) is cached
separately in data/cache_plasma_weak/weak/nTOp_thermal_<hash>.txt. This
cache_plasma_weak/ folder also holds the plasma electron-thermo/QED caches
under plasma/; both trees live together to make clear they are regenerable
caches, not primary shipped data.
Each file is tagged with a fingerprint header: a hash of every config field
that affects its numeric content (background thermodynamics,
sampling_nTOp_per_decade/sampling_nTOp_thermal_per_decade,
radiative_corrections, finite_mass_corrections, thermal_corrections, etc.
— see primat.weak_rates). At every run:
- If
weak_rate_cache=True(default) and a cache file's fingerprint matches the current configuration, the corresponding rates are loaded directly — initialisation is effectively instantaneous. - Otherwise (fingerprint mismatch, missing file, or
weak_rate_cache=False), the rates are recomputed from scratch by numerical integration (~1.8 s). save_nTOpandsave_nTOp_thermal(both defaultTrue) write the (re)computed rates back tocache_plasma_weak/weak/with a fresh fingerprint header, so future runs with the same configuration load the cache. The hash is part of the filename, so different configurations coexist without overwriting each other — set either flag toFalseonly to avoid littering the cache during throwaway experiments.
Recomputing the thermal correction (thermal_corrections=True) requires a
vegas Monte Carlo integration that can take a few minutes; the
fingerprint mechanism above is what makes this avoidable across runs that
share the same configuration.
Read-only installs (cache_dir). On a system-wide install the package
tree under site-packages/primat/data/ may not be writable, so a run whose
fingerprint misses the shipped caches cannot persist the freshly computed
rates. Set cache_dir=<a writable directory> to redirect all regenerable
caches there: cache files are then written to <cache_dir>/{weak,plasma}/
(created on demand) and read from there first, falling back to the shipped
caches in the package (an overlay — the shipped caches are never shadowed, so
there is no recompute penalty for the configurations that ship pre-cached). A
cache-write failure is never fatal in any case: the run completes with the
correct in-memory values and prints a warning pointing at cache_dir.
Typical workflow for a high-precision study:
from primat.backend import run_bbn
# Step 1 – compute and save high-precision rates once (non-default
# sampling_nTOp_per_decade gives a fingerprint that the shipped cache won't
# match, so this recomputes; save_nTOp=True is the default)
result1 = run_bbn({"save_nTOp": True, "sampling_nTOp_per_decade": 160})
# Step 2 – all subsequent runs with the same sampling_nTOp_per_decade reuse the saved tables
result2 = run_bbn({"sampling_nTOp_per_decade": 160})
Custom NEVO tables
The neutrino-decoupling history is read from data/NEVO/. Three optional
parameters point at alternative tables instead (filenames resolved relative
to data/NEVO/, or absolute paths): nevo_file (6/7-column thermo table),
nevo_spectral_file (spectral-distortion table, used only when
spectral_distortions=True and analytic_distortions=False), and
nevo_grid_file (its y-grid, length must match nevo_spectral_file's
spectral-column count). Each defaults to None (the shipped table selected by
QED_corrections); a custom file is validated for existence and shape at
construction time, and is included in the n↔p weak-rate cache fingerprint so
a different table correctly triggers a recompute.
For the moment nevo_grid_file is assumed to be a Gauss-Laguerre quadrature.
The format for handling NEVO results to primat will evolve in future releases.
Data directory override and nuclear overlay
user_nuclear_dir points at a directory with the same networks/
and/or tables/<name>/ layout as the shipped data/nuclear/ folder; any
network file or per-reaction table found there is used instead of the
shipped one, while everything not overridden still falls back to the
shipped default (an additive overlay, not a takeover). data_dir instead
fully replaces the entire primat/data/ tree (NEVO/, cache_plasma_weak/,
nuclear/, csv/), so all data files are read from the supplied directory.
Both default to None and are validated as existing directories at
construction time.
Nuclear rate variation and sensitivity analysis
primat provides two distinct mechanisms for varying nuclear reaction rates:
1. Log-normal rate variations: p_<reaction> parameters
Each nuclear reaction has a corresponding parameter p_<name> (e.g., p_n_p__d_g for the n + p → d + γ reaction). This varies the rate as:
Rate = median × exp(p × σ)
where σ is the rate's log-normal uncertainty width (from the rate table's error column).
- Primary use case: Monte Carlo uncertainty propagation. Use
run_mc()ormc_uncertainty()to automatically sample p_* from N(0,1) for each reaction. - Manual use: You can also set
p_<name>directly to explore fixed variations. For example,p_n_p__d_g = 1increases the rate by roughly +1σ, whilep_n_p__d_g = -2decreases it by roughly -2σ.
For systematic MC runs, use backend.run_mc():
from primat.backend import run_mc
# Run MC with nuclear rate uncertainties (signature: run_mc(num_mc, quantities=None, params=None, ...))
mc_result = run_mc(
100, # number of MC samples
["DoH", "YPBBN"], # quantities to compute statistics for
params={"Omegabh2": 0.02242},
)
print(f"D/H mean: {mc_result['DoH'].mean:.8e} ± {mc_result['DoH'].std:.8e}")
p_<reaction> parameters can be set via the CLI using --set:
primat --set p_n_p__d_g=1 # Fixed variation: increase n+p->d+gamma rate by ~1σ
2. Additive rate rescaling: rescale_nuclear_rates + delta_<reaction>
For deterministic sensitivity studies, enable rescale_nuclear_rates=True. This activates additive variation parameters delta_<name>. When p_<name>=0 (the default), the rate becomes:
Rate = median × (1 + delta_)
This allows uniform or per-reaction rescaling. When both rescale_nuclear_rates=True AND p_<name>≠0, the combined formula is:
Rate = median × (exp(p × σ) + delta_)
Example:
from primat.backend import run_bbn
# Sensitivity study: vary n+p->d+gamma rate by +10%
result = run_bbn({
"rescale_nuclear_rates": True,
"delta_n_p__d_g": 0.1
})
Important: The p_<reaction> mechanism is designed for MC uncertainty propagation (log-normal variations), while rescale_nuclear_rates + delta_<reaction> is designed for deterministic sensitivity studies (additive variations). They can be used together but interpret the combined effect carefully.
3. Computing the uncertainty: run_mc() and --mc N
run_mc() (or its pure-Python counterpart primat.main.mc_uncertainty())
computes the propagated nuclear-rate/τ_n uncertainty on any observable: it
runs many independent BBN solves, each with randomly-sampled reaction rates
(and neutron lifetime), and reports the spread of results as the
uncertainty.
from primat.backend import run_mc
mc = run_mc(100, ["YPBBN", "DoH"], params={"Omegabh2": 0.02242})
mc["DoH"].central # nominal (best-estimate) value
mc["DoH"].mean # mean over the 100 MC samples
mc["DoH"].std # MC uncertainty (1-sigma, sample std/ddof=1) -- "the error"
mc["DoH"].values # full array of per-sample values, length 100
Regardless of which quantities you ask for, the result also always
includes every standard observable (Neff, YPBBN, YPCMB, DoH,
He3oH, He3oHe4, Li7oH, Li6oLi7, YCNO) and every tracked nuclide's
final abundance, at no extra cost.
Joint uncertainty (covariance and correlation). When you constrain
cosmology with several abundances at once (typically YPBBN and DoH),
you need how they co-vary across the same MC samples, not just their
individual σ's. MCResult exposes both matrices (sample estimators,
ddof=1, so diag(cov) == std**2):
mc.cov() # full (n_q, n_q) covariance matrix, quantity_names() order
mc.corr() # full correlation matrix (unit diagonal)
mc.cov("YPBBN", "DoH") # scalar covariance between two named quantities
mc.corr("YPBBN", "DoH") # scalar correlation, e.g. ~ -0.5 (YP and D/H anti-correlate)
A quantity identical in every sample (zero variance) gives NaN off-diagonal
correlations (never a warning storm).
From the command line, just add --mc N; the summary then prints the 4×4
correlation and covariance matrices of the four main products
(YPBBN, DoH, He3oHe4, Li7oH):
primat --Omegabh2 0.02242 --mc 100
# YP (BBN) = 0.24700028 +/- 0.00003123
# D/H = 2.4350000e-05 +/- 1.2000000e-07
# ...
# Correlation matrix (YPBBN, DoH, He3oHe4, Li7oH):
# YPBBN DoH He3oHe4 Li7oH
# YPBBN 1.000 0.057 -0.238 -0.161
# DoH 0.057 1.000 -0.811 -0.377
# He3oHe4 -0.238 -0.811 1.000 0.226
# Li7oH -0.161 -0.377 0.226 1.000
# Covariance matrix (YPBBN, DoH, He3oHe4, Li7oH):
# ...
--mc-seed sets the random seed (use the same seed to reproduce a run) and
--mc-jobs the number of parallel workers. The three MC output files share
one filename stem --output_mc_file_prefix PREFIX (default results/output_mc),
each gated by its own flag:
--output_mc_samples→PREFIX_samples.tsv(every raw per-sample value, one column per quantity)--output_mc_covariance→PREFIX_covariance.tsv(the covariance matrix)--output_mc_correlation→PREFIX_correlation.tsv(the correlation matrix)
All three, and both printed matrices, are identical (same shape, same header
wording) whether the C or the pure-Python backend runs. Programmatically the
writers are primat.backend.dump_mc_samples / dump_mc_covariance /
dump_mc_correlation.
Output
run_bbn() returns a dict with the following keys:
| Key | Description |
|---|---|
YPBBN |
Helium-4 mass fraction (BBN convention) |
YPCMB |
Helium-4 mass fraction (CMB convention) |
DoH |
D/H |
He3oH |
(He3+H3)/H |
He3oHe4 |
(He3+H3)/He4 |
Li7oH |
(Li7+Be7)/H |
Neff |
Effective number of neutrino species |
Omeganurel |
Ω_ν h² × 10⁶ (relativistic) |
OneOverOmeganunr |
1 / (Ω_ν h² × 10⁻⁶) (non-relativistic) |
Y_final |
dict of final mass-fraction abundances, one entry per tracked nuclide (e.g. Y_final["He4"]) |
With output_time_evolution=True the dict also carries an "evolution" key
(primat.evolution.EvolutionResult).
When a Monte Carlo run is requested (--mc N on the CLI, or
run_mc()/mc_uncertainty() via to_flat_dict()), every observable above
also gets a matching sigma_<key> entry with its 1-sigma MC uncertainty,
e.g. sigma_DoH alongside DoH, sigma_YPBBN alongside YPBBN.
When output_time_evolution=True, the time evolution data is made available. If output_file is set to a path, a TSV file is written in the unified time-evolution schema, with columns:
t_s (cosmic time [s]), a (scale factor), T_gamma_MeV, T_nue_MeV,
T_numu_MeV, T_nutau_MeV (photon and per-flavour neutrino temperatures
[MeV]), then one Y_<nuclide> mass-fraction column per tracked nuclide of
the chosen network (8 for small/small_parthenope, ~59 for large, fewer with
an amax cutoff). Both backends write the identical schema, loadable with
primat.evolution.load_evolution(). The n↔p weak rates are not duplicated
on disk — evaluate run.background.weak_nTOp_frwrd/bkwrd at the
T_gamma_MeV column if needed.
output_file defaults to results/output_tables.tsv (relative to the current
directory); set it to None to skip the disk write entirely -- the time
evolution data is still accessible via the "evolution" key in the result
dictionary returned by run_bbn() either way. The primat.evolution and
primat.plotting modules provide tools for working with and plotting this
time evolution data (see the example notebooks for usage).
With output_rates_time_evolution=True, an optional block of per-reaction
forward-rate columns is appended after the Y_<nuclide> block: one
<reaction>_frwrd column (canonical rate syntax, e.g. n_p__d_g_frwrd) per
reaction in the active LT network, holding the forward reaction-rate
interpolant at each row's photon temperature. The number of columns follows
the chosen network/amax (~12 for small/small_parthenope, 68 for
large+amax=8, ~429 for full large). Both backends emit the identical
columns, in memory as run["evolution"].rates (a dict keyed by column name,
None when the flag is off) and on disk in the same order, so
primat.evolution.load_evolution() round-trips them.
Architecture
primat/ Core Python package
backend.py Main entry point: run_bbn() dispatch (C vs pure-Python)
config.py PRIMATConfig: all physical constants + run-time flags
main.py PRIMAT class: low-level Python implementation
background.py Cosmological background (a<->t<->T, weak rates, Neff)
nuclear_network.py Nuclear network ODE integration (HT/MT/LT eras)
plasma.py Plasma thermodynamics (QED corrections, neutrino bath)
qed_pressure.py Analytical QED plasma-pressure corrections
network_data.py Nuclear network definition and loading
network_builder.py Generic stoichiometry-driven ODE builders (numba kernels)
weak_rates/ n <-> p weak rate computation (integrands, corrections, cache)
neutrino_history.py NEVO non-instantaneous decoupling table I/O
evolution.py Unified time-evolution TSV schema
cli.py `primat` command-line entry point
gui/ `primat-gui` Streamlit app (optional `gui` extra)
data/ Shipped default data tree
_primat_c/ Compiled C extension bridge (wraps primat-c)
primat/data/
nuclear/ Nuclear reaction data
tables/ Per-reaction rate tables (one folder per reaction)
networks/ Network list files (small.txt, large.txt, custom.txt, etc.)
csv/ Reaction catalog (nuclides.csv, detailed_balance.csv, reactions_large.csv)
NEVO/ Neutrino-decoupling history tables
cache_plasma_weak/ Regenerable caches (redirect via cache_dir on read-only installs)
plasma/ Pre-computed QED pressure + electron-thermo tables
weak/ Cached n<->p forward/backward rates
primat-c/ Standalone C99 port (independent build via `make`)
Also compiled as extension for the Python backend.
See primat-c/README.md for details.
generate_rates/ Offline rate-table generator (one-time use)
Converts AC2024 compilation to primat format
Backend dispatch
run_bbn() (primat/backend.py) is the single entry point:
- C backend (default): Precompiled in wheels, ~25× faster, deterministic numerical differences (~1e-8 relative) vs. Python that are budgeted separately
- Python backend (fallback or explicit): Pure Python, all features, no compilation needed, slightly slower, useful for development
All three interfaces (Python API, CLI, GUI) ultimately call run_bbn()
or the pure-Python fallback.
Networks
Two named networks (plus a Parthenope-rates variant of the small one) are
available via the network flag; amax (any positive integer) further
restricts any of them to reactions whose nuclides all have mass number
A ≤ amax:
network |
Reactions | Nuclides | Notes |
|---|---|---|---|
"small" |
12 | 8 | the key reactions; fastest |
"small_parthenope" |
12 | 8 | same reactions, Parthenope 3.0 rate tables (comparison runs) |
"large" |
~429 | ~59 | from the AC2024 compilation; LT era only |
"large", amax=8 |
68 | 12 | the old "medium" network's exact equivalent |
"large", amax=2 |
3 | 3 | the old "deuterium" network's equivalent (n↔p + n_p__d_g + p_p_n__d_p) |
All networks share the HT (n↔p) and MT eras (the MT era always uses a fixed
18-reaction subset, too stiff to run the full network); only the LT reaction
set is filtered by network/amax. The light-element abundances of the full
large network match the amax=8 restriction to ≲1e-4; its heavy-nuclide tail
(B, C, N, O, …) is approximate. See notebooks/AbundanceEvolution.ipynb for
evolution plots.
Custom networks (GUI)
The primat-gui sidebar's "Nuclear reactions" group offers "Create
custom network" (a popup to start from any named network, toggle reactions
in/out by mass-number category, and substitute or upload alternate rate
tables) and "Import custom network" (re-load a previously saved
.zip).
Cobaya / MCMC interface
A Cobaya wrapper for primat is available in the separate
primat_tools repository, for use
with Cobaya, allowing BBN to be embedded directly
in MCMC analyses of CMB or other cosmological data. The wrapper exposes
Omegabh2, DeltaNeff, and the nuclear-rate uncertainty parameters as Cobaya
theory/likelihood inputs and returns the standard BBN observables (YPBBN, DoH,
etc.) for use in a likelihood.
Citation
If you use primat please cite:
Pitrou, Coc, Uzan, Vangioni, Physics Reports 754 (2018) 1–67.
doi:10.1016/j.physrep.2018.04.005
Authors
Cyril Pitrou (pitrou@iap.fr), Julien Froustey
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 primat-0.3.2.tar.gz.
File metadata
- Download URL: primat-0.3.2.tar.gz
- Upload date:
- Size: 6.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71e8518d94ca15ad9133ce77fac590483b1e26250a84cf9a0b87a9409bb14311
|
|
| MD5 |
cd05f213b55ce2cb9fd2b6b5f19368b1
|
|
| BLAKE2b-256 |
06f01c14d7411695eaa5b217d0fdf9a13b6bac6f9dea38f4e3f833fa9f40d263
|
Provenance
The following attestation bundles were made for primat-0.3.2.tar.gz:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2.tar.gz -
Subject digest:
71e8518d94ca15ad9133ce77fac590483b1e26250a84cf9a0b87a9409bb14311 - Sigstore transparency entry: 2168903744
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: primat-0.3.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eacd9d0f6ce37dc5ee55ffa26bf1d90c502db51efa03baf557b92c0058ac6db
|
|
| MD5 |
e246fe08022f808c90902adc5834242b
|
|
| BLAKE2b-256 |
0a702662515fbefe007218262176cbb9f0a9c80e4f7a7782315bfb8721b6809a
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp313-cp313-win_amd64.whl -
Subject digest:
5eacd9d0f6ce37dc5ee55ffa26bf1d90c502db51efa03baf557b92c0058ac6db - Sigstore transparency entry: 2168903989
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e77e3a01578336f03e0ec6d33f2342afeb8552c7fba08d3fef96a358b9bb7e88
|
|
| MD5 |
b4a0d3dd26eb3df0e083f90118fe3d44
|
|
| BLAKE2b-256 |
59f2f1d1f7591aca3ce01f0cf850e025236d790b644b8ffc30f650ccc78fef13
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
e77e3a01578336f03e0ec6d33f2342afeb8552c7fba08d3fef96a358b9bb7e88 - Sigstore transparency entry: 2168904056
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: primat-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8d8d680c57f95bb1e17afd9288694e7b8f6bd77cc759bb2c16563fc016c78f4
|
|
| MD5 |
88ade32c862b8a746b39b6ca993c42e9
|
|
| BLAKE2b-256 |
7a416dff32bde800f02df5dfb5de2d780218781acc6af0b1601175e57f2fadc1
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f8d8d680c57f95bb1e17afd9288694e7b8f6bd77cc759bb2c16563fc016c78f4 - Sigstore transparency entry: 2168903918
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: primat-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab6ffba3415ebe58cab9452375bd5380581b8b9d3852211bce9b2de7f7838632
|
|
| MD5 |
324c0c25ceb64fe93032b56d445bfb36
|
|
| BLAKE2b-256 |
dcd7fdef14ca3aa290a90a11a32df8c6c29e0e38614691d01ef17f1b221df575
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
ab6ffba3415ebe58cab9452375bd5380581b8b9d3852211bce9b2de7f7838632 - Sigstore transparency entry: 2168903959
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87a8f7e370e1985d6d38cf8c75885596bc7cf4d263f5735646427a38fe21a688
|
|
| MD5 |
a16b5c4179141032633ad87aa88cd586
|
|
| BLAKE2b-256 |
a68b2e217915d40bbfc1c216e2d52f9490e9ddc6ed25034d1e346840ea9029a6
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
87a8f7e370e1985d6d38cf8c75885596bc7cf4d263f5735646427a38fe21a688 - Sigstore transparency entry: 2168903751
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: primat-0.3.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36d8a3e77862fcb8687efb0a5966eda1d2e224cb38788dc64a34ab2df0326bdd
|
|
| MD5 |
c227ea449c00d3a0b1929240419ec32c
|
|
| BLAKE2b-256 |
daad7f3548b436561b3076ec67439b51bf1f6e5eefb509819307d8333f6d9f6d
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp312-cp312-win_amd64.whl -
Subject digest:
36d8a3e77862fcb8687efb0a5966eda1d2e224cb38788dc64a34ab2df0326bdd - Sigstore transparency entry: 2168904081
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83881cca6de59eb51594525d9b2cf10df812caccd51db3cce5096fe784f03304
|
|
| MD5 |
61126df42369cc18b10b50e8152f35bc
|
|
| BLAKE2b-256 |
903100be7e3915582661d606735bebcfce05a022737c26ecae41b05f8b53769c
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
83881cca6de59eb51594525d9b2cf10df812caccd51db3cce5096fe784f03304 - Sigstore transparency entry: 2168904034
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: primat-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d54423d0d324ee5c22306b2510e637cb578e660ac2b4c56895888f51f1b69de
|
|
| MD5 |
771121bf1161e61ff5cce3b2e06d8c32
|
|
| BLAKE2b-256 |
482466d2965d6f58470dc3b37d72597f9edd76cfa682cd84c893a0a8d586404e
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
2d54423d0d324ee5c22306b2510e637cb578e660ac2b4c56895888f51f1b69de - Sigstore transparency entry: 2168903782
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: primat-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71f6cac3c2f6d90820546bd78156c0a91fbaed2ded8f895535a9d935890ebf93
|
|
| MD5 |
aa1ddae03786d10c56da2542deac6f6a
|
|
| BLAKE2b-256 |
ea11d01fee56460dc3c294837846a242a7575ba39d63e5f03332c0553b8567d7
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
71f6cac3c2f6d90820546bd78156c0a91fbaed2ded8f895535a9d935890ebf93 - Sigstore transparency entry: 2168903948
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94ca83dcfd4378810278d4367f152b59d6cae4c86f0a769cc531d8e11d146214
|
|
| MD5 |
eedc630674c3873631d06380309eb307
|
|
| BLAKE2b-256 |
469f2128247a02e73bf2b4dd9033551eb6c4c5a443c25605990c4f2c9faaf524
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
94ca83dcfd4378810278d4367f152b59d6cae4c86f0a769cc531d8e11d146214 - Sigstore transparency entry: 2168903818
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: primat-0.3.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1549bed0691398b35cf9b8d77db3dd743fb63b5bf03abb3aaebd2bd4d5fd3675
|
|
| MD5 |
122bb185afbb4d22ed82f7611524633c
|
|
| BLAKE2b-256 |
b0ace280885abc9c53376a723b77ccce2e5789018048fa2389ea8e35e1b1e8e1
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp311-cp311-win_amd64.whl -
Subject digest:
1549bed0691398b35cf9b8d77db3dd743fb63b5bf03abb3aaebd2bd4d5fd3675 - Sigstore transparency entry: 2168903885
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
284879de58207e581c9a37f11c5b85df65d8362136831ad7d67b081239ea2710
|
|
| MD5 |
be37e6fa7b86ccedcdc942632d9a8833
|
|
| BLAKE2b-256 |
eb299050cf5499b374b05ede6c7c6a7f5aff38cf723c734988a6cd6dd4218b2d
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
284879de58207e581c9a37f11c5b85df65d8362136831ad7d67b081239ea2710 - Sigstore transparency entry: 2168903840
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: primat-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a13647aa004f5126f00b834a6e996e786db8092efbc996c31f93c45f2a8cd1b
|
|
| MD5 |
38aa45a184188f6ef1c26e433d3f0a68
|
|
| BLAKE2b-256 |
cf4641da3f74ffc741bb009d07c454d7bb00f26ab666cf20a9b987b06279e5e0
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5a13647aa004f5126f00b834a6e996e786db8092efbc996c31f93c45f2a8cd1b - Sigstore transparency entry: 2168904075
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: primat-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
542dbff99d90a8bfe82619b25315f85f082c1e2669db289b4a3c44ffb57a6c12
|
|
| MD5 |
929f8b7e92bdd3c31d73ea52fcb6b269
|
|
| BLAKE2b-256 |
dc57b6d970d90af42e81a91d3b00a041868949aaad3846127113947bcf45f992
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
542dbff99d90a8bfe82619b25315f85f082c1e2669db289b4a3c44ffb57a6c12 - Sigstore transparency entry: 2168903900
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97a0687eadc8373939d7e43c8a31cd5932dc369df0e63a4ce4dd4ec4f444fe55
|
|
| MD5 |
ac56701fce3f0b98f5294cc278688bd1
|
|
| BLAKE2b-256 |
d86445fcd4731795bdfde6aa99238a565f247d1b48d967680027bc92e2ecd6b0
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
97a0687eadc8373939d7e43c8a31cd5932dc369df0e63a4ce4dd4ec4f444fe55 - Sigstore transparency entry: 2168903760
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: primat-0.3.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9681062162dbd5071ff4ba5f5e0198ac2e170648f91ac0f638a4aa4bf8689f2
|
|
| MD5 |
cc08b3f02755febd81170242fd614b16
|
|
| BLAKE2b-256 |
21e67ca42cd19ddc171ef130fd3b6c578154742ea515b76f78a0966ca4e8c28a
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp310-cp310-win_amd64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp310-cp310-win_amd64.whl -
Subject digest:
b9681062162dbd5071ff4ba5f5e0198ac2e170648f91ac0f638a4aa4bf8689f2 - Sigstore transparency entry: 2168903792
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21a9b8e66832b6c9f865cc17367ad06d5446647a2845f7179382b30b14c03bf1
|
|
| MD5 |
472e8ec10228d82e38204c361d355dee
|
|
| BLAKE2b-256 |
7251fbdc905ca6dc5d4a60d88d2ffcc22415bf1c4f4491b37ce9bc2fd96275fe
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
21a9b8e66832b6c9f865cc17367ad06d5446647a2845f7179382b30b14c03bf1 - Sigstore transparency entry: 2168903866
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: primat-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d304fbb37314a9e42b4deaada0f9ed38fc69c3491af9a1a07fab02e7f5d39d0b
|
|
| MD5 |
b3568f0220eb7b3b6cc1de2e916ec3aa
|
|
| BLAKE2b-256 |
069194a5fe7f7a266c851feb02f5c6c9fa5b92135a60340b0a4d00c0aeea8b0a
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d304fbb37314a9e42b4deaada0f9ed38fc69c3491af9a1a07fab02e7f5d39d0b - Sigstore transparency entry: 2168903974
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: primat-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cbb7ac0e24303f33d4490c8e53e4929f9fe1c6fd9c6cf8be8fd6bc88ee153ae
|
|
| MD5 |
c73e3bef091691a79af4e7cbe1256907
|
|
| BLAKE2b-256 |
1d6dd30fdba0139d6fa5f3bf74572a74e32933f5a72c719fa6e58d0b0251b4a3
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
8cbb7ac0e24303f33d4490c8e53e4929f9fe1c6fd9c6cf8be8fd6bc88ee153ae - Sigstore transparency entry: 2168903933
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type:
File details
Details for the file primat-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: primat-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fdf4808353fbaa731e08824cfccb44b2d320fe825b651f69919a4ad5fb6daf5
|
|
| MD5 |
c786deec275ff162a9d26b45156c765a
|
|
| BLAKE2b-256 |
720424f5c9c288e469d190c89ba36b44632ed9bbc49a6d495d702c849420298a
|
Provenance
The following attestation bundles were made for primat-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
wheels.yml on CyrilPitrou/primat
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
primat-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
5fdf4808353fbaa731e08824cfccb44b2d320fe825b651f69919a4ad5fb6daf5 - Sigstore transparency entry: 2168904008
- Sigstore integration time:
-
Permalink:
CyrilPitrou/primat@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Branch / Tag:
refs/tags/v0.3.2 - Owner: https://github.com/CyrilPitrou
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@21ff8f39fa18e3937e9fdf386cfa982361bfdfce -
Trigger Event:
release
-
Statement type: