A Python implementation of the regMMD estimator and regressor with a Scikit-Learn interface
Project description
regmmd — robust estimation and regression via MMD
regmmd is a scikit-learn-compatible implementation of parametric estimation
and regression using the Maximum Mean Discrepancy (MMD) criterion. MMD
measures the distance between two distributions through their mean embeddings
in a reproducing kernel Hilbert space; minimising it between an empirical
sample and a parametric model yields estimators that are provably universally
consistent and robust to outliers and model misspecification — including
adversarial contamination of an arbitrary fraction of the data.
The methodology follows:
- Alquier & Gerber, Universal robust regression via maximum mean discrepancy, Biometrika (2024). link
- Chérief-Abdellatif & Alquier, Finite-sample properties of parametric MMD estimation: robustness to misspecification and dependence, Bernoulli (2022). link
Existing R package
One top of this implementation, there exists an implementation in the R language by the original authors of the papers, R package link. Most functions in this package are derived from the R implementation. However, the way the statistical models are implemented are different in this version to allow users to quickly implement their own custom model.
Quickstart
import numpy as np
from regmmd import MMDEstimator
rng = np.random.default_rng(0)
X = rng.normal(loc=2.0, scale=1.5, size=500)
est = MMDEstimator(
model="gaussian-loc",
par_c=1.5,
kernel="Gaussian",
solver={
"burnin": 500,
"n_step": 1000,
"stepsize": 1.0,
"epsilon": 1e-4
}
)
res = est.fit(X)
print(res["estimator"])
Installation
This package is developed for Python 3.11+ and can be
installed through pip or uv.
Using pip
pip install regmmd
Using uv
uv add regmmd
To work from source (e.g. for development), see Development.
What's in the package
Two scikit-learn-style estimators:
-
MMDEstimator— fits a univariate parametric model to an i.i.d. sample by minimising MMD between the empirical and model distributions. -
MMDRegressor— fits a regression model (fit/predictAPI,BaseEstimatorsubclass — composes withPipeline,GridSearchCV, etc.) by minimising MMD between observed and model-predicted conditional distributions.Supported models
Estimation (regmmd.models):
Gaussian, GaussianLoc, GaussianScale, Cauchy, Beta, BetaA, BetaB,
Gamma, GammaShape, GammaRate, Binomial, Poisson, Geometric,
Pareto, Dirac, ContinuousUniformLoc, ContinuousUniformUpper,
ContinuousUniformLowerUpper, DiscreteUniform.
Regression (regmmd.models):
LinearGaussian, LinearGaussianLoc, Logistic, GammaRegression,
GammaRegressionLoc, PoissonRegression, BetaRegression,
BetaRegressionLoc.
Each model can be selected by string (e.g. model="gamma-regression-loc") or
by passing a class instance. See the
documentation for definitions and
parameter conventions, plus a guide to implementing your own model.
Kernels and bandwidth
Three 1-D kernels are supported for both X and y: "Gaussian",
"Laplace", "Cauchy". Bandwidths can be fixed floats or "auto" (the
median heuristic). Setting bandwidth_X=0 in MMDRegressor selects the
tilde estimator (kernel only on y); a positive bandwidth selects the
hat estimator (product kernel on (X, y)). The hat estimator is more
robust to covariate contamination at the cost of preprocessing pairwise
covariate distances.
Examples
Estimation
import numpy as np
from regmmd import MMDEstimator
from regmmd.utils import print_summary
rng = np.random.default_rng(seed=123)
X = rng.normal(loc=0, scale=1.5, size=500)
mmd_estim = MMDEstimator(
model="gaussian-loc",
par_v=None,
par_c=1.5,
kernel="Gaussian",
solver={
"burnin": 500,
"n_step": 1000,
"stepsize": 1,
"epsilon": 1e-4,
}
)
res = mmd_estim.fit(X=X)
print_summary(res)
Regression
from regmmd import MMDRegressor
from regmmd.models import GammaRegressionLoc
from regmmd.utils import print_summary
import numpy as np
rng = np.random.default_rng(seed=123)
n = 1000
p = 4
beta = np.arange(1, 5)
model_true = GammaRegressionLoc(par_v=beta, par_c=1, random_state=12)
X = rng.normal(loc=0, scale=1, size=(n, p))
mu_given_x = model_true.predict(X=X)
y = model_true.sample_n(n=n, mu_given_x=mu_given_x)
beta_init = np.array([0.5, 1.5, 2.5, 3.2])
mmd_reg = MMDRegressor(
model="gamma-regression-loc",
par_v=beta_init,
par_c=1.5,
fit_intercept=False,
bandwidth_X=0,
bandwidth_y=5,
kernel_y="Gaussian",
solver={
"burnin": 5000,
"n_step": 10000,
"stepsize": 1,
"epsilon": 1e-8,
},
)
res = mmd_reg.fit(X=X, y=y)
print_summary(res)
Optimization
The optimizer uses exact analytical gradient methods wherever possible, and
falls back to a general stochastic gradient descent (SGD) method otherwise.
Each model can define an _exact_fit() method that computes closed-form
gradients for its specific combination of model and kernel. When an exact
method is not available (or the model/kernel combination is not supported),
the optimizer automatically falls back to the general-purpose SGD solver which
works with any model. There are also two flags that can enforce one of
the two speed-ups of the optimization loop:
use_exact=True(default) — try the analytical path first, fall back to SGD.use_fast=True(default, estimation only) — use the Cython SGD loop (5–10× faster) when a Cython mirror of the model is available.
For a detailed overview, see the documentation.
Estimation optimization speedup
For the estimation procedure, the SGD optimization loop is also written in
Cython. To benefit from this speed, you would need to add your model to
the _cy_estimation_models.pyx and _cy_estimation_models.pyd files
and update the _build_cy_model method in the python class. No extra
Cython functionality was added to the regression models, as the optimization
is already quite fast, because of the algorithmic improvements that were
made in the published papers. Specifically, all the required kernel operations
are of order $O(n)$ instead of $O(n^2)$
Development
Clone and install with the test dependencies via
uv:
git clone https://github.com/HiddeFok/reg-mmd-scikit
cd reg-mmd-scikit
uv sync --group test
Run the test suite with coverage:
uv run pytest tests/ --cov=regmmd
Rebuild the Cython extensions (regmmd/optimizers/_cy_*.pyx,
regmmd/models/_cy_estimation_models.pyx) after editing them:
uv run python setup.py build_ext --inplace
To add a Cython-accelerated mirror of a new estimation model, edit
_cy_estimation_models.pyx / _cy_estimation_models.pxd, then expose it via
_build_cy_model on the Python class.
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 regmmd-0.2.0.tar.gz.
File metadata
- Download URL: regmmd-0.2.0.tar.gz
- Upload date:
- Size: 537.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccc9cb1e03c47825f0aa8a612b7ce896023db356501ccbf0a1acf537cc77233f
|
|
| MD5 |
44f6ff9ad5b9a2a41364a1e2d75d11dc
|
|
| BLAKE2b-256 |
ace0c8d7befb0bdfe53b47dafd1d6f254da766d9c6087897f4042c13b729b841
|
Provenance
The following attestation bundles were made for regmmd-0.2.0.tar.gz:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0.tar.gz -
Subject digest:
ccc9cb1e03c47825f0aa8a612b7ce896023db356501ccbf0a1acf537cc77233f - Sigstore transparency entry: 1463257805
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 774.5 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47c968755200f77c8208a591995effb285a07d7ac84595d867c2f8815141ceeb
|
|
| MD5 |
d2737e0254ac1e0dca9c227fdd454002
|
|
| BLAKE2b-256 |
fc378b30cfb5c2a7805e62d4df2cc371ca43d2589770dfa749ef2bee8428d37d
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-win_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-win_arm64.whl -
Subject digest:
47c968755200f77c8208a591995effb285a07d7ac84595d867c2f8815141ceeb - Sigstore transparency entry: 1463259648
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 838.7 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10706021e29d61fe1161a178070a1430d650a7132659eef53ffe08f221b06694
|
|
| MD5 |
b0c20d8c4213e1027b07fb733f90ccb5
|
|
| BLAKE2b-256 |
1fc81741eef8e07d2cf3dad331e43f130c03c2409923cdac1f59ea1f7c3cb15a
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-win_amd64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-win_amd64.whl -
Subject digest:
10706021e29d61fe1161a178070a1430d650a7132659eef53ffe08f221b06694 - Sigstore transparency entry: 1463259585
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8900019182dd47d46e092f54d7afbee3ec09094a271b08212f533be1f196075d
|
|
| MD5 |
665ac3f199a168c4f0897c35715359c2
|
|
| BLAKE2b-256 |
14b9747f0fe0ec7675b0c3f6068925ee4ffe3744fd6d9c737ff4209a5678e890
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
8900019182dd47d46e092f54d7afbee3ec09094a271b08212f533be1f196075d - Sigstore transparency entry: 1463259096
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68529fc5df305c34c4d43c9f26a714ddd977c5cdf8cd756154a4eb91b2fe0117
|
|
| MD5 |
1cebddb48f763981b18c8192cea1e291
|
|
| BLAKE2b-256 |
504b6355a1aeaf325952532e64f95d335eefe662c0d1e3902f2976659c96aa5f
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
68529fc5df305c34c4d43c9f26a714ddd977c5cdf8cd756154a4eb91b2fe0117 - Sigstore transparency entry: 1463259787
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, 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 |
f75342dab732e4aa437c566eddfb57dcec0b4d8d6bd1e2c685163f0ea4de88c2
|
|
| MD5 |
a8c5fc1e68d2970086208e1367abe56c
|
|
| BLAKE2b-256 |
1bab03a63b704252b9f56e073fbc364d2333964de53177b59c535090a8f1649b
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f75342dab732e4aa437c566eddfb57dcec0b4d8d6bd1e2c685163f0ea4de88c2 - Sigstore transparency entry: 1463258502
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14t, 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 |
4b61197119edb07cffbc3130e8a79d9a5f54c548e7d781219a4cb27ad0500e87
|
|
| MD5 |
f80a5334de11f5593b938d34b7564eeb
|
|
| BLAKE2b-256 |
fc3fe20a1d976d9db91cb46e74b99d3fa39e639574cc760566d760b8dbea56b7
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
4b61197119edb07cffbc3130e8a79d9a5f54c548e7d781219a4cb27ad0500e87 - Sigstore transparency entry: 1463259488
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-macosx_14_0_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-macosx_14_0_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16e9afe597cba6c27021f4eb719b1d481215f5cd8218faf5905aa5ca2bcfc425
|
|
| MD5 |
bd03298217988273b6fe024ec5f6217d
|
|
| BLAKE2b-256 |
7d18fcaaf1d8e435e2fcc6b5f4e72778eebd1c5ff6d9cce53f8526d9f5660b1a
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-macosx_14_0_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-macosx_14_0_x86_64.whl -
Subject digest:
16e9afe597cba6c27021f4eb719b1d481215f5cd8218faf5905aa5ca2bcfc425 - Sigstore transparency entry: 1463258880
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314t-macosx_14_0_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314t-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6189862ea2780e1107e29c7dccea0b087762a463f58822249e91fa96b8bb038
|
|
| MD5 |
67dd1459851a0199614ecbd5ab3f434e
|
|
| BLAKE2b-256 |
a0a8b2088c150e54ff5fe8c7231f2baa360044338335760f28a674e61185c700
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314t-macosx_14_0_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314t-macosx_14_0_arm64.whl -
Subject digest:
e6189862ea2780e1107e29c7dccea0b087762a463f58822249e91fa96b8bb038 - Sigstore transparency entry: 1463259414
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 761.7 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec51224e440ad5c5733db779aaa5763c4d5e335ed655452c2b6c74f3479260c2
|
|
| MD5 |
ec8aeffc5389c32af363dc422d9f9ebe
|
|
| BLAKE2b-256 |
3e6cd0f07985edce80d6de8affabd6f223576ac2f0caa5a3666d7fa40865d4fe
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-win_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-win_arm64.whl -
Subject digest:
ec51224e440ad5c5733db779aaa5763c4d5e335ed655452c2b6c74f3479260c2 - Sigstore transparency entry: 1463258758
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 799.6 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb0fbd9ecbf5542f0fef13c357b3b65c9c438d1843ca53aed8021d5bc1530369
|
|
| MD5 |
b905a5a16196befa5094786af1a88c71
|
|
| BLAKE2b-256 |
c9b331ada0cd69469f24920ced2b36720b57859beb57dca420bbf9e627734cdc
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-win_amd64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-win_amd64.whl -
Subject digest:
bb0fbd9ecbf5542f0fef13c357b3b65c9c438d1843ca53aed8021d5bc1530369 - Sigstore transparency entry: 1463260016
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37b9934d77b0eaac5c349479a8498b6cf1b6b9cad2680b65f7108b8fb09d6a22
|
|
| MD5 |
f5ec2dc3c83b1fd1f8acc921b8d88fef
|
|
| BLAKE2b-256 |
063d440de3a14d1ce012308fbb17923bbfdd014f3fdcbca293fc0eab59022cac
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
37b9934d77b0eaac5c349479a8498b6cf1b6b9cad2680b65f7108b8fb09d6a22 - Sigstore transparency entry: 1463259366
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81ba7f1a0ecf580230d93f73278be8ef5acdbdf1ff384af708db878d3400e198
|
|
| MD5 |
827b03d59bf09a904be3729148dbc920
|
|
| BLAKE2b-256 |
285c3447221b9dabe10f0b0ce03ae8e153680d2e238219f964d0e7bf2371888b
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
81ba7f1a0ecf580230d93f73278be8ef5acdbdf1ff384af708db878d3400e198 - Sigstore transparency entry: 1463259563
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, 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 |
0bd6764d84c1927388451e08b71a4e6bebbbbb7891e47d815dc0af8cfaf3e055
|
|
| MD5 |
7eb98c7bfcd35ca79e1442d44a6ff54e
|
|
| BLAKE2b-256 |
d1c63a4dbe6503e9baa632760cffbe74d979da57d14a6db90e0945644fa1b7ee
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0bd6764d84c1927388451e08b71a4e6bebbbbb7891e47d815dc0af8cfaf3e055 - Sigstore transparency entry: 1463259722
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.14, 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 |
706f852819cf7a3c9a44ccf028cfe88753d6206399ba353ae640c93741aead4f
|
|
| MD5 |
6add114774a30431c067ba58be3bf5f9
|
|
| BLAKE2b-256 |
979d3a2a96fb1d40e36a85b6559fed1d22fc69efb934c63f97cd6d4c67bd3584
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
706f852819cf7a3c9a44ccf028cfe88753d6206399ba353ae640c93741aead4f - Sigstore transparency entry: 1463259232
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-macosx_14_0_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-macosx_14_0_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2a985e0bdefafae5bd151367ae4ebe80f7c7973b26eadca26a58c4b1746e86a
|
|
| MD5 |
0537565c0ea8dbccfc3bf015b39aca58
|
|
| BLAKE2b-256 |
ace94ccfa69179fcf2d8279c1d623b4fabcfee08c587803526fc3c5e7945df25
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-macosx_14_0_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-macosx_14_0_x86_64.whl -
Subject digest:
e2a985e0bdefafae5bd151367ae4ebe80f7c7973b26eadca26a58c4b1746e86a - Sigstore transparency entry: 1463258395
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp314-cp314-macosx_14_0_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp314-cp314-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f148e6148df81647d5a99d9d5fbfea328cf4900b9932ba3e92de6594f9e00070
|
|
| MD5 |
e664ba999c04d297b4d631d5e8f74127
|
|
| BLAKE2b-256 |
973a645aac36dcc22a487027fc8c631d2a12545524334838280aafb405f4c54a
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp314-cp314-macosx_14_0_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp314-cp314-macosx_14_0_arm64.whl -
Subject digest:
f148e6148df81647d5a99d9d5fbfea328cf4900b9932ba3e92de6594f9e00070 - Sigstore transparency entry: 1463259132
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 751.8 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e068ffa0fce3a938c6cf8bcd2df6d085d9f010b041c3faf8cafa534277fd326
|
|
| MD5 |
d5b68c31fbab79707696706f552a3952
|
|
| BLAKE2b-256 |
8736a8af28afa7d220c776435baee34928c756b1b36e2b1b5b3f6948c7bea54b
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-win_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-win_arm64.whl -
Subject digest:
0e068ffa0fce3a938c6cf8bcd2df6d085d9f010b041c3faf8cafa534277fd326 - Sigstore transparency entry: 1463259446
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 790.6 kB
- 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 |
cc4158e3ed6c562b5494c9192ad2c1dc4ca95e447e3452c5271722f7980f65d7
|
|
| MD5 |
4b1c91958bc69fe2c3cd3b5e5769a03a
|
|
| BLAKE2b-256 |
1046c1ac5651a25c6620c37024a0e2869c76e52ac839e68ed030bbd46d84361d
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-win_amd64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-win_amd64.whl -
Subject digest:
cc4158e3ed6c562b5494c9192ad2c1dc4ca95e447e3452c5271722f7980f65d7 - Sigstore transparency entry: 1463259169
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e743d68992493a733d9d7db1637ee7f049cdf560dc40c6dec6b4a262447ebb3
|
|
| MD5 |
fee6f34d7497d114cf005d912947cb71
|
|
| BLAKE2b-256 |
e335b1573888c536aa601d386e6c7e721ed80002044960eac50199ea09d813fe
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
1e743d68992493a733d9d7db1637ee7f049cdf560dc40c6dec6b4a262447ebb3 - Sigstore transparency entry: 1463259933
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f96c639b540edd8e07aa3d72c9770e387c2763c7eb653ac84f8383f1629ce4b
|
|
| MD5 |
9e4d8d2936a9245aecbb2a2e8b968508
|
|
| BLAKE2b-256 |
16e5519c78af84b885fa243224ef7a2bf523c9d6df9cc75c308aa6a4c12191ff
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
8f96c639b540edd8e07aa3d72c9770e387c2763c7eb653ac84f8383f1629ce4b - Sigstore transparency entry: 1463259864
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 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 |
0e6b6ecede6316449846e5722f6699c218349a4aecfb3b43bc5bf8a7151f5d13
|
|
| MD5 |
3c48da76abb5a96d0d91942eb89c51a6
|
|
| BLAKE2b-256 |
afb09fe7ed7efbda268c188b71217d9a83904056b3d6c13494c9424a3db42338
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0e6b6ecede6316449846e5722f6699c218349a4aecfb3b43bc5bf8a7151f5d13 - Sigstore transparency entry: 1463259697
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 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 |
ab1b4672367f189962b9b710b203b8f13f29912c317d53f88fdd6ea369202d5a
|
|
| MD5 |
4ed9754a0e41efd383577c8dc15c54ab
|
|
| BLAKE2b-256 |
f5b79afaa515a4d691c99aa346fe7a357676b203e09774df29b32bcf2310bbdc
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ab1b4672367f189962b9b710b203b8f13f29912c317d53f88fdd6ea369202d5a - Sigstore transparency entry: 1463259612
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-macosx_14_0_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-macosx_14_0_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
044cbcc347cb0ae700d174f380db2e38b73ea34749d8aade34e9ca9f53f9a260
|
|
| MD5 |
ecac0184e861bdc63bf03d8c269ba0b5
|
|
| BLAKE2b-256 |
2b0d87ca524d51503d0199bec836ff4804b873a0ec95aa53ade905e669a3a9a5
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-macosx_14_0_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-macosx_14_0_x86_64.whl -
Subject digest:
044cbcc347cb0ae700d174f380db2e38b73ea34749d8aade34e9ca9f53f9a260 - Sigstore transparency entry: 1463259293
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp313-cp313-macosx_14_0_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp313-cp313-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10c6c627158f2df0b6bd53d0e13377d28c99c68a3406280a9f6a0bfa135b6756
|
|
| MD5 |
29f41f0c5856ee8837675cca02b2bf3b
|
|
| BLAKE2b-256 |
6984919cf35b94048188ca068bee5ce36484ac250b0f1803ada9ee5af985f7b9
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp313-cp313-macosx_14_0_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp313-cp313-macosx_14_0_arm64.whl -
Subject digest:
10c6c627158f2df0b6bd53d0e13377d28c99c68a3406280a9f6a0bfa135b6756 - Sigstore transparency entry: 1463257937
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 752.3 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
086aa238f5d1d12dac80c884ddffbfe616d6ddbdf77e78be7026e2650b269521
|
|
| MD5 |
125795c57ac1bf7eb43af7d70607acdf
|
|
| BLAKE2b-256 |
3825e074b24f9b785e0faf61202748902703bb92987ebd1eb680838285b6fc9a
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-win_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-win_arm64.whl -
Subject digest:
086aa238f5d1d12dac80c884ddffbfe616d6ddbdf77e78be7026e2650b269521 - Sigstore transparency entry: 1463260061
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 791.3 kB
- 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 |
df3d4d156a33696fa9955297471bf5345b2757af824652324761b2af23d16a27
|
|
| MD5 |
855d02475285e8c2b5a795a3427733e2
|
|
| BLAKE2b-256 |
11824c9a1e2783dc08941f0dd77fb773536cc6614c3bafebcecbeb44c713f266
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-win_amd64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-win_amd64.whl -
Subject digest:
df3d4d156a33696fa9955297471bf5345b2757af824652324761b2af23d16a27 - Sigstore transparency entry: 1463259896
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2b11b137a99f6d1501bd6489346a40021ff3504fd873280d735ded8ace3bf3a
|
|
| MD5 |
cdf82f0a4dfb954d780d9a7665761f08
|
|
| BLAKE2b-256 |
cb3acfa1746da0c042f7b523b66df66c0315423216230f54f5e3fb88369f736d
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
c2b11b137a99f6d1501bd6489346a40021ff3504fd873280d735ded8ace3bf3a - Sigstore transparency entry: 1463258062
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef2a0330d5641fe1aa0918704019a4f99cb520717ccd74239d63041e6a8aa2f6
|
|
| MD5 |
c30d442df8477f7facceab4b1efcf8a2
|
|
| BLAKE2b-256 |
40a325b7cac9596bf3c192876f5aa3903a385f141d587e6ee03d72ef5d8f1d0c
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
ef2a0330d5641fe1aa0918704019a4f99cb520717ccd74239d63041e6a8aa2f6 - Sigstore transparency entry: 1463259038
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.3 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 |
3457fafef3a217ed37fff564931b5e8c0db02c8d373c86211b832013ef0ac576
|
|
| MD5 |
e682a8f3ed5b8a38c200090bfa1371bd
|
|
| BLAKE2b-256 |
f19289e279d33aff262c169b79f00f4014660190006fd34aa63cbcc653d42e2f
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3457fafef3a217ed37fff564931b5e8c0db02c8d373c86211b832013ef0ac576 - Sigstore transparency entry: 1463258140
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 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 |
2c782969251e10c7833f1c002fae07b63cdc25f2750f3a78387d3da46ebda1de
|
|
| MD5 |
7acee9253ab09eef462a2e9e273026ad
|
|
| BLAKE2b-256 |
1d24a3ce93b7c9ba76bae29b31fd129105f87dd6d06c708af78e5851e7d8ddc9
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
2c782969251e10c7833f1c002fae07b63cdc25f2750f3a78387d3da46ebda1de - Sigstore transparency entry: 1463259752
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-macosx_14_0_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-macosx_14_0_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ede94f07239207a377a315bde79cfde2f2c36c4212e8650aae3d7eb3142edbb
|
|
| MD5 |
d789c351ca07b68f0a512e7863ba0518
|
|
| BLAKE2b-256 |
b290e27d178344c1cd40b7d21c4433a49e53f2e3f3ba3b414314dfa186d5d65a
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-macosx_14_0_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-macosx_14_0_x86_64.whl -
Subject digest:
0ede94f07239207a377a315bde79cfde2f2c36c4212e8650aae3d7eb3142edbb - Sigstore transparency entry: 1463259321
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp312-cp312-macosx_14_0_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp312-cp312-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b4252ceedfffdfb3e472a71992ca8c204dfb5904db320db4561d99b0d9219ff
|
|
| MD5 |
f70180d46f5e2fece2ec703ba945665d
|
|
| BLAKE2b-256 |
58daed3f655ef9a416edc17bf983e6d82407e6aae08ea1dfb8ee8ea941bf0645
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp312-cp312-macosx_14_0_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp312-cp312-macosx_14_0_arm64.whl -
Subject digest:
4b4252ceedfffdfb3e472a71992ca8c204dfb5904db320db4561d99b0d9219ff - Sigstore transparency entry: 1463258622
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 752.3 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96e63444db853d927dfb0d5dc9d70c3a849360af4a4961c9ef9c995412a67b9c
|
|
| MD5 |
18f715019d226184a37afa5e7364571f
|
|
| BLAKE2b-256 |
9e5659cd77b29f6b30011ea8475daf15d6fb4a351486aedd305567d842f5a118
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-win_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-win_arm64.whl -
Subject digest:
96e63444db853d927dfb0d5dc9d70c3a849360af4a4961c9ef9c995412a67b9c - Sigstore transparency entry: 1463258262
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 788.7 kB
- 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 |
39a2d68e0ad8734aa2b4a2546f5d955aa44812a9e5a07a69843ad9ff475ce8a9
|
|
| MD5 |
67ba95893b0d29cf348e42ba1b2d5fdb
|
|
| BLAKE2b-256 |
ef9ba627549ad9b4372b44bbf131fb1fad9feb1529822caf554d778fb26a40ef
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-win_amd64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-win_amd64.whl -
Subject digest:
39a2d68e0ad8734aa2b4a2546f5d955aa44812a9e5a07a69843ad9ff475ce8a9 - Sigstore transparency entry: 1463258945
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78efda91de489dddfee599f5391e868e9e171c59aa865b42b8d230e7eb2870b1
|
|
| MD5 |
f1d8f024f6c7d1d6bbf41e052de78692
|
|
| BLAKE2b-256 |
fd7487bc3f7fd6e555268832124573feaac1ef00fd4191145e6b62c24679d97b
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
78efda91de489dddfee599f5391e868e9e171c59aa865b42b8d230e7eb2870b1 - Sigstore transparency entry: 1463258701
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c311e19b48f042e6f34edbd50d09d107bafc51fbbd46137d126393d81707cc2
|
|
| MD5 |
63fcbeaa4c66b8432df179c312deb399
|
|
| BLAKE2b-256 |
14c5a813c6748ba68295af2789a2341cd707ca2a8500e779056011fb6372b8ca
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
4c311e19b48f042e6f34edbd50d09d107bafc51fbbd46137d126393d81707cc2 - Sigstore transparency entry: 1463259961
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.2 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 |
7a3527e588852c90753a0a91067deeba7fceadcaf0075fe83a704049ec51045c
|
|
| MD5 |
eee576adbe7fe31a853468d4ff5645a0
|
|
| BLAKE2b-256 |
6eca53c53a2e1b34130a4d7cfa87c4172fe702549ef5393de3ce24e0e90e7816
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
7a3527e588852c90753a0a91067deeba7fceadcaf0075fe83a704049ec51045c - Sigstore transparency entry: 1463259987
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.2 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 |
04e7cd05e4705089be057ccf97921792878caa59e9564b5981c9cf58614ba030
|
|
| MD5 |
337193aa2b9fe23a7277bc5736a3f976
|
|
| BLAKE2b-256 |
be21cb03808aa9c2c5831ed3226123892a518e3c5f83f995dc776f6589b8085b
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
04e7cd05e4705089be057ccf97921792878caa59e9564b5981c9cf58614ba030 - Sigstore transparency entry: 1463257883
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-macosx_14_0_x86_64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-macosx_14_0_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 14.0+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22dfbf0f11812284e390eb8a5c8f32ce41a2c65f280ab4615ce22e15e0f6cec0
|
|
| MD5 |
916e60326324defc8d37bbbcf0eadade
|
|
| BLAKE2b-256 |
a8ab84a4c28a07d1301740358d1648e8e68b1edeee215342e543b5dd6bc80572
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-macosx_14_0_x86_64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-macosx_14_0_x86_64.whl -
Subject digest:
22dfbf0f11812284e390eb8a5c8f32ce41a2c65f280ab4615ce22e15e0f6cec0 - Sigstore transparency entry: 1463259831
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type:
File details
Details for the file regmmd-0.2.0-cp311-cp311-macosx_14_0_arm64.whl.
File metadata
- Download URL: regmmd-0.2.0-cp311-cp311-macosx_14_0_arm64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, macOS 14.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a4dafa3681f84d24a5f0801b30ddc314d224539fd5ab76f8e495c9b7ee24988
|
|
| MD5 |
15b4b9e776b7d2a68863ea5fbd1471c5
|
|
| BLAKE2b-256 |
8162000b52601fa00efba7dc58964970c9db05c24a39a3cde1dd45dbb409244d
|
Provenance
The following attestation bundles were made for regmmd-0.2.0-cp311-cp311-macosx_14_0_arm64.whl:
Publisher:
wheels.yml on HiddeFok/reg-mmd-scikit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
regmmd-0.2.0-cp311-cp311-macosx_14_0_arm64.whl -
Subject digest:
6a4dafa3681f84d24a5f0801b30ddc314d224539fd5ab76f8e495c9b7ee24988 - Sigstore transparency entry: 1463259527
- Sigstore integration time:
-
Permalink:
HiddeFok/reg-mmd-scikit@4efcd33324b212f856d7775fcd5513db75c70370 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/HiddeFok
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
wheels.yml@4efcd33324b212f856d7775fcd5513db75c70370 -
Trigger Event:
push
-
Statement type: