High-performance fixed-effects solver for econometric panel data
Project description
within
within provides high-performance solvers for projecting out high-dimensional fixed effects from regression problems.
By the Frisch-Waugh-Lovell theorem, estimating a regression of the form y = Xβ + Dα + ε reduces to a sequence of least-squares projections, one for y and one for each column of X, followed by a cheap regression fit on the resulting residuals. The projection step of solving the normal equations D'Dx = D'z is the computational bottleneck, which is the problem within is designed to solve.
within's solvers are tailored to the structure of fixed effects problems, which can be represented as a graph (as first noted by Correia, 2016). Concretely, within uses iterative methods (preconditioned CG, right-preconditioned GMRES) with domain decomposition (Schwarz) preconditioners, backed by approximate Cholesky local solvers (Gao et al, 2025).
Installation
You can install Python bindings from PyPi by running
pip install within_py
Python Quickstart
within's main user-facing function is solve. Provide a 2-D uint32 array of category codes (one column per fixed-effect factor) and a response vector y. The solver finds x in the normal equations D'D x = D'y, where D is the sparse categorical design matrix.
from within import solve, solve_batch
import numpy as np
np.random.seed(1)
n = 100_000
fe = np.asfortranarray(np.column_stack([
np.random.randint(0, 500, n).astype(np.uint32),
np.random.randint(0, 200, n).astype(np.uint32),
]))
y = np.random.randn(n)
result = solve(fe, y) # Schwarz-preconditioned CG
result = solve(fe, y, weights=np.ones(n)) # weighted solve
FWL regression example
beta_true = np.array([1.0, -2.0, 0.5])
X = np.random.randn(n, 3)
y = X @ beta_true + np.random.randn(n)
result = solve_batch(fe, np.column_stack([y, X]))
y_tilde, X_tilde = result.demeaned[:, 0], result.demeaned[:, 1:]
beta_hat = np.linalg.lstsq(X_tilde, y_tilde, rcond=None)[0]
print(np.round(beta_hat, 4)) # [ 0.9982 -2.006 0.5005]
Python API
High-level functions
| Function | Description |
|---|---|
solve(categories, y, config?, weights?, preconditioner?) |
Solve a single right-hand side. Returns SolveResult. |
solve_batch(categories, Y, config?, weights?, preconditioner?) |
Solve multiple RHS vectors in parallel. Y has shape (n_obs, k). Returns BatchSolveResult. |
categories is a 2-D uint32 array of shape (n_obs, n_factors). A UserWarning is emitted when a C-contiguous array is passed — use np.asfortranarray(categories) for best performance.
Persistent solver
For repeated solves with the same design matrix, Solver builds the preconditioner once and reuses it.
from within import Solver
solver = Solver(fe)
r = solver.solve(y) # reuses preconditioner
r = solver.solve_batch(np.column_stack([y, X]))
precond = solver.preconditioner() # picklable
solver2 = Solver(fe, preconditioner=precond) # skip re-factorization
| Property / Method | Description |
|---|---|
Solver(categories, config?, weights?, preconditioner?) |
Build solver. Factorizes the preconditioner at construction. |
.solve(y) |
Solve a single RHS. Returns SolveResult. |
.solve_batch(Y) |
Solve multiple RHS columns in parallel. Returns BatchSolveResult. |
.preconditioner() |
Return the built FePreconditioner (picklable), or None. |
Solver configuration
| Class | Description |
|---|---|
CG(tol=1e-8, maxiter=1000, operator=Implicit) |
Conjugate gradient on the normal equations. Default solver. |
GMRES(tol=1e-8, maxiter=1000, restart=30, operator=Implicit) |
Right-preconditioned GMRES. |
Preconditioners
| Class | Description |
|---|---|
AdditiveSchwarz(local_solver?) |
Additive one-level Schwarz. Works with CG and GMRES. |
MultiplicativeSchwarz(local_solver?) |
Multiplicative one-level Schwarz. GMRES only. |
Preconditioner.Off |
Disable preconditioning. |
Pass None (the default) to use additive Schwarz with the default local solver.
Local solver configuration (advanced)
| Class | Description |
|---|---|
SchurComplement(approx_chol?, approx_schur?, dense_threshold=24) |
Schur complement reduction with approximate Cholesky on the reduced system. Default local solver. |
FullSddm(approx_chol?) |
Full bipartite SDDM factorized via approximate Cholesky. |
ApproxCholConfig(seed=0, split=1) |
Approximate Cholesky parameters. |
ApproxSchurConfig(seed=0, split=1) |
Approximate Schur complement sampling parameters. |
Result types
SolveResult: x (coefficients), demeaned (residuals), converged, iterations, residual, time_total, time_setup, time_solve.
BatchSolveResult: Same fields, with converged, iterations, residual, and time_solve as lists (one entry per RHS).
Rust API
use ndarray::Array2;
use within::{solve, SolverParams, KrylovMethod, Preconditioner, LocalSolverConfig};
let categories = /* Array2<u32> of shape (n_obs, n_factors) */;
let y: &[f64] = /* response vector */;
// Default: CG + additive Schwarz
let r = solve(categories.view(), &y, None, &SolverParams::default(), None)?;
assert!(r.converged);
// GMRES + multiplicative Schwarz
let params = SolverParams {
krylov: KrylovMethod::Gmres { restart: 30 },
..SolverParams::default()
};
let precond = Preconditioner::Multiplicative(LocalSolverConfig::default());
let r = solve(categories.view(), &y, None, ¶ms, Some(&precond))?;
Persistent solver — build once, solve many:
use within::Solver;
let solver = Solver::new(categories.view(), None, &SolverParams::default(), None)?;
let r1 = solver.solve(&y)?;
let r2 = solver.solve(&another_y)?; // reuses preconditioner
| Type | Variants / Fields |
|---|---|
SolverParams |
krylov: KrylovMethod, operator: OperatorRepr, tol: f64, maxiter: usize |
KrylovMethod |
Cg (default), Gmres { restart } |
OperatorRepr |
Implicit (default, matrix-free D'WD), Explicit (CSR Gramian) |
Preconditioner |
Additive(LocalSolverConfig), Multiplicative(LocalSolverConfig) |
LocalSolverConfig |
SchurComplement { approx_chol, approx_schur, dense_threshold }, FullSddm { approx_chol } |
Lower-level types
The crate exposes its internals for advanced use:
| Module | Key types |
|---|---|
observation |
FactorMajorStore, ArrayStore, ObservationStore trait |
domain |
WeightedDesign, FixedEffectsDesign, Subdomain |
operator |
Gramian (CSR), GramianOperator (implicit), DesignOperator, build_schwarz, FeSchwarz |
solver |
Solver<S: ObservationStore> — generic persistent solver |
Feature flags
| Feature | Default | Effect |
|---|---|---|
ndarray |
yes | Enables from_array constructors for ndarray::ArrayView2 interop. |
Project structure
crates/
schwarz-precond/ Generic domain decomposition library (traits, solvers, Schwarz preconditioners)
within/ Core fixed-effects solver (observation stores, domains, operators, orchestration)
within-py/ PyO3 bridge (cdylib → within._within)
python/within/ Python package re-exporting the Rust extension
benchmarks/ Python benchmark framework
Development
Uses pixi as the task runner.
pixi run develop # Build Rust extension (release mode)
pixi run test # Rebuild + pytest
cargo test --workspace # Rust tests only
cargo bench -p within # Criterion benchmarks
pixi run bench run all # Python benchmarks
Rust changes require rebuilding before running Python code (pixi run develop).
License
MIT
References
- Correia, Sergio. "A feasible estimator for linear models with multi-way fixed effects." Preprint at http://scorreia.com/research/hdfe.pdf (2016).
- Gao, Y., Kyng, R. & Spielman, D. A. (2025). AC(k): Robust Solution of Laplacian Equations by Randomized Approximate Cholesky Factorization. SIAM Journal on Scientific Computing.
- Toselli & Widlund (2005). Domain Decomposition Methods — Algorithms and Theory. Springer.
- Xu, J. (1992). Iterative Methods by Space Decomposition and Subspace Correction. SIAM Review, 34(4), 581--613.
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 within_py-0.1.0.tar.gz.
File metadata
- Download URL: within_py-0.1.0.tar.gz
- Upload date:
- Size: 183.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc289c29f61ae182b614cbcd940884b66ceac6f90a357fd84fd8e2cb1d5cbb94
|
|
| MD5 |
83681f3ee83c10c9ef15c7660c4a5c43
|
|
| BLAKE2b-256 |
30c942c9e8ef7ac05473117fb572c4bbe4a154271b5eced0a6b32bd2a134cb75
|
Provenance
The following attestation bundles were made for within_py-0.1.0.tar.gz:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0.tar.gz -
Subject digest:
cc289c29f61ae182b614cbcd940884b66ceac6f90a357fd84fd8e2cb1d5cbb94 - Sigstore transparency entry: 1117416588
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
22b05d8b5770d4295f23793ec32141838a6c84345c9869b25a6da6ee5ff40456
|
|
| MD5 |
6c07e9235afb391bd5c91d13783b6a1a
|
|
| BLAKE2b-256 |
8f56978d1ca4ded42a51b04f12831c28f1547c469214f544008490c12571e8a2
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
22b05d8b5770d4295f23793ec32141838a6c84345c9869b25a6da6ee5ff40456 - Sigstore transparency entry: 1117425488
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c2dd2d0a12981d4a21546fc8274f149fcbd88ff424d39e7cf8dbfc9057270db
|
|
| MD5 |
9e9bd0c73c471e4e2d029e0c35b0b6fa
|
|
| BLAKE2b-256 |
9d69afa18f930bb8e4a831df6770b0566444e61ecf6b74e9c6bf83ff98568dad
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
5c2dd2d0a12981d4a21546fc8274f149fcbd88ff424d39e7cf8dbfc9057270db - Sigstore transparency entry: 1117418115
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2534b6e8ad8ed9b91c61cbc2b754f993c014e74e31fd6de02ce20d3922e5ba0e
|
|
| MD5 |
4ab6bf154699f39288e6ff9c91ae631b
|
|
| BLAKE2b-256 |
daa087fb594c8d30f939c2b9c50eb46c8fdc12ca8411d87e414c02cb1bb3e667
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
2534b6e8ad8ed9b91c61cbc2b754f993c014e74e31fd6de02ce20d3922e5ba0e - Sigstore transparency entry: 1117424693
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
674c167b2a81e7d1828fdb6d776936a0260e6e46c32ecf4916962ad0c68c2fce
|
|
| MD5 |
b9bc7bfab41503b2ce92bbf5a1000285
|
|
| BLAKE2b-256 |
ae2ab86aac760697de5c3cbdfbb925a5323c76baa6b81668524e7c676a3c068b
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
674c167b2a81e7d1828fdb6d776936a0260e6e46c32ecf4916962ad0c68c2fce - Sigstore transparency entry: 1117417961
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dec0b1ca3fc628dfab4f4be62a5f08ee3b55f6e5458b9c9df4acc088774c9fb1
|
|
| MD5 |
111d5f5b4915cff587a8ccc80cba12a1
|
|
| BLAKE2b-256 |
0fd722073bbe4799ae7d345ed07df4588b3e5045bb5bce5543621069a6736588
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
dec0b1ca3fc628dfab4f4be62a5f08ee3b55f6e5458b9c9df4acc088774c9fb1 - Sigstore transparency entry: 1117417254
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 866.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad949e7d433ff67d749625fd9fcf047b990262a2700fd175fd6cc7c3e6015f32
|
|
| MD5 |
d78117048d6cb8eb18acb6271df11d34
|
|
| BLAKE2b-256 |
6ec31880763b3fda85f117efe82d2e0220140b145915ddc41ddb44019b79cbf6
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
ad949e7d433ff67d749625fd9fcf047b990262a2700fd175fd6cc7c3e6015f32 - Sigstore transparency entry: 1117421739
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 893.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49876f5330e22fc18a6fa6a2417a2f70524996b3740e7074c1a10c5233261c24
|
|
| MD5 |
12598a0622458320abaf9cac94ac3dd3
|
|
| BLAKE2b-256 |
aac24ce0fb8e1562acb3c776943c7e1df53b1fac551ddbfc168152cbfaed76d2
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
49876f5330e22fc18a6fa6a2417a2f70524996b3740e7074c1a10c5233261c24 - Sigstore transparency entry: 1117418729
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 927.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5976e6c5a04d58868cb99934950e32bff64e9b0fc5ff3877b0de86b6199a0c71
|
|
| MD5 |
fdd30e95e57105ed93dd8b85fbaa56db
|
|
| BLAKE2b-256 |
cbf661ce8208880c55d644e2abf48649bc20fe258159c9b05f623a8f1ae2f411
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
5976e6c5a04d58868cb99934950e32bff64e9b0fc5ff3877b0de86b6199a0c71 - Sigstore transparency entry: 1117417857
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 755.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
634a510890cbf3b2be359b9dbee57ccc4c0254e070d6eb796df4d1301bdd79fc
|
|
| MD5 |
8df042e546db8404a509a72c84edd912
|
|
| BLAKE2b-256 |
4f3059d4118efcb527291e668ea8c170d824e94deac14b0756b33dc137bf95a2
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
634a510890cbf3b2be359b9dbee57ccc4c0254e070d6eb796df4d1301bdd79fc - Sigstore transparency entry: 1117417104
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 855.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ce0907f560c4bd8e390b06a82473781d81cacae12b8cc20b2a743ab83ac8832
|
|
| MD5 |
2d88b25c7b77fd4eb1adec59789a7aad
|
|
| BLAKE2b-256 |
854e2be35ab14138f4f18151712c58331365a8b484679e70c8086911224db9ec
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
8ce0907f560c4bd8e390b06a82473781d81cacae12b8cc20b2a743ab83ac8832 - Sigstore transparency entry: 1117425236
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cea5bf3fa01ece73a50cbdf754d8d5be8c1418bdfb7d44f1598db2970f2504a
|
|
| MD5 |
0cab15736f1b04a07df672265904ae36
|
|
| BLAKE2b-256 |
261904b6d2dc0e60cda2aaf5fe0e0ea96728eb8a8ecd4d3106a2c787a33d23ea
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
3cea5bf3fa01ece73a50cbdf754d8d5be8c1418bdfb7d44f1598db2970f2504a - Sigstore transparency entry: 1117425150
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1226929ccb5e2254ed434cd410c10ade70da47a9644463514b2dd49d9774f38
|
|
| MD5 |
8a94c1104666237ab8030da166cb160c
|
|
| BLAKE2b-256 |
82e2be6a366c364c3779684148d76dda2f457716d82d607b1a387a8f588a91a0
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl -
Subject digest:
d1226929ccb5e2254ed434cd410c10ade70da47a9644463514b2dd49d9774f38 - Sigstore transparency entry: 1117423321
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baa080363385e52933c0e26da777947340c3a51b4136bf59c1fa9639313000a8
|
|
| MD5 |
1c3848c1865efebe6feee41eaeb1abe0
|
|
| BLAKE2b-256 |
2b8165b15c2c81f9e04a9878bff365e63da1dbd346eddf90f9cbaa753c4c8259
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
baa080363385e52933c0e26da777947340c3a51b4136bf59c1fa9639313000a8 - Sigstore transparency entry: 1117421589
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ff1dac2cc4a3f4a5c740655793aa2383ec7edbb766c037387098b17105071b1
|
|
| MD5 |
ff82970d957ab39ed63da20865e2dfa2
|
|
| BLAKE2b-256 |
fb66e5309e31334a07a26c967cdd57bbe3ca175122793dd8dd02a4a491da1d6e
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
7ff1dac2cc4a3f4a5c740655793aa2383ec7edbb766c037387098b17105071b1 - Sigstore transparency entry: 1117424507
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 866.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1757534922fc087e1196a57c7aade4f0b767dc8349014d3b32846c953b59990f
|
|
| MD5 |
7fbaf178f577420ea445b155088f58ad
|
|
| BLAKE2b-256 |
b5bd3491a6219b4abbc8509a92cf3447c4e3082a50332547435c311ea527cef2
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
1757534922fc087e1196a57c7aade4f0b767dc8349014d3b32846c953b59990f - Sigstore transparency entry: 1117417641
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 893.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89dec47e4346d02f43ba422ebe261e473c1cf067c1b141a1344644ef894b4a30
|
|
| MD5 |
28c99ae9efa828a4c0a252dc6cfe45e3
|
|
| BLAKE2b-256 |
8bdbccdfe317b1c0e72f6098186008dd29e7f9be220015b18f7050cc145ae47b
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
89dec47e4346d02f43ba422ebe261e473c1cf067c1b141a1344644ef894b4a30 - Sigstore transparency entry: 1117417889
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 756.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d08c68239bdca2ecffbaf398e9273aa4fe43ee3fc080d259b8b108afe322486c
|
|
| MD5 |
1ee566a03590dd083e750037d027fac8
|
|
| BLAKE2b-256 |
56bc2ac6ac5f486f24525528e56edcb99f23acc98dfe0141f31d4578b6e5f3cd
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
d08c68239bdca2ecffbaf398e9273aa4fe43ee3fc080d259b8b108afe322486c - Sigstore transparency entry: 1117422082
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 855.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28c0bc3abcd817b1fbaf3a1e4c8a0c209d358a72c1141daaccf873d55df7508e
|
|
| MD5 |
6eea9edce4a08f0ed788ecc98f8bc958
|
|
| BLAKE2b-256 |
866a16de4cfba727941485ac60b421cb18f079a9d33c644a34919df838813ec7
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
28c0bc3abcd817b1fbaf3a1e4c8a0c209d358a72c1141daaccf873d55df7508e - Sigstore transparency entry: 1117424772
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff2eca464ca92dcff436a58037b6b80682092e76857617810efcf8f2d61eb910
|
|
| MD5 |
8dd01ba7ebc9fab9f73fe100262207c3
|
|
| BLAKE2b-256 |
c8c7fdd3bc14d6f060e6f38623efd40f7c8c208b0157a629fed4c28cf5a058f8
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
ff2eca464ca92dcff436a58037b6b80682092e76857617810efcf8f2d61eb910 - Sigstore transparency entry: 1117425214
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dbd9c9a26d7f6775a517a92ef50704bc20a66eb2e668538f35e2e146af89cfa
|
|
| MD5 |
aa1f102b836d2ac4abcb0b64a79677d3
|
|
| BLAKE2b-256 |
0dab5fbc8ffaa566c5171567da9f7c02a53bbb41566d195717f67fc61853874a
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl -
Subject digest:
7dbd9c9a26d7f6775a517a92ef50704bc20a66eb2e668538f35e2e146af89cfa - Sigstore transparency entry: 1117419479
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ae44f5c78aca101b3fae0f1fc8ac037afcb031495274c403dc7c0684d33ba49
|
|
| MD5 |
27b66189016d7cc766711592d28c74e5
|
|
| BLAKE2b-256 |
5de11491937218fe3524055237cd81c9dc9b4b5549a3be23c396e766c34141e8
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
8ae44f5c78aca101b3fae0f1fc8ac037afcb031495274c403dc7c0684d33ba49 - Sigstore transparency entry: 1117421005
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c8fafa0ca675f9cdd4aed9171e43c45599b4da7f00bd4ca0f5ca1a65a4c8f29
|
|
| MD5 |
6bbb0b0f0a3fc6e553b699f12c15a751
|
|
| BLAKE2b-256 |
847d4d1eeaeb92d6e44858eb8c731f9050e52d0c93ddea241a85a5fa4c293842
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
2c8fafa0ca675f9cdd4aed9171e43c45599b4da7f00bd4ca0f5ca1a65a4c8f29 - Sigstore transparency entry: 1117418029
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 867.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aafc94bbad565ac717b5e3cc5e6602aebd82cf71551fd2b459c65255d5817d4d
|
|
| MD5 |
7e7d4a8789abcf43caaa68ad9f2bb28c
|
|
| BLAKE2b-256 |
f256dfa278cf9194ea8c40a232734db223369a376ea62cf88c3a6e2559e6441c
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
aafc94bbad565ac717b5e3cc5e6602aebd82cf71551fd2b459c65255d5817d4d - Sigstore transparency entry: 1117417053
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 893.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
043cf7b4ace7200d75e05d6403b6248115c0805f0731939e3ece0ae2d5ed4cab
|
|
| MD5 |
2b4710f4870e8e278e4d5c8c1a374e7b
|
|
| BLAKE2b-256 |
e6cbff4111180cca49678d8ecf12a018d1ed4c5ada720ab899801d8d5b55984e
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
043cf7b4ace7200d75e05d6403b6248115c0805f0731939e3ece0ae2d5ed4cab - Sigstore transparency entry: 1117418066
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 756.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc2c25e8c7823a1bc1a21302feac7b89490ad3868d526c7f9f90679d2c580c13
|
|
| MD5 |
bea28d74e8a2bed41af664bdb563598f
|
|
| BLAKE2b-256 |
71c909a0d69957bf117a6daca3f53512333aff347e8c0bdcf150ac9cdfb9d8e7
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
dc2c25e8c7823a1bc1a21302feac7b89490ad3868d526c7f9f90679d2c580c13 - Sigstore transparency entry: 1117425121
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 856.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e88a20d595421351cfe25c0f03a545b14c926c6ed62283a16cf579eb452ecc6
|
|
| MD5 |
edcaa80aa1c32274b0c5a27e7d887c32
|
|
| BLAKE2b-256 |
b4fc0b5bf9d4d6ff5316a1175dd2b1648d977a967030887ef0e9b378f5b73c2f
|
Provenance
The following attestation bundles were made for within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
5e88a20d595421351cfe25c0f03a545b14c926c6ed62283a16cf579eb452ecc6 - Sigstore transparency entry: 1117425325
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e1ca5eacaf36bab7c91cfeac8e328743b9e6af97ba6049c3f2839ed937b6b90
|
|
| MD5 |
9fe3f6df7b226767f51383262b9116ca
|
|
| BLAKE2b-256 |
f7e140662748e39fabe85a8edc68f3a0340f3a43f0e62922f41a00977b5450d3
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
9e1ca5eacaf36bab7c91cfeac8e328743b9e6af97ba6049c3f2839ed937b6b90 - Sigstore transparency entry: 1117416691
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d85620b459376b8ce5f6bc1de0fed26c01126b7afd5c48b7c7353c5c5c266a3f
|
|
| MD5 |
fd88ede7ee0e25a251acb1f48aa3a2f6
|
|
| BLAKE2b-256 |
89548135634f5a67b875c1ddca595690a04a049df77d88a6b40d4ae4049454e8
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
d85620b459376b8ce5f6bc1de0fed26c01126b7afd5c48b7c7353c5c5c266a3f - Sigstore transparency entry: 1117418092
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc0cc912f9f56f2a9b5e97079b8488edaea4f7ac559f1d1a37eb910c9a844134
|
|
| MD5 |
a4ff52ca1aa3a02b66b4d90f506e7a18
|
|
| BLAKE2b-256 |
e97220d4384ccce214a4facbf4ef813663b2c82be808c7bde64aca02bd5df6ca
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
dc0cc912f9f56f2a9b5e97079b8488edaea4f7ac559f1d1a37eb910c9a844134 - Sigstore transparency entry: 1117419367
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a992aeba0fabc365d8f2416f1f115814992f1c8504b3ca6928cb1be42089e24e
|
|
| MD5 |
f88a7c29a369bdc589ef953cd8595f35
|
|
| BLAKE2b-256 |
afeea1dcedebc4fa69b007f88c680b68d5a77e0c6e9d93e068e382d846636b77
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
a992aeba0fabc365d8f2416f1f115814992f1c8504b3ca6928cb1be42089e24e - Sigstore transparency entry: 1117421261
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 865.5 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74c37f206427a549f2f752a79b2d960d1950642eaf2a3d949b4a5ed93ae016e0
|
|
| MD5 |
c9484b35f4bd536aa05dafb7fc4a87f1
|
|
| BLAKE2b-256 |
560248b2a86fe74d2100acf9be3987008b46274dd49418782335f6b429689007
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
74c37f206427a549f2f752a79b2d960d1950642eaf2a3d949b4a5ed93ae016e0 - Sigstore transparency entry: 1117422514
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 890.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a62464c108a9697034d90f61f178242672703cd69678aeb0a1e9ca87955a5424
|
|
| MD5 |
4b54f980cb2cf0c95aa982f4e72e6ad5
|
|
| BLAKE2b-256 |
89e781bcea8bbbad226fc4d2dcb7240425d52640d14c17a19ae434d06e54e237
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
a62464c108a9697034d90f61f178242672703cd69678aeb0a1e9ca87955a5424 - Sigstore transparency entry: 1117425304
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 753.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dcb56b13cad2dcaf53e1d4a2ed86838a1ecc4008de329737203210da565e925
|
|
| MD5 |
c0f8be7f8b494878676d1b5faa9880dc
|
|
| BLAKE2b-256 |
3aa55ca9be11ee8acb64177f80dc66171188488dd04c0fb390b692736aa85221
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
9dcb56b13cad2dcaf53e1d4a2ed86838a1ecc4008de329737203210da565e925 - Sigstore transparency entry: 1117422997
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 852.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56045a1fcefa72128f9639d053cf89751c4cad602a847ec5a6ea5851d3604c31
|
|
| MD5 |
43aed2f801b40bb5905e139e16de1edd
|
|
| BLAKE2b-256 |
5718389b842235533c522c1c26635bc1f790bdcd95a69c2951a0b52de4cd764f
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
56045a1fcefa72128f9639d053cf89751c4cad602a847ec5a6ea5851d3604c31 - Sigstore transparency entry: 1117418682
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 681.7 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88485f369349535685ca4a4ff3ae3972c299c086769c45f06ed459fe0d77b4b8
|
|
| MD5 |
e7ab4dd315801c48e34c51baa1b4fb32
|
|
| BLAKE2b-256 |
15c7208a79d613e793497afe52d4cf94a15003d335d245b2389d90591df97ded
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-win_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-win_arm64.whl -
Subject digest:
88485f369349535685ca4a4ff3ae3972c299c086769c45f06ed459fe0d77b4b8 - Sigstore transparency entry: 1117424566
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62f02622b144572bdc7f0cf110314b37db1fbde986df07c54ed0035613c058cf
|
|
| MD5 |
580464c717186d1a71150f9886705d1a
|
|
| BLAKE2b-256 |
82dd2924c642cfa03b73d02990cc3cd43efe7698867f17d6547519e4be60d0d4
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-win_amd64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
62f02622b144572bdc7f0cf110314b37db1fbde986df07c54ed0035613c058cf - Sigstore transparency entry: 1117417822
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a23873eef9c4bd8091746ed31ae6c0fa3070aa894bb71ee99c2baed067f48e1
|
|
| MD5 |
61af5f333d9ee693aa1bbb0c4d4895a5
|
|
| BLAKE2b-256 |
90428688a8e03989c263a7bb90d8ea09206ddf147acbde32a64bde5e931178c7
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
8a23873eef9c4bd8091746ed31ae6c0fa3070aa894bb71ee99c2baed067f48e1 - Sigstore transparency entry: 1117416749
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdda127ee79c582cd4949e440c32d0344d5abcd7a86d12f8f367d59d5b09c51e
|
|
| MD5 |
d44c7f9571463347e418927080691401
|
|
| BLAKE2b-256 |
b7624b82a148d06fe34671cddcf9111621c90e23f6b6fdea51aa3f902f46dd17
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
cdda127ee79c582cd4949e440c32d0344d5abcd7a86d12f8f367d59d5b09c51e - Sigstore transparency entry: 1117420232
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf96795211c380c7d56630ae9b6f5e367a845372c48d64110a0f7a1cc26225ef
|
|
| MD5 |
519002ace255d491231bbcaa012403f4
|
|
| BLAKE2b-256 |
e50fa108640a975deebdd160209bca891f6c27bd92c8db1f57cf6210e87ab2ca
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
cf96795211c380c7d56630ae9b6f5e367a845372c48d64110a0f7a1cc26225ef - Sigstore transparency entry: 1117423191
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5c4bf6fa0b952eeb47605b6ffb4e28da09a097575e393262f69694a987dfd0e
|
|
| MD5 |
e8845938584dcc8bed3efb1d16539ccd
|
|
| BLAKE2b-256 |
86dd45c58ff913966aabae85cf3f218a8b8d5b6cf39cf043df47fe166f0f7c3c
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
a5c4bf6fa0b952eeb47605b6ffb4e28da09a097575e393262f69694a987dfd0e - Sigstore transparency entry: 1117417144
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
289180bc4ca42ffe90cda1cc376345da8015d16c8c63836833fa63a9f7632abd
|
|
| MD5 |
36402406424e31dfd4cf0f05913fce09
|
|
| BLAKE2b-256 |
7d4e50aee59667085164f4f1c21125fb081fa2e8f72c2b97180c29c5b2a6e3e1
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
289180bc4ca42ffe90cda1cc376345da8015d16c8c63836833fa63a9f7632abd - Sigstore transparency entry: 1117419252
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 868.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0718dff61d71239c0fbd7d61a822dd96788eb88145096508fb17b93b681ea0b6
|
|
| MD5 |
6569255109eae9ff9eb374669a1608ea
|
|
| BLAKE2b-256 |
ef8a58cf764ff2813d2ab3b78552c364ce56adf3de0d5c497d33ac33d6a64d77
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
0718dff61d71239c0fbd7d61a822dd96788eb88145096508fb17b93b681ea0b6 - Sigstore transparency entry: 1117422335
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 893.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e287f0a43785b1d06fd31454cf4ac4af8e22dcc5b70e3523cc41b5973c3d7458
|
|
| MD5 |
1f44b352bc80fb9526a576c14ed17afc
|
|
| BLAKE2b-256 |
ef5e1b8b6dff65e21fbbacbe7fe34a2dbf62255c47f3378301dbccc2e2ac034d
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
e287f0a43785b1d06fd31454cf4ac4af8e22dcc5b70e3523cc41b5973c3d7458 - Sigstore transparency entry: 1117424826
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 928.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32741f64919a12f81b319888a1edfcd8328025b27b800e108b615500531f8fff
|
|
| MD5 |
8b9b61e5f9763314f0db5d19d91a1b78
|
|
| BLAKE2b-256 |
076b9dee8dc8acff894e43a9f9804fac71756becbd3d7a44882268833fb0eb68
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
32741f64919a12f81b319888a1edfcd8328025b27b800e108b615500531f8fff - Sigstore transparency entry: 1117424614
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 756.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e65d0b806c783e14f9bc2cdd24d32352565546a54a269ad1dd866153f3523e7
|
|
| MD5 |
f6d4c0e63538d5dffc8461e6ea5ea1fd
|
|
| BLAKE2b-256 |
02b487fbcdd5ff9873cd61989243d2c28928187f6220ea0e53c45e59c8560316
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
8e65d0b806c783e14f9bc2cdd24d32352565546a54a269ad1dd866153f3523e7 - Sigstore transparency entry: 1117425178
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 855.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c1eff08b3d9a524a258d03d84c70f34b003d35ca98f402b55cb01300de66816
|
|
| MD5 |
013143fd2092bd08831632c511d23c08
|
|
| BLAKE2b-256 |
9b3b83ee760fa4c4f438eddb350bbd28f7a137246f78cbd4b427959a3560b095
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
5c1eff08b3d9a524a258d03d84c70f34b003d35ca98f402b55cb01300de66816 - Sigstore transparency entry: 1117419899
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 769.7 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d54a913571b8633efc2d9d223e24e427460b35fa3737eafe7469b1abe088f694
|
|
| MD5 |
2643d581beb3910cb5e311fa79fc02d1
|
|
| BLAKE2b-256 |
f6d5d2316f14d9b3b754f5c67375657aa8070c3998c735bf560ffad978d7ad41
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
d54a913571b8633efc2d9d223e24e427460b35fa3737eafe7469b1abe088f694 - Sigstore transparency entry: 1117425398
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5891f07f1ce140931019cd66ee61f3bde91e52e4ce69cde74a4fa8207baba52
|
|
| MD5 |
52f3fd6d21869687bccb594538cd7b7f
|
|
| BLAKE2b-256 |
3dfa80c540d9623c705bd516f36227ca7c1d9d1a62a77ad3825b7be1d8133e62
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
a5891f07f1ce140931019cd66ee61f3bde91e52e4ce69cde74a4fa8207baba52 - Sigstore transparency entry: 1117424250
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87dec3914a48803fcb46ec684b3794c5bba1595650e12937f0e32390df86a0e2
|
|
| MD5 |
40a0a2c9e6f028b088dab56b86cbadee
|
|
| BLAKE2b-256 |
d54c2b22ee87446da0c463a21453afa36a44cbed544d71479449d1eef3f7c9b4
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
87dec3914a48803fcb46ec684b3794c5bba1595650e12937f0e32390df86a0e2 - Sigstore transparency entry: 1117418360
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a936ffff88e9bfa4e1dd263b373f77c932d5ac4aa468337c1fcecac9f59b77f
|
|
| MD5 |
72938f6927cb7256044583b8dc52c4ad
|
|
| BLAKE2b-256 |
8759f59dea84c2b05e9dd28b211108fcfd09bf3d55da89ac2d51a679000a859a
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
7a936ffff88e9bfa4e1dd263b373f77c932d5ac4aa468337c1fcecac9f59b77f - Sigstore transparency entry: 1117417362
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1010910b110a54c480c90e65eb7b7c8e43082a25091ef55d4179a6158c64ebc6
|
|
| MD5 |
0215c50122d3646ffe3134d4292e214a
|
|
| BLAKE2b-256 |
1314a512b289de74c7c85f781f35fb9fb42c4ddcf1e3e67f5a80e086682919c7
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
1010910b110a54c480c90e65eb7b7c8e43082a25091ef55d4179a6158c64ebc6 - Sigstore transparency entry: 1117418158
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 865.2 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b11500c62ca768231ac8879bdd1026f1e902f5000b4481a558965d4fbb95303
|
|
| MD5 |
4a202ea6327c73333ed8dd52a7cef077
|
|
| BLAKE2b-256 |
0896e7cd49a8021ea51f6af8baab397a946af3ef1a984d9def9df0c571b01113
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
6b11500c62ca768231ac8879bdd1026f1e902f5000b4481a558965d4fbb95303 - Sigstore transparency entry: 1117421476
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 890.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cedc5dc55dd410d63b20c6f4cecaba9ad466b1c029a226b0c24dff687199bfca
|
|
| MD5 |
d60c35d9f506689795682770e06edcba
|
|
| BLAKE2b-256 |
d27046eee6b1818533c6c3d73c1439df738560a26f833d0db33dd3028b828593
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
cedc5dc55dd410d63b20c6f4cecaba9ad466b1c029a226b0c24dff687199bfca - Sigstore transparency entry: 1117417742
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 753.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f56b984812c0e2e936c2dd1623d1269cdfcbc7f78b10a4d84ec3c357a2dcd4ea
|
|
| MD5 |
7986bba2f3e79bda2f11482c0173562b
|
|
| BLAKE2b-256 |
272e502206e26080b01b4df8251e07f72dc2e94e48616e8f1681ec9c649cc923
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
f56b984812c0e2e936c2dd1623d1269cdfcbc7f78b10a4d84ec3c357a2dcd4ea - Sigstore transparency entry: 1117418610
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 852.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e98da21e4cdd4a2daeb134cb634b0a023358c173e9b76d57ce3dc5f1cf5e998
|
|
| MD5 |
70439cf2767e6a325803e65dc27bff92
|
|
| BLAKE2b-256 |
72e620073f7c467fbfd88a3a694675293bccd35a467f59df1ed05be1812250cc
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
1e98da21e4cdd4a2daeb134cb634b0a023358c173e9b76d57ce3dc5f1cf5e998 - Sigstore transparency entry: 1117420420
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 681.3 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
384e2f8f5bffa8f78e574ec0a9a4b26afe958182bd6b9588c3c69ddc06e9e69a
|
|
| MD5 |
ce189d88640e013de6e7325b5540fa86
|
|
| BLAKE2b-256 |
dc212df4a692c1d6efd295290ffd947fc82ece63ba1d5132a3626773f16633a8
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-win_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-win_arm64.whl -
Subject digest:
384e2f8f5bffa8f78e574ec0a9a4b26afe958182bd6b9588c3c69ddc06e9e69a - Sigstore transparency entry: 1117425509
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d15fe8113b3c8e18ce6b57953b9fbfe8cf4bc447fa14bcb4093b6335f9e1c0b3
|
|
| MD5 |
d21fc2e448b9e37922fb4b444938c8de
|
|
| BLAKE2b-256 |
a8361f4fa92dfcd7205124193ecb5157388c9c5da40ef92f1430646d3dff9531
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
d15fe8113b3c8e18ce6b57953b9fbfe8cf4bc447fa14bcb4093b6335f9e1c0b3 - Sigstore transparency entry: 1117418429
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 654.6 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dcb02b20037483a4af6a5b0fd74d2e38b2faba0b3d121359b6582884b902193
|
|
| MD5 |
c97a31d0151668103fb478fcead43468
|
|
| BLAKE2b-256 |
e639806768a7dbab621524073ff3b31229b29fdf6a76e6cac4962b40fd980c8c
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-win32.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-win32.whl -
Subject digest:
8dcb02b20037483a4af6a5b0fd74d2e38b2faba0b3d121359b6582884b902193 - Sigstore transparency entry: 1117425528
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81d71ed20743a488fca0a9c0fba3d3587a21768b8475e1abddd158c75e450eea
|
|
| MD5 |
a0f2beaffff5c679c3c4b851f3175adb
|
|
| BLAKE2b-256 |
693ba472136c43aee5b238488c7dd745650c7a4877169809bdbbe9a78978bc73
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
81d71ed20743a488fca0a9c0fba3d3587a21768b8475e1abddd158c75e450eea - Sigstore transparency entry: 1117417927
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63ba888960453543a91f452fb30f62a72fb26a74ed683bc704893347eba214a3
|
|
| MD5 |
a56b85d0e74a8a79eb783e4e498fe3ef
|
|
| BLAKE2b-256 |
0ae1d4b507eabb1b6ff9ea1c96fe9a94ff146345fb389700971f49d4fc26fc0c
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
63ba888960453543a91f452fb30f62a72fb26a74ed683bc704893347eba214a3 - Sigstore transparency entry: 1117424655
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5446fc09f15aa66c5bf90bb72c37ef7ce607f69f573e3d2c189d79364dbbd02e
|
|
| MD5 |
079e022d9142b17aa32980ebd29add52
|
|
| BLAKE2b-256 |
eb578f4a079761f04738fe39846de072a677232a7f64d5e11a89ac7cfc6f6164
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
5446fc09f15aa66c5bf90bb72c37ef7ce607f69f573e3d2c189d79364dbbd02e - Sigstore transparency entry: 1117418489
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a713377ce7addea827239e892cdbe8d84ef3206de2b0fa2aacaa8e0e0757528
|
|
| MD5 |
fea3851ae410d186386653c561acf530
|
|
| BLAKE2b-256 |
30329c6e5262a095b289961292e3362de1938158cf9e1aaac095e9c5e9bb3a6b
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
8a713377ce7addea827239e892cdbe8d84ef3206de2b0fa2aacaa8e0e0757528 - Sigstore transparency entry: 1117424134
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea1331f20843c986a8f394d05a79d418253484feab31de8f0c52e0501787cf98
|
|
| MD5 |
d85bca7f395af416c19b5f1b3a0d9ad0
|
|
| BLAKE2b-256 |
d67c3fa27a3de2f34358652d3482337e4cc16bb8ae67fb70a6ec8b1d54bc5b55
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ea1331f20843c986a8f394d05a79d418253484feab31de8f0c52e0501787cf98 - Sigstore transparency entry: 1117419079
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 867.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5103097f20abf8e2c03a360e88cfd60c4fc22ad5179f59e0d51a5b3cc89c1c
|
|
| MD5 |
d879aab4fbda2c902f9e8c94db71c6e0
|
|
| BLAKE2b-256 |
fe8627700485a6f2c8d4eab39024505ee5fbbd2737231c20033c60b5a3cf6636
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
fd5103097f20abf8e2c03a360e88cfd60c4fc22ad5179f59e0d51a5b3cc89c1c - Sigstore transparency entry: 1117424966
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 892.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8726fc0c4d1d5db9d38feb3da4f1ecea2278f605be53da3f607213c873cd6be8
|
|
| MD5 |
0c563557bb6ee4a2173a446e545e21d3
|
|
| BLAKE2b-256 |
4131e36519f4a4d224f66ca6aa767b21840e83d78ee7c30bb47281114330537a
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
8726fc0c4d1d5db9d38feb3da4f1ecea2278f605be53da3f607213c873cd6be8 - Sigstore transparency entry: 1117425007
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 927.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2938e32ad8acf67b1eae8780369e472cd7f193fe628f7a11048a8e9988336ba0
|
|
| MD5 |
c5c22574b2c7e2e440cac8122a861199
|
|
| BLAKE2b-256 |
653c989250e6dba02597912cda05e6ec049087d71609ddccc9be278de51147e3
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
2938e32ad8acf67b1eae8780369e472cd7f193fe628f7a11048a8e9988336ba0 - Sigstore transparency entry: 1117417207
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 755.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29bf7081877bf9bad8fe8c44b4f0a2a51f8e0d1d598d133487c20492d9dd82a5
|
|
| MD5 |
af9d062cbc637092e972f67c2c4283df
|
|
| BLAKE2b-256 |
f9ab1a971b6a04f306a0d8c164ed2ca8b7d4f0a24f64333cd15d7155febfbe61
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
29bf7081877bf9bad8fe8c44b4f0a2a51f8e0d1d598d133487c20492d9dd82a5 - Sigstore transparency entry: 1117418968
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 855.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee877acbf28c5d6c3f2ecb7a75d7b5efb983d71f53292ab01629785ffee59071
|
|
| MD5 |
34f60add59d0cc7e849bd53b40107b97
|
|
| BLAKE2b-256 |
c1ef5245fc0daa13854e43601937baa44987fa8b882cb897d63f2f8f78393e0f
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ee877acbf28c5d6c3f2ecb7a75d7b5efb983d71f53292ab01629785ffee59071 - Sigstore transparency entry: 1117417325
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 769.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1bf8d0793ed7085ad4334284e20fcd4062300a4ca9bc03438183cdee14aa8d9
|
|
| MD5 |
59a16913b44e4663dd5e1a86116528e8
|
|
| BLAKE2b-256 |
cd8373caca9c33ff8c63d4499cfdefd936ee5dc2b5f7f783ad4348493021f27e
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
a1bf8d0793ed7085ad4334284e20fcd4062300a4ca9bc03438183cdee14aa8d9 - Sigstore transparency entry: 1117421386
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 681.4 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73941d398e551cb0dfae9f8107eed202e8a3f7387ed37cb09e1a67bb24d4631e
|
|
| MD5 |
97ede06cd485ffb6c75a859dabe04359
|
|
| BLAKE2b-256 |
0b5117d431e894df33b4db6120d4f4b0316473141df9d964edff23bae06e336e
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-win_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-win_arm64.whl -
Subject digest:
73941d398e551cb0dfae9f8107eed202e8a3f7387ed37cb09e1a67bb24d4631e - Sigstore transparency entry: 1117416844
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecce72b237b302bd13005c032135a8b9bf564aa20816f411dbf78d360bafe400
|
|
| MD5 |
e13b8ff64f936b441dbcd9c262a91e85
|
|
| BLAKE2b-256 |
6489ab208723d9503b9a1095d58c669299477320fdf19ea70793d10d2bd4a0f0
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
ecce72b237b302bd13005c032135a8b9bf564aa20816f411dbf78d360bafe400 - Sigstore transparency entry: 1117418223
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cdf7865463cda54c2d29597bfe186757337b92a2ee41944195023d329f4bb0e
|
|
| MD5 |
86c2a8883fb6fc24ea0d79bd2a027275
|
|
| BLAKE2b-256 |
d57fcfaad2e150c2e60a0f126f6d8880c7f0b07120617aef606c8285dbe3c2b5
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
1cdf7865463cda54c2d29597bfe186757337b92a2ee41944195023d329f4bb0e - Sigstore transparency entry: 1117424872
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
634c4ea94a25af0217a6b2034b8f8ccda28209d3d6fa07ee5d9ad43a6fb74122
|
|
| MD5 |
0ac1c974ee4b3afa6945f2e8b9c03a8b
|
|
| BLAKE2b-256 |
68e3f6927d855dd41ccd367c758290116dd7446e6719e7caa1b8ad57565b00e8
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
634c4ea94a25af0217a6b2034b8f8ccda28209d3d6fa07ee5d9ad43a6fb74122 - Sigstore transparency entry: 1117417553
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdf1938050c58212651c8643e576d6b7c23d4abd23b1c298a79dd87e0a3677cb
|
|
| MD5 |
95e6d4b7ca8cf15092446e06db24ef4c
|
|
| BLAKE2b-256 |
e888628e2f9897cb001b1367e8429998b56a8e6da9b68192ae60424e49184ec2
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
cdf1938050c58212651c8643e576d6b7c23d4abd23b1c298a79dd87e0a3677cb - Sigstore transparency entry: 1117417470
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1450311a1c52a0e14cd9bf3da119c26ae72aa65e9afaf82048377c2d066ca0f9
|
|
| MD5 |
8d8e25d52c019aa084dfa9851cc71ead
|
|
| BLAKE2b-256 |
adbb536b8854b85e9856ca1375fe02909c74baef4f1ce0643a0ee65a93590703
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
1450311a1c52a0e14cd9bf3da119c26ae72aa65e9afaf82048377c2d066ca0f9 - Sigstore transparency entry: 1117424410
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c1313d993b6ebcbc874e6932f5fd93096a692d903fd5429a66b630379559498
|
|
| MD5 |
e77bb3de76a997abbfeed09a1440e445
|
|
| BLAKE2b-256 |
9aa4a72ca7e7ff77e2734a4d885dd3ba5b4cc9494cd758f95ab33d4d1ff7dedf
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
2c1313d993b6ebcbc874e6932f5fd93096a692d903fd5429a66b630379559498 - Sigstore transparency entry: 1117418572
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 867.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a82722b21169e2775d6e089039d39a7b3e5511fc927a1ab8b099ca0793bc411
|
|
| MD5 |
42a1a7cc43af35dd529b48dc59a08480
|
|
| BLAKE2b-256 |
779a1d18abfd151d16762142bd567002f59fa87b242d59a8ccdff6aef4b7bbb7
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
3a82722b21169e2775d6e089039d39a7b3e5511fc927a1ab8b099ca0793bc411 - Sigstore transparency entry: 1117420829
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 892.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
939fe8c01156fa86a1aa5976efcd4ae6c8b08736e8e0be22e027b878f6366664
|
|
| MD5 |
840e4c8342097123d086b934942d181d
|
|
| BLAKE2b-256 |
bbe773d5aefb0728b69c8f8b948fef15b1cf2eac6b6cc44c4305a179dd66ee2e
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
939fe8c01156fa86a1aa5976efcd4ae6c8b08736e8e0be22e027b878f6366664 - Sigstore transparency entry: 1117416633
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 927.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a001e365a6b1a4ea546aa84eab4a5ed4959a9e2055eeb2eb913d2052e9a62a1
|
|
| MD5 |
89a7f3b95fc41c2c605d7b90b2c68fe8
|
|
| BLAKE2b-256 |
7361cc11dbbeea4972684c7a8e7e8e12071fa2a2a44c580a7ff61b22767d7f8b
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
8a001e365a6b1a4ea546aa84eab4a5ed4959a9e2055eeb2eb913d2052e9a62a1 - Sigstore transparency entry: 1117421156
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 755.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82e713c1e0900bb2a9c1719b388eacee27aa9e32d5581e88004b8afed38999b2
|
|
| MD5 |
573d50e7f163aafb1adfacf1f882675c
|
|
| BLAKE2b-256 |
2e570417274b3a9a238e3a7f5c2b9b1981c2c6546ef40dee658ce22fe226ae86
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
82e713c1e0900bb2a9c1719b388eacee27aa9e32d5581e88004b8afed38999b2 - Sigstore transparency entry: 1117423745
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 855.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9a80f5a1e841e81143cb0031c5c59d825fc9c120eb748e809c94badc6ad62d8
|
|
| MD5 |
c6485764b77bd765c2a3e3bebef8ebee
|
|
| BLAKE2b-256 |
3721cfa4734349dca86b53f3ed19929c1b82119d81e7cda965c89377a7264064
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b9a80f5a1e841e81143cb0031c5c59d825fc9c120eb748e809c94badc6ad62d8 - Sigstore transparency entry: 1117421875
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 769.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e69d6af230b568450cbf876ca3b30151bb6902db5762e68f92274ccca1e2587
|
|
| MD5 |
45e8cd9c71e58c0435aadd5c6133e54a
|
|
| BLAKE2b-256 |
59671d46b200446c8ee201ce0f87a2ce52962ebed9548cdba3dc4f5e19196f29
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
7e69d6af230b568450cbf876ca3b30151bb6902db5762e68f92274ccca1e2587 - Sigstore transparency entry: 1117423563
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86d874de5bc3360e9a19d0802c16687e1e592aeebf9002dc95c7171655a1864d
|
|
| MD5 |
59ed9e2882a5b816ee9e014a148a6dfe
|
|
| BLAKE2b-256 |
adb60b7c29c865ddc4418d184be0b2d6ab936a35b7def13ac4872d4b14043355
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
86d874de5bc3360e9a19d0802c16687e1e592aeebf9002dc95c7171655a1864d - Sigstore transparency entry: 1117420334
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 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.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15da9c15fa9bd26ff8ee15d8127003f0c4e4aec248694dcbdcedb3445a9c3d2d
|
|
| MD5 |
83309ade45d9ec85f5befe7b5db23902
|
|
| BLAKE2b-256 |
d1cd5faf2272da7d2d7f8c250d63d0b7b59045991243ad18515aae2974d229ef
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
15da9c15fa9bd26ff8ee15d8127003f0c4e4aec248694dcbdcedb3445a9c3d2d - Sigstore transparency entry: 1117423927
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9811cf46f673ecb633c343040dddae36650bbc908ebdaa327a0fc90100f6902b
|
|
| MD5 |
e48e0c14ac39dd6a7dd945c6bfc82aee
|
|
| BLAKE2b-256 |
bae3182009320102dd952f3981844219c187bab60e2a786e3bfa72731ded7085
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
9811cf46f673ecb633c343040dddae36650bbc908ebdaa327a0fc90100f6902b - Sigstore transparency entry: 1117423631
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4d2a31a69837bfbea5af3c0d3bfd0708b5588e38d608d484b427b221bf5d8cf
|
|
| MD5 |
4a0ff5215a8cb5cad5a1756600010a65
|
|
| BLAKE2b-256 |
4951bd04f45901276984184b419c7f24899f77e4ee78a61449602652b7436b0a
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
f4d2a31a69837bfbea5af3c0d3bfd0708b5588e38d608d484b427b221bf5d8cf - Sigstore transparency entry: 1117418827
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8132d60d4b5cf061b9e42ab20768d4ce53cac2c6fb7f0acf277b8be699977e8
|
|
| MD5 |
7b67f849ac109bbb99a392de192a581e
|
|
| BLAKE2b-256 |
5570ae8332a5087e510b2d02d42277c60f37d36e60e2e88c01ad354b6465f09e
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
d8132d60d4b5cf061b9e42ab20768d4ce53cac2c6fb7f0acf277b8be699977e8 - Sigstore transparency entry: 1117425420
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cdac44b7c252c4f3cda5736ea1080262014e01089267c4becd4144ecfb69a0c
|
|
| MD5 |
a6be56c03d274ef17b31ea3f8ed6f066
|
|
| BLAKE2b-256 |
d0d86ce719bb19b9a36b3b4d036d8b7b6f296de5a4560b9318db5f717a80ecde
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
8cdac44b7c252c4f3cda5736ea1080262014e01089267c4becd4144ecfb69a0c - Sigstore transparency entry: 1117420042
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 867.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb3798c2c7f9bade3586c80abc5fcdbef45144f1d3d8f1775e85c7b5f3cdff5e
|
|
| MD5 |
871c2fbc2ca55f23e5054c28cc95e6a7
|
|
| BLAKE2b-256 |
2fe425721d18bf44f2e9e8464166fea8cefeceeae6ca57948cb0abe8d3997f12
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
cb3798c2c7f9bade3586c80abc5fcdbef45144f1d3d8f1775e85c7b5f3cdff5e - Sigstore transparency entry: 1117425270
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 894.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98b284b54218f93cf2e71d24e649e44f2a71ee27e292c5d92df34650b9b0218c
|
|
| MD5 |
acd41ae58725d6d75741b59bdc38a7cf
|
|
| BLAKE2b-256 |
d837ae84b37bad7f60ac11fa07a2174fc164f5f4424b9c8a156716a3f5450677
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
98b284b54218f93cf2e71d24e649e44f2a71ee27e292c5d92df34650b9b0218c - Sigstore transparency entry: 1117418296
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 928.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae210620c455f3dd24893e39c2554d94a306ec4d289e1acd25c312deae3624bf
|
|
| MD5 |
75c7d6bd9206580fd2390bf04a0423bb
|
|
| BLAKE2b-256 |
5a7e83962c5d756a8eeaf21d6d10558b7cf9bd3ae206164a71cc23333bfe1f47
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
ae210620c455f3dd24893e39c2554d94a306ec4d289e1acd25c312deae3624bf - Sigstore transparency entry: 1117425056
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 756.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
046a715516ddb92a766fb3d4c9384976593418bee0ae7b093598d85b7343a382
|
|
| MD5 |
da572f0bf98cd366f191f1357222714a
|
|
| BLAKE2b-256 |
742dc3cf45416cec4f371e59887a8ac64be65d908dc11a4863ca21925a88b378
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
046a715516ddb92a766fb3d4c9384976593418bee0ae7b093598d85b7343a382 - Sigstore transparency entry: 1117419754
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 856.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81faf9dcee9b747aa90b220d4149962a9e59ba05a143b37bf5418854e08ea562
|
|
| MD5 |
173ec93ecccd9d1eb01397f3e3599d87
|
|
| BLAKE2b-256 |
895c0148afff8c043080a7a932075417ede999fa62e100e55d5f4ab4bad6c8cc
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
81faf9dcee9b747aa90b220d4149962a9e59ba05a143b37bf5418854e08ea562 - Sigstore transparency entry: 1117422712
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 769.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a8921a5d59563446ac9ac84ce011d696f6588d48b4bda971701c181709b3e8f
|
|
| MD5 |
00ca4f1fed1e6f8a98a817a378f4f279
|
|
| BLAKE2b-256 |
6275abc96b0565f1e39608921e287e229679d6f6fddb536e68f78921364e7e39
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
6a8921a5d59563446ac9ac84ce011d696f6588d48b4bda971701c181709b3e8f - Sigstore transparency entry: 1117420589
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ab62a9d2c054e79259c46b0891a2a048d6e19c34d8be6867299c87546a112c2
|
|
| MD5 |
c28d0670de82b701b83345314327cfbb
|
|
| BLAKE2b-256 |
422f79d74ddc0e69c5ceabc4a071cd21f43fa9f22680ecf3c80b0d2d89477ba1
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
4ab62a9d2c054e79259c46b0891a2a048d6e19c34d8be6867299c87546a112c2 - Sigstore transparency entry: 1117425352
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb6379fe94a3fc7978523eaa2fac5b962d91d2d803035970d0030d4353df72c4
|
|
| MD5 |
eea0a37aa7015437919590645cf3946f
|
|
| BLAKE2b-256 |
f4ad52fd6ff5dbbcb182ad4087c50ab596f6b796adba8d4887b3de70b7fd5a62
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
fb6379fe94a3fc7978523eaa2fac5b962d91d2d803035970d0030d4353df72c4 - Sigstore transparency entry: 1117423413
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7d8a5aede62c697c1bdadf1eab1a1896bcaf56163f60a8224c798321ce40d04
|
|
| MD5 |
155f22c5bccfc2f89d44d5911736d614
|
|
| BLAKE2b-256 |
ee34c28ca40f06bf2f908bbac0e719e6f493d495228e6b549d20ac74c456bf55
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
f7d8a5aede62c697c1bdadf1eab1a1896bcaf56163f60a8224c798321ce40d04 - Sigstore transparency entry: 1117418535
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
18741fa1eed37c0915ce9a845e7ac9ba428fd69a9795d45c7ca726a38b7bcf0d
|
|
| MD5 |
3ed0199f821da03b922b269656c9ffc3
|
|
| BLAKE2b-256 |
0e8b46b710bae95c1deb090a90d690f139adc2de295c62f4c8f8f81e360ec8b0
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
18741fa1eed37c0915ce9a845e7ac9ba428fd69a9795d45c7ca726a38b7bcf0d - Sigstore transparency entry: 1117416913
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab271e21788876998ebb03192287bc7ed9b0ba24fb9c2a9816331e98c77ce3ef
|
|
| MD5 |
b99de0b8eb5b6d53c242dc64a39b607f
|
|
| BLAKE2b-256 |
93ca5820039bea30a3cc0275293c75dfe42d300df306ce0ad27f57ab4f77b068
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
ab271e21788876998ebb03192287bc7ed9b0ba24fb9c2a9816331e98c77ce3ef - Sigstore transparency entry: 1117424928
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66bc2a9fb958ab2dc58174908662c533800a7f4d3ab748ac08d96d8f06780a26
|
|
| MD5 |
7de5730172cb33c3a32254bea5a0b049
|
|
| BLAKE2b-256 |
24de804ca0f5dcbfddff822dc97798d1d1c52d21ff732584e53e58a44e01b393
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
66bc2a9fb958ab2dc58174908662c533800a7f4d3ab748ac08d96d8f06780a26 - Sigstore transparency entry: 1117418643
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 867.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
659121c641bc0a2864f86ee75119176a3d9bde3a38402c61cba56457f3b57051
|
|
| MD5 |
b120959b3564ca2c4470af97682200fb
|
|
| BLAKE2b-256 |
60ec7a19c3e8230ceb338e7b38135c96513e4a03d37514eed28b5b46d954f37b
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
659121c641bc0a2864f86ee75119176a3d9bde3a38402c61cba56457f3b57051 - Sigstore transparency entry: 1117424025
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 894.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf7ea30bb5f14ae3e4f9c508f30d9ca188851e11c2c128a1caadac0f9d4e3f88
|
|
| MD5 |
bbbd5260f7ad499a4c9f02ffb84796d0
|
|
| BLAKE2b-256 |
381ec5e654227e9c2bd733ba0da0e88e8e0b8e98b68a80d5992cb0f0af7c81b1
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
bf7ea30bb5f14ae3e4f9c508f30d9ca188851e11c2c128a1caadac0f9d4e3f88 - Sigstore transparency entry: 1117423504
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 927.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3673d3d78b526440d1b50ee616e1cc8420a8f7f095f997d1208f10c09daecc1
|
|
| MD5 |
2fbad0310e4c5b0887b34b021383c239
|
|
| BLAKE2b-256 |
e6873524c5a63df67b09a792985725907f63166d0475cadfc14091c6e9c74d35
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
c3673d3d78b526440d1b50ee616e1cc8420a8f7f095f997d1208f10c09daecc1 - Sigstore transparency entry: 1117423847
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 756.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dd99c4d183183fb32b169253d638c3d2f858f21328f78d2e9b23d3477fceb50
|
|
| MD5 |
2b0bbbdaa1e635358d86b824fa0afbc9
|
|
| BLAKE2b-256 |
e2158211268dbafa777f6e4746bd5ce6cc8fb07315829a5078fff505113ed160
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
4dd99c4d183183fb32b169253d638c3d2f858f21328f78d2e9b23d3477fceb50 - Sigstore transparency entry: 1117418777
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 856.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6a81cfdba12066bdb2d0fae72e6b43ba0adb410cfd1c721a2003d31df4f5b69
|
|
| MD5 |
6fbb3d55ca85bb22c67e9aaa1340d292
|
|
| BLAKE2b-256 |
9011863bbddedf347289a6d4462b9e5407886c9ec036f89b282df72dd5656cac
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
f6a81cfdba12066bdb2d0fae72e6b43ba0adb410cfd1c721a2003d31df4f5b69 - Sigstore transparency entry: 1117417177
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.5 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71c72986364835d54ee9394e2e4de31ed349cc0b87ae898ea7dca6f76d1b95be
|
|
| MD5 |
3b8d30fc96783467200fc51ca114ff8d
|
|
| BLAKE2b-256 |
f65d09b407e1235936db367bc17b2dd6a4c53a9de7f19897f35ca62922c5f4e3
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
71c72986364835d54ee9394e2e4de31ed349cc0b87ae898ea7dca6f76d1b95be - Sigstore transparency entry: 1117419671
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
413ed7f906e82c08929be5086b24a5d94102e6d040ea18080ecdbed39bb766f0
|
|
| MD5 |
f3cb7d799334e0cb6c2cea290b68c3e3
|
|
| BLAKE2b-256 |
cbed0a9ebc9b4617d6125a8d0c9e04a9132e7ac2f3d7fc16d0ba74db89b53488
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
413ed7f906e82c08929be5086b24a5d94102e6d040ea18080ecdbed39bb766f0 - Sigstore transparency entry: 1117425454
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1025dc6627653a25bb676cec3d169452833126766ca802e600523c28ab1da3cd
|
|
| MD5 |
13f4cac1ec1f1311b6645112681ecf94
|
|
| BLAKE2b-256 |
e39cd7347511823a0e50b522defb0030e576800ee3c0d894b36cde6008a5e25f
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
1025dc6627653a25bb676cec3d169452833126766ca802e600523c28ab1da3cd - Sigstore transparency entry: 1117418881
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a220a6dc15861d542e4cbb732a1a068afddfce16c38c1504ff9e3a2c2066059c
|
|
| MD5 |
7469d55671759bbbbcbfbdf6f0e7b1e2
|
|
| BLAKE2b-256 |
01478f11b57d224e5890e4aba711d179e6eb1e48d39dd7269d28748be0d65517
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
a220a6dc15861d542e4cbb732a1a068afddfce16c38c1504ff9e3a2c2066059c - Sigstore transparency entry: 1117417997
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e51ee09b343f43597ba2772c05472e28b3c10e3ea0e95c1fc4ada93761a05e1
|
|
| MD5 |
58622ac007cbe676c73a5a11794fd5df
|
|
| BLAKE2b-256 |
99706f13c94c2818a4ad20c0312f099a87b045820548ecff91d6284563254efc
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
2e51ee09b343f43597ba2772c05472e28b3c10e3ea0e95c1fc4ada93761a05e1 - Sigstore transparency entry: 1117417428
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 868.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7136bbcef0897131a5bd830e63119df42df15a881ccf75d7dd3988309c3a754e
|
|
| MD5 |
13ff8483a5c55bb66103fb8658edaf30
|
|
| BLAKE2b-256 |
e2525d43fc2c9e45c9fd401af1af1ee6f05837b6bb3d5e0241c09784efabc128
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
7136bbcef0897131a5bd830e63119df42df15a881ccf75d7dd3988309c3a754e - Sigstore transparency entry: 1117425378
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 895.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67a72c2276dbf560f583869468d0e7f981529a9a9522c0fd178e8c006f222feb
|
|
| MD5 |
2ef8fe20f9016713f61bb9bb03e0cf58
|
|
| BLAKE2b-256 |
3d76f218422e1e0e809202aaa37f8742134825d12a2a2f44e7a962eaa65ab37a
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
67a72c2276dbf560f583869468d0e7f981529a9a9522c0fd178e8c006f222feb - Sigstore transparency entry: 1117417505
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 929.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a07ba78833547f5f9806b2437bb1b143b5e7a3622c7dee885841fe1f6a2c4a8a
|
|
| MD5 |
963d056e5edaf29307e901cb60d8ad51
|
|
| BLAKE2b-256 |
ead11510a0d4068d07fffbe15053a74496a72b1057f3f204ff4f59ba4b00e3f8
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
a07ba78833547f5f9806b2437bb1b143b5e7a3622c7dee885841fe1f6a2c4a8a - Sigstore transparency entry: 1117419561
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 757.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82160f401ed99aacbe6d9dd497d6e62967e1bb78e2bd5b260c17f187286775fa
|
|
| MD5 |
c393064149db00310aecf7486abfe556
|
|
| BLAKE2b-256 |
d64cc0d8ec8651a142f9c945ed247b0d24f9b7791e307148ba088dbaad6bd9b9
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
82160f401ed99aacbe6d9dd497d6e62967e1bb78e2bd5b260c17f187286775fa - Sigstore transparency entry: 1117417003
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 857.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f2e4a085bb2b9446a258982770b1570bb5951ec8e8201a3b89dcdb4954a4501
|
|
| MD5 |
d1b6f02f4ac3ba358d50d05844122890
|
|
| BLAKE2b-256 |
cb6fb6ba67a26da88cd3fcad4d2b0af55435162a7c081eddfdb810c357ade4a5
|
Provenance
The following attestation bundles were made for within_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
publish.yml on py-econometrics/within
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
within_py-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9f2e4a085bb2b9446a258982770b1570bb5951ec8e8201a3b89dcdb4954a4501 - Sigstore transparency entry: 1117424735
- Sigstore integration time:
-
Permalink:
py-econometrics/within@a99e151129c2227f617b30877076a1875d252008 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@a99e151129c2227f617b30877076a1875d252008 -
Trigger Event:
push
-
Statement type: