edi_kernels
Python bindings for EDI's C++ model-fitting kernels, via pybind11. The point of this package is speed: the same C++ solvers used by the R package, called directly from Python with no R/Rcpp dependency, running one to three orders of magnitude faster than the pure-Python canonical fit for the same model.
This package has no R or Rcpp dependency. It compiles the same
R/EDI/src/*.cpp model-fitting kernels the R package
EDI
(not yet on CRAN) uses, built under an EDI_CORE_ONLY preprocessor guard
that swaps out RcppEigen/Rmath for a vanilla Eigen + LBFGSpp, both
fetched directly from their own upstream repositories (see
CMakeLists.txt). Nothing under python/ is a copy of a R/EDI/src/*.cpp
or *.h file — the compiled extension #includes them directly from the
R package's own source tree.
See ../R/package_metadata/new_feature_plans/python_bindings_package_spec.md
for the full design spec, kernel-by-kernel scope, and baseline-benchmarking
methodology.
Speed gains
Point-estimate timings (median of 30 cold runs) for every bound kernel that
has a canonical Python baseline to compare against, sorted by speedup,
descending. Timing Pval for every row here is significant at
p < 0.001 (Welch's t-test, EDI vs. canonical replicate distributions).
Rows with no canonical Python implementation are omitted from this table
— see Models with no Python canonical baseline
below for those.
| Class | Response | EDI (ms) | Canonical | Canonical (ms) | Speedup |
|---|---|---|---|---|---|
InferenceSurvivalWeibullRegr |
survival | 0.08 | lifelines WeibullAFTFitter |
192.55 | 2423.43x |
InferenceSurvivalKMDiff |
survival | 0.02 | lifelines KaplanMeierFitter(median) |
26.52 | 1647.81x |
InferenceSurvivalRestrictedMeanDiff |
survival | 0.01 | lifelines utils.restricted_mean_survival_time |
19.30 | 1460.28x |
InferenceSurvivalStratCoxPHRegr |
survival | 0.47 | lifelines CoxPHFitter(strata=) |
273.61 | 583.92x |
InferenceSurvivalLogRank |
survival | 0.12 | lifelines statistics.logrank_test |
26.28 | 212.34x |
InferenceIncidBinomialIdentityRiskDiff |
incidence | 0.10 | statsmodels GLM(Binomial, identity link) |
15.49 | 149.00x |
InferenceOrdinalPropOddsRegr |
ordinal | 0.91 | statsmodels OrderedModel(logit) |
117.69 | 129.83x |
InferenceOrdinalOrderedProbitRegr |
ordinal | 0.80 | statsmodels OrderedModel(probit) |
86.01 | 106.95x |
InferenceOrdinalGCompMeanDiff |
ordinal | 1.09 | statsmodels OrderedModel(logit)+gcomp |
113.58 | 104.52x |
InferenceSurvivalCoxPHRegr |
survival | 0.50 | scikit-survival CoxPHSurvivalAnalysis |
51.62 | 102.32x |
InferenceContinRobustRegr |
continuous | 0.17 | statsmodels RLM |
11.92 | 69.49x |
InferenceCountHurdleNegBin |
count | 2.33 | statsmodels HurdleCountModel(negbin) |
135.15 | 57.90x |
InferenceCountHurdlePoisson |
count | 1.43 | statsmodels HurdleCountModel(poisson) |
41.83 | 29.33x |
InferenceCountQuasiPoisson |
count | 0.14 | statsmodels GLM(Poisson) |
3.85 | 26.88x |
InferenceCountZeroInflatedNegBin |
count | 13.96 | statsmodels ZeroInflatedNegativeBinomialP |
356.91 | 25.56x |
InferenceIncidModifiedPoisson |
incidence | 0.16 | statsmodels GLM(Poisson) |
3.90 | 24.25x |
InferenceCountRobustPoisson |
count | 0.16 | statsmodels GLM(Poisson) |
3.80 | 23.84x |
InferenceCountPoisson |
count | 0.18 | statsmodels GLM(Poisson) |
3.94 | 22.54x |
InferenceCountNegBin |
count | 0.81 | statsmodels NegativeBinomial |
17.87 | 22.13x |
InferenceIncidProbitRegr |
incidence | 0.44 | statsmodels GLM(Binomial, probit link) |
9.38 | 21.34x |
InferencePropFractionalLogit |
proportion | 0.15 | statsmodels GLM(Binomial, fractional y) |
3.08 | 20.00x |
InferenceIncidLogRegr |
incidence | 0.24 | statsmodels GLM(Binomial) |
4.03 | 17.04x |
InferencePropGCompMeanDiff |
proportion | 0.26 | statsmodels GLM(Binomial)+gcomp |
4.04 | 15.60x |
InferenceIncidGCompRiskDiff |
incidence | 0.36 | statsmodels GLM(Binomial)+gcomp(RD) |
4.78 | 13.16x |
InferenceIncidGCompRiskRatio |
incidence | 0.30 | statsmodels GLM(Binomial)+gcomp(RR) |
3.69 | 12.21x |
InferencePropBetaRegr |
proportion | 1.40 | statsmodels BetaModel |
16.81 | 11.99x |
InferenceCountZeroInflatedPoisson |
count | 11.91 | statsmodels ZeroInflatedPoisson |
59.04 | 4.96x |
InferenceAllSimpleWilcox |
continuous | 0.25 | numpy median(HL pairwise diff) |
1.12 | 4.57x |
InferenceIncidRiskDiff |
incidence | 0.03 | numpy linalg.lstsq (LPM) |
0.11 | 4.12x |
InferenceContinOLS |
continuous | 0.03 | numpy linalg.lstsq |
0.11 | 3.25x |
InferenceIncidLogBinomial |
incidence | 1.63 | statsmodels GLM(Binomial, log link) |
5.13 | 3.15x |
→ Full results (benchmark_model_fits_python.html)
— includes the Wald/full-inference table (standard errors + p-values, not just
the point estimate), the utility/math-kernel table, dataset spec, and
methodology notes. Same table shape as the R package's own
benchmark_model_fits_R.html.
Models with no Python canonical baseline
Fourteen EDI estimators have no clean, actively-maintained Python package to
benchmark against (an absent comparison is more honest than a mismatched
substitute baseline). They're bound in edi_kernels regardless — EDI is
still the only fast way to fit them in Python — they just don't appear in the
speed-gains table above since there's nothing to compare to:
| EDI class | What it fits | Why there's no Python baseline |
|---|---|---|
InferenceContinGLMM (pairs) |
Gaussian LMM, random intercept, fit via MLE | statsmodels' MixedLM uses REML/a different estimation path by default — not a like-for-like comparison |
InferenceCountGLMM (pairs) |
Poisson GLMM, random intercept, adaptive Gauss-Hermite quadrature + MLE | no pure-Python package offers ML (not variational/Bayesian) GLMM fitting |
InferenceCountHurdlePoisson (pairs) |
Hurdle-Poisson GLMM, random intercept | no pure-Python package combines a hurdle count model with adaptive-quadrature GLMM fitting |
InferenceCountKKCondPoissonOneLik |
KK combined (matched-pair + reservoir) joint-likelihood Poisson estimator | no canonical analog in either R or Python |
InferenceIncidKKCondLogitGLMMOneLik |
KK combined (matched-pair + reservoir) joint-likelihood conditional-logit/GLMM estimator | no canonical analog in either R or Python |
InferenceOrdinalAdjCatLogitRegr |
Adjacent-category logit ordinal regression | no identified Python package implements this link (R uses VGAM::vglm(acat())) |
InferenceOrdinalCauchitRegr |
Ordinal regression, cauchit link | statsmodels' OrderedModel(distr=) only documents 'probit'/'logit' |
InferenceOrdinalCloglogRegr |
Ordinal regression, complementary log-log link | same — distr= doesn't officially support cloglog |
InferenceOrdinalContRatioRegr |
Continuation-ratio ordinal regression | no identified Python package implements this link (R uses VGAM::vglm(cratio())) |
InferenceOrdinalCLMM (pairs) |
Ordinal cumulative-link mixed model (logit/probit/cauchit/cloglog), random intercept | no pure-Python package offers ML ordinal-GLMM fitting with adaptive quadrature |
InferenceOrdinalGLMM (pairs) |
Proportional-odds ordinal GLMM, random intercept | same — no pure-Python ML ordinal-GLMM fitter |
InferenceOrdinalStereotypeLogitRegr |
Stereotype logit ordinal regression | R uses VGAM::vglm(multinomial(...))-style fitting; no Python package implements this link |
InferencePropZeroOneInflatedBetaRegr |
Zero-one-inflated beta regression (proportions) | no canonical package in either R or Python |
InferenceSurvivalKKWeibullFrailtyOneLik |
Weibull AFT with shared log-normal frailty | no clean Python package (even the R side only has a partial/PH-parameterized frailtypack analog) |
Install
pip install .
Usage
import numpy as np
from edi_kernels import fast_ols
X = np.column_stack([np.ones(100), np.random.default_rng(0).normal(size=100)])
y = X @ [1.0, 0.5] + np.random.default_rng(1).normal(size=100)
result = fast_ols(X, y)
print(result["b"])
Every bound kernel returns a dict (see python/cpp/result_map_pybind.h)
mirroring the R package's own edi::ResultMap -> list conversion field for
field.
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 edi_kernels-1.0.0.tar.gz.
File metadata
- Download URL: edi_kernels-1.0.0.tar.gz
- Upload date:
- Size: 84.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c05d6d590a16c7339013f5c0f8c7199432df62832fc6724e4b8dfbe877d4f5fb
|
|
| MD5 |
c090690f72367589d1ce2213d5848c3b
|
|
| BLAKE2b-256 |
4e59313b26d5b52db3befe3793a55d9ccdc6bc893a8fb4a689360d932498ef32
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0.tar.gz:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0.tar.gz -
Subject digest:
c05d6d590a16c7339013f5c0f8c7199432df62832fc6724e4b8dfbe877d4f5fb - Sigstore transparency entry: 2410721407
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 8.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45bd1fe17feeb8193146cd0b93e8a5fdf0287b99baa0e54da7d6b92ca50cb5a6
|
|
| MD5 |
ec8d3d286f465c3e03c0fd16d88d2c8c
|
|
| BLAKE2b-256 |
e4ee88077abc3ffafe0717ed373d80718cfae27607a288718e51372a844aa17f
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp313-cp313-win_amd64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp313-cp313-win_amd64.whl -
Subject digest:
45bd1fe17feeb8193146cd0b93e8a5fdf0287b99baa0e54da7d6b92ca50cb5a6 - Sigstore transparency entry: 2410725570
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 13.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
660109ebf3e12fa94f29fceb591bfecda7cca9dbad55cae39de775e6d1ee2822
|
|
| MD5 |
9efd88403c0a9acbd39b874099cd560d
|
|
| BLAKE2b-256 |
e40b7c707754bc5ecade9178c12f012f996880bfdc13fbffc379c9e707bf797e
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp313-cp313-manylinux_2_28_x86_64.whl -
Subject digest:
660109ebf3e12fa94f29fceb591bfecda7cca9dbad55cae39de775e6d1ee2822 - Sigstore transparency entry: 2410729046
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43ac9f1b6ae027c6939233b43cedfeb68b86e8f9886866e3fe9f3f43f572b902
|
|
| MD5 |
ae2e4dbfe3772ffd4660ff0487c314db
|
|
| BLAKE2b-256 |
9b88c11c5bb1e4a454a5b6b7a9b20b908b91ee36ed08019b27bff925bef4cacc
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
43ac9f1b6ae027c6939233b43cedfeb68b86e8f9886866e3fe9f3f43f572b902 - Sigstore transparency entry: 2410723242
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac8419be37f5a46fd40ea25ebab5100db9b3cd61ad5b0c25b05bc315a3ac77b2
|
|
| MD5 |
1c1d2c4401c29cae0c97301303aa2f3d
|
|
| BLAKE2b-256 |
392a23adfeeec586e6cc1c8ffc46c0937e39587301027c3a186f867c649cbf2d
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
ac8419be37f5a46fd40ea25ebab5100db9b3cd61ad5b0c25b05bc315a3ac77b2 - Sigstore transparency entry: 2410722893
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 8.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ff9a91a3b58138584e507c826652c3da175d552a565b6e41805fc4b5267c438
|
|
| MD5 |
c70271807bf165ffed6a1c34954fda6b
|
|
| BLAKE2b-256 |
0fe29f109eafbe8762f34a6bc19b9d31ad65cc7a07cb64ec914a752e8f3c8110
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp312-cp312-win_amd64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp312-cp312-win_amd64.whl -
Subject digest:
1ff9a91a3b58138584e507c826652c3da175d552a565b6e41805fc4b5267c438 - Sigstore transparency entry: 2410728375
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 13.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e52d416073d3fb01f834f36c9f19660b60c2ca1c263fad74987fc258cafd8db2
|
|
| MD5 |
d5cc3edfec845cb2fa1593073b65a1ab
|
|
| BLAKE2b-256 |
f197b52658c3796bce38a15985255665a3775c3b9f03092e5a8a63e0e568f23d
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp312-cp312-manylinux_2_28_x86_64.whl -
Subject digest:
e52d416073d3fb01f834f36c9f19660b60c2ca1c263fad74987fc258cafd8db2 - Sigstore transparency entry: 2410726450
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89d2c1c97602b7e8103034bc9b535a79dea98d707a2765cd208ba664d226c588
|
|
| MD5 |
d4d63df62bf45832b00f106ea7a07ce8
|
|
| BLAKE2b-256 |
08a3026e3147b788fd5a1215210eabc91ad49256bd412ffab61f1f9d96f79418
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
89d2c1c97602b7e8103034bc9b535a79dea98d707a2765cd208ba664d226c588 - Sigstore transparency entry: 2410727090
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04d8848de190d4954dbca180bfb132fcdfb2794aaba33f564a2cb2ee3b8ecc41
|
|
| MD5 |
959105406722ab7d8395303d113c1515
|
|
| BLAKE2b-256 |
09c1ccaa610eea4c9dc56adb87b2454cab056c53bcbb611a3230ebe02e64dabf
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
04d8848de190d4954dbca180bfb132fcdfb2794aaba33f564a2cb2ee3b8ecc41 - Sigstore transparency entry: 2410728801
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 8.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75d4c64ed41bcfcaf0cc63fa1a28b709ef8b533edeca6f21d7aaffe7d3fa089c
|
|
| MD5 |
a637fec997121b72bf94ffed5fe14546
|
|
| BLAKE2b-256 |
afa15ec31dedbf0e3b33f97b27b6d99d9b23257169305eb8918f81fa5a36d060
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp311-cp311-win_amd64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp311-cp311-win_amd64.whl -
Subject digest:
75d4c64ed41bcfcaf0cc63fa1a28b709ef8b533edeca6f21d7aaffe7d3fa089c - Sigstore transparency entry: 2410726767
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 13.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45de2461aa9499aeda3fb26271a05404c8d7770526fbc0c0b22031ed6f9969fb
|
|
| MD5 |
2f62036b05eda33ddb4c78da407184a3
|
|
| BLAKE2b-256 |
d768af1f84e73480fb4c2c603cb9c11a8361a40f900deb8ad09d5cdbf400975b
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp311-cp311-manylinux_2_28_x86_64.whl -
Subject digest:
45de2461aa9499aeda3fb26271a05404c8d7770526fbc0c0b22031ed6f9969fb - Sigstore transparency entry: 2410723558
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 996.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e889ec912ae85d8eaa3ca07f4370d1c38b2e491cfee1e463224a9f8e968c225f
|
|
| MD5 |
082379ae1ac7978c3b99586016ed6676
|
|
| BLAKE2b-256 |
7a937ef02427148ee3eb71c401fe15a9924f94311306ea1d0b08c7f2be3815c3
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
e889ec912ae85d8eaa3ca07f4370d1c38b2e491cfee1e463224a9f8e968c225f - Sigstore transparency entry: 2410721854
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cc77b5179bd45eb5ed42b13f632b83dab7b7c5834f92713aaa7db92f092402c
|
|
| MD5 |
14cd9ca65cba98dd97d040a5587ccc5a
|
|
| BLAKE2b-256 |
7a620331e60420ee1637e66b79a116fa9ae053a9a779825f34e744ba95de20a1
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
1cc77b5179bd45eb5ed42b13f632b83dab7b7c5834f92713aaa7db92f092402c - Sigstore transparency entry: 2410722308
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 8.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da780e1e92bc5db33e0cd6bd9c8febcb1e8e573b01863c0860f4daaf388d5ae8
|
|
| MD5 |
2562faca8d1f74a810d8605ea5052e8f
|
|
| BLAKE2b-256 |
ffef8dfc226b1f83addc9d826c80d0d7f59230d9a6b9216ebdd2e712541a87ac
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp310-cp310-win_amd64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp310-cp310-win_amd64.whl -
Subject digest:
da780e1e92bc5db33e0cd6bd9c8febcb1e8e573b01863c0860f4daaf388d5ae8 - Sigstore transparency entry: 2410726167
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 13.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2654acf68d17858a76ab4bcf70a8fb4b693ebebd52c0c4a7e7fe6ea202fb795
|
|
| MD5 |
f8eb1e42ab3ad5e3c801835a27c8f5f4
|
|
| BLAKE2b-256 |
a1b63346df8309320d958937c99f568c08c0cac0a8232a391a0a8d6d0205cbfe
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp310-cp310-manylinux_2_28_x86_64.whl -
Subject digest:
c2654acf68d17858a76ab4bcf70a8fb4b693ebebd52c0c4a7e7fe6ea202fb795 - Sigstore transparency entry: 2410727537
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 994.6 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a46a4b777f7a3ab86d96e694bf9b5018f3dc9b49ce109b62d3f4d89b60777ac
|
|
| MD5 |
ddca4ee08bb46a47bbcfeb169a3c38a2
|
|
| BLAKE2b-256 |
a69761661600cdba2ff1a45265ebcd38364dc01a228864a417d6edc39a1a0571
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
0a46a4b777f7a3ab86d96e694bf9b5018f3dc9b49ce109b62d3f4d89b60777ac - Sigstore transparency entry: 2410723944
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66b2f9e83f13b4a9fc648f936e972560e5e1ae8b40c780b0420aed9b53226405
|
|
| MD5 |
83917e8d65f09bd93060bb6821848ceb
|
|
| BLAKE2b-256 |
14994a81ccee60ed3d3fdc6658a820e90adaa2dc2339773061ead191f3bab595
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
66b2f9e83f13b4a9fc648f936e972560e5e1ae8b40c780b0420aed9b53226405 - Sigstore transparency entry: 2410724386
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 9.9 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1149908e1a603c4dcecb09a4517a021e7dff24343be05d158b8456124e667dc
|
|
| MD5 |
dde5e99bdb86e3df53b88ba02af29aaa
|
|
| BLAKE2b-256 |
5e2253f8de1e8c338b208db344bd2424551d5ca0df3a33bc7511705e021de5bf
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp39-cp39-win_amd64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp39-cp39-win_amd64.whl -
Subject digest:
f1149908e1a603c4dcecb09a4517a021e7dff24343be05d158b8456124e667dc - Sigstore transparency entry: 2410725852
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 15.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
069a3f23ea6cbd8d6ff7d74a5d4da739306fbddd61dfa53abdcc4af109b3551c
|
|
| MD5 |
f32b8529b7fb00ed8166195d6bef2eee
|
|
| BLAKE2b-256 |
111c5a0de7f4f39b03c72cbdbd6fdb6a72040ad44438527863bc11dd87c583b3
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp39-cp39-manylinux_2_28_x86_64.whl -
Subject digest:
069a3f23ea6cbd8d6ff7d74a5d4da739306fbddd61dfa53abdcc4af109b3551c - Sigstore transparency entry: 2410728041
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 994.8 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b89f34f2c71ea85ea7c9b702b9b236f7330bd88fbf927d2985605e7a6bae8d0e
|
|
| MD5 |
b69a8a44c7cfd302a9fc2df8d2453da5
|
|
| BLAKE2b-256 |
4ae212b1adb0faac0460a06aee4045860cae159a0fbde5a301afb1b771e82186
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
b89f34f2c71ea85ea7c9b702b9b236f7330bd88fbf927d2985605e7a6bae8d0e - Sigstore transparency entry: 2410725210
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type:
File details
Details for the file edi_kernels-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: edi_kernels-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 3.1 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2476100a4804bb57256cccc05a182ece5cdf339f16b364a10dd7235b36fa4bcf
|
|
| MD5 |
b57c548e40a60b8badb114e98c37aceb
|
|
| BLAKE2b-256 |
a3a8b0cbadafa7bbf6b88040862e258b488f4cbab0e595ab04bb5393e661fd11
|
Provenance
The following attestation bundles were made for edi_kernels-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
build-wheels.yml on kapelner/EDI
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
edi_kernels-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
2476100a4804bb57256cccc05a182ece5cdf339f16b364a10dd7235b36fa4bcf - Sigstore transparency entry: 2410724809
- Sigstore integration time:
-
Permalink:
kapelner/EDI@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Branch / Tag:
refs/tags/py-v1.0.0 - Owner: https://github.com/kapelner
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheels.yml@ff079d54c46f33cb9eaf67aee448e73807f06d10 -
Trigger Event:
push
-
Statement type: