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 modified LSMR with a domain decomposition (Schwarz) preconditioner, 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.
import numpy as np
from within import solve, solve_batch, LsmrOptions, PreconditionerConfig
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)
# Default: additive Schwarz + LSMR
result = solve(fe, y)
# Custom tolerance / iteration cap
result = solve(fe, y, options=LsmrOptions(tol=1e-10, maxiter=2000))
# Weighted solve
result = solve(fe, y, weights=np.ones(n))
# Opt into diagonal/Jacobi preconditioning
result = solve(fe, y, preconditioner=PreconditionerConfig.Diagonal)
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, options?, weights?, preconditioner?) |
Solve a single right-hand side. Returns SolveResult. |
solve_batch(categories, Y, options?, 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 property
solver2 = Solver(fe, preconditioner=precond) # skip re-factorization
| Property / Method | Description |
|---|---|
Solver(categories, weights?, preconditioner?) |
Build solver. Factorizes the preconditioner at construction. |
.solve(y, options?) |
Solve a single RHS with the given LSMR tuning. Returns SolveResult. |
.solve_batch(Y, options?) |
Solve multiple RHS columns in parallel. Returns BatchSolveResult. |
.preconditioner |
Return the built Preconditioner (picklable), or None. Reuse via Solver(fe, preconditioner=p). |
Solver configuration
| Class | Description |
|---|---|
LsmrOptions(tol=1e-8, maxiter=1000, local_size=None) |
Modified LSMR. local_size enables windowed reorthogonalization. |
Preconditioner (5-form Union)
The preconditioner argument accepts any of:
| Form | Meaning |
|---|---|
None (default) |
Library default — Additive Schwarz with sensible defaults. |
PreconditionerConfig.Off |
Explicit identity — solve unpreconditioned. |
PreconditionerConfig.Additive |
Additive Schwarz shortcut, equivalent to None. |
PreconditionerConfig.Diagonal |
Diagonal/Jacobi preconditioner using diag(D^T W D)^{-1}. |
AdditiveSchwarz(local_solver?, reduction?) |
Tuned Schwarz config — import from within.config. |
Preconditioner instance |
Reuse a previously-built preconditioner across solvers. |
Local solver configuration (advanced — within.config)
| Class | Description |
|---|---|
LocalSolverConfig(approx_chol?, approx_schur?, dense_threshold=24) |
Schur reduction + approximate Cholesky. Omit approx_schur for the library-default approximate variant; pass approx_schur=None to request an exact Schur (slower, used for validation). |
ApproxCholConfig(seed=0, split=1) |
Approximate Cholesky parameters. |
ApproxSchurConfig(seed=0, split=1) |
Approximate Schur complement sampling parameters. |
ReductionStrategy enum |
Auto (default), AtomicScatter, ParallelReduction. |
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, LsmrOptions, PreconditionerConfig};
use within::config::{LocalSolverConfig, ReductionStrategy};
let categories = /* Array2<u32> of shape (n_obs, n_factors) */;
let y: &[f64] = /* response vector */;
// Default: LSMR + additive Schwarz (None → library default)
let r = solve(categories.view(), &y, None, &LsmrOptions::default(), None)?;
assert!(r.converged);
// Tighter tolerance with an explicit additive preconditioner
let lsmr = LsmrOptions { tol: 1e-10, ..LsmrOptions::default() };
let precond = PreconditionerConfig::Additive {
local_solver: LocalSolverConfig::default(),
reduction: ReductionStrategy::default(),
};
let r = solve(categories.view(), &y, None, &lsmr, &precond)?;
// Opt into diagonal/Jacobi preconditioning
let diagonal = PreconditionerConfig::Diagonal;
let r = solve(categories.view(), &y, None, &lsmr, &diagonal)?;
Persistent solver — build once, solve many:
use within::Solver;
let solver = Solver::new(categories.view(), None, None)?;
let r1 = solver.solve(&y, &LsmrOptions::default())?;
let r2 = solver.solve(&another_y, &LsmrOptions::default())?; // reuses preconditioner
Two-channel preconditioner signaling: Option<&PreconditionerConfig> where
None is the library default and Some(PreconditionerConfig::Off) is the
explicit identity preconditioner.
| Type | Variants / Fields |
|---|---|
LsmrOptions |
{ tol: f64, maxiter: usize, local_size: Option<usize> } |
PreconditionerConfig |
Off | Additive { local_solver: LocalSolverConfig, reduction: ReductionStrategy } | Diagonal (#[non_exhaustive]) |
LocalSolverConfig |
{ approx_chol, approx_schur, dense_threshold } |
Preconditioner |
Opaque built handle — reuse via Solver::new(.., precond) (owned or &) |
Lower-level access
| Module | Visibility | Key types |
|---|---|---|
within::config |
public | LsmrOptions, PreconditionerConfig, LocalSolverConfig, ApproxCholConfig, ApproxSchurConfig, ReductionStrategy |
within::observation |
public | Store trait, FactorMajorStore, ArrayStore, FactorMeta |
within::error |
public | WithinError, BuildError, SolveError |
domain / operator / solver / orchestrate |
pub(crate) |
implementation layers — public items are re-exported at the crate root |
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.2.0.tar.gz.
File metadata
- Download URL: within_py-0.2.0.tar.gz
- Upload date:
- Size: 142.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99b2a43a9b2c96d3057f25879e089b4ef9ef270a3b73c76388d26d75a79bf353
|
|
| MD5 |
71c50c0a8ac7af948cec2e22d08719cc
|
|
| BLAKE2b-256 |
b5799207a0d01b30065beb68e4875ee00478870df504c66837475d3ca676b9e4
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0.tar.gz -
Subject digest:
99b2a43a9b2c96d3057f25879e089b4ef9ef270a3b73c76388d26d75a79bf353 - Sigstore transparency entry: 1720712553
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
153b561719f24d15b110b63309d84c0b5f5634d73800affb8027aa250ac9abb5
|
|
| MD5 |
db0f0a2b68c307cfa1a26322b2a576c5
|
|
| BLAKE2b-256 |
0f28773d94b2ef4c75eb67f0ca52299f31905219e3d502630ef099efe5acb8db
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
153b561719f24d15b110b63309d84c0b5f5634d73800affb8027aa250ac9abb5 - Sigstore transparency entry: 1720719297
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
288404a0cda14ac3fee0774151cee1aa08fb8eb83f8cbccc62874c0f9c015b3b
|
|
| MD5 |
04656e0a0f3d02e5be07eaff5035ed96
|
|
| BLAKE2b-256 |
243a8a3e9bbe0d72b6539177c7108d59fc8dedc9e2bac3c47b38771946081f24
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl -
Subject digest:
288404a0cda14ac3fee0774151cee1aa08fb8eb83f8cbccc62874c0f9c015b3b - Sigstore transparency entry: 1720719791
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 970.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b65db7d20277347f3730f6ea2888268fba24a513c69073da9aef9d2a9681f89
|
|
| MD5 |
d7e3097ab58fe7dfaf528b0c1261847f
|
|
| BLAKE2b-256 |
0a92fda14cae94b5221c4f9027d89dacd52cd1d79c37bb648f0bb05967dd9d95
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
2b65db7d20277347f3730f6ea2888268fba24a513c69073da9aef9d2a9681f89 - Sigstore transparency entry: 1720718146
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 968.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
054ff709ad6b17fafc018ad70c99bcb3ad58ba942e3810a804469caa81f63805
|
|
| MD5 |
3159f08d92c6179e3723fe1b21cd1050
|
|
| BLAKE2b-256 |
59b4a55436c444abe2223da18a6a48cb88b3ae42896372aad081c46137abbaac
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
054ff709ad6b17fafc018ad70c99bcb3ad58ba942e3810a804469caa81f63805 - Sigstore transparency entry: 1720721109
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7db0a4c9acbf7d59774d34abab4b40b9ace922fe13aceb36ccc58a897114e770
|
|
| MD5 |
e772358e4b618dd15fc70ac4ea1fbbfe
|
|
| BLAKE2b-256 |
15cbb65db8647bb3d4f6560688611938b6ffa53300bc974c8b24092f11e5827f
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
7db0a4c9acbf7d59774d34abab4b40b9ace922fe13aceb36ccc58a897114e770 - Sigstore transparency entry: 1720721738
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 790.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c32f41bcf330bf066d74b953afa472b0943d8acde5953d5fff82d907ed56a86c
|
|
| MD5 |
0989bbc412eddb3acf65cbdfb72c5f48
|
|
| BLAKE2b-256 |
655c5646ac56ace9819594a00c289d9a02aa5b319eb29c08ae5ae190b406b392
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
c32f41bcf330bf066d74b953afa472b0943d8acde5953d5fff82d907ed56a86c - Sigstore transparency entry: 1720719567
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 803.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3903775bfc9689a7e827105e65870f81b3c1370ac5dd3a0b3d7b98c70b36428e
|
|
| MD5 |
e1972f1f51b27cfbcc79a2a6c07f1f25
|
|
| BLAKE2b-256 |
6c5fecc4cee13a80ba4b41b4e3d230563fcf5fd0d72aa514b46dd1512d18bcaf
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
3903775bfc9689a7e827105e65870f81b3c1370ac5dd3a0b3d7b98c70b36428e - Sigstore transparency entry: 1720715370
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 860.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dd46b700b4dff72ff2846dc85a6286b972883e3dc3542a8bc98709a619a3958
|
|
| MD5 |
73113307aa7960dedae9ee8b0ac20be2
|
|
| BLAKE2b-256 |
be0b6dfce107133c41a983608fbfd8dd35e05e63eb5069c181b1c2b896d36517
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
0dd46b700b4dff72ff2846dc85a6286b972883e3dc3542a8bc98709a619a3958 - Sigstore transparency entry: 1720720203
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 696.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a4e04e17ef9cf7725a6ea4a7c9b8a3f77d75c7edc11f14bfe94e242396ba7f2
|
|
| MD5 |
b5745027f01b8527282397e6957ad11d
|
|
| BLAKE2b-256 |
473a1243b166bfd9c57ef627047d46956c50631f464c5d697cb2b094dbcf44f9
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
5a4e04e17ef9cf7725a6ea4a7c9b8a3f77d75c7edc11f14bfe94e242396ba7f2 - Sigstore transparency entry: 1720714975
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9034bf63fac04b9db103c231751ff699c6c600a0bb4542dd77782c1b003de252
|
|
| MD5 |
cedfade8b04d5d8b934bc19b9ebfd3f1
|
|
| BLAKE2b-256 |
a0b4d51b58c2175b646ac2b4179c553b3b3aa317312da72cd890634181132c25
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9034bf63fac04b9db103c231751ff699c6c600a0bb4542dd77782c1b003de252 - Sigstore transparency entry: 1720716415
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
504bd72c1d29764abab1b966fca860cbfdda724497a2dde7a74f92759c537620
|
|
| MD5 |
f0621164d4179275a4489d6ef2d91283
|
|
| BLAKE2b-256 |
96089820f3eb76423bb02de059cf599bf98b6816ada3fe5e2c94f23ff52ed32d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
504bd72c1d29764abab1b966fca860cbfdda724497a2dde7a74f92759c537620 - Sigstore transparency entry: 1720713211
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44e3e0410726918f7c787998127a47895287b2854cdaab45f4ab9ff75ce55cc7
|
|
| MD5 |
4351513f44c95360daafc5b0f8b082f2
|
|
| BLAKE2b-256 |
1c2d845857d31dba03c32b40cca29728dcdc7ac2202f2d8eddd12bf604430ba3
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl -
Subject digest:
44e3e0410726918f7c787998127a47895287b2854cdaab45f4ab9ff75ce55cc7 - Sigstore transparency entry: 1720715268
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 970.9 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b72a5ed021c3ef89ee66cfae64b9f92a9913987dfcd00d511658d2ea1af17830
|
|
| MD5 |
8fbc0c802b530ea749ae023c81053c89
|
|
| BLAKE2b-256 |
22adfee72211d67e88f64ae25d46c3b763d00cdaebdb3a9afbc994a92fb4c4f0
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
b72a5ed021c3ef89ee66cfae64b9f92a9913987dfcd00d511658d2ea1af17830 - Sigstore transparency entry: 1720713811
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 969.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab79e3608da4889ab1491455b6140ac9650f2d8d303e8b46b9a19097e3287402
|
|
| MD5 |
f5d8ca6524d958af16f00feeddbf4a7a
|
|
| BLAKE2b-256 |
f1cec3967586e9cc16f710406ccad1fa987d25e1c133f184870d787c80c79c22
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
ab79e3608da4889ab1491455b6140ac9650f2d8d303e8b46b9a19097e3287402 - Sigstore transparency entry: 1720719735
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 791.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cdd96afda731c09578f11a32685b64ec0805b0abb6b6d37381190edde8cbce0
|
|
| MD5 |
78d784d0782c0fae7e8fa0a1c8e47866
|
|
| BLAKE2b-256 |
b0f810aadbd13edb7ec2bfa9de9f16875aebeca776c1bf613377e479da0cd227
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
4cdd96afda731c09578f11a32685b64ec0805b0abb6b6d37381190edde8cbce0 - Sigstore transparency entry: 1720713922
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 803.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30d492f8bccd830b464e81b6b0c15827e4afd20724e6f356883210b1fb3853b3
|
|
| MD5 |
0eeb83a4ed11a251935285d3099852bb
|
|
| BLAKE2b-256 |
20006f51aa9acb92739d73f001c2fb9a8ffaaed09cffdcba42b6bfc5fa0be7b1
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
30d492f8bccd830b464e81b6b0c15827e4afd20724e6f356883210b1fb3853b3 - Sigstore transparency entry: 1720722151
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 696.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7476e8f3bf3f17b3d3ad7e289038e46927ebbb4341792dd869f2c1e745c5e317
|
|
| MD5 |
608fb7722b395c74909db105a6b64fa6
|
|
| BLAKE2b-256 |
8c8b3d7dc8299737469e5fbe52d9b7b6c398e9809be282140487bf484ec59556
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
7476e8f3bf3f17b3d3ad7e289038e46927ebbb4341792dd869f2c1e745c5e317 - Sigstore transparency entry: 1720719875
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6439cb062d5a733b49fd390c23a12392622c66cfe8a1fcc533fb7e3c5de98a5c
|
|
| MD5 |
ae093c8fbe86857784587d2a5e43b5b1
|
|
| BLAKE2b-256 |
b41e8d5f695d32fd73897932a049689fe097e8e35c6eb03485a08013d37f546a
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
6439cb062d5a733b49fd390c23a12392622c66cfe8a1fcc533fb7e3c5de98a5c - Sigstore transparency entry: 1720716482
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d158e9836fa093ac38fa1183704c8d389d11fd7c968e4fca7286848ae16e57e
|
|
| MD5 |
4d4612e4e923ee0d61f113f087e6db24
|
|
| BLAKE2b-256 |
6489b0a0f3eaa21bdaa373eff3a17dcc66119a3e031384a36b5ac5466e34993b
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl -
Subject digest:
4d158e9836fa093ac38fa1183704c8d389d11fd7c968e4fca7286848ae16e57e - Sigstore transparency entry: 1720722350
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
340d7d362e933fd178fae5ebeab11c920150813a38eb0d8845a0be53120ac322
|
|
| MD5 |
12990eb16dee1260893580765dd6fd11
|
|
| BLAKE2b-256 |
6df5bafc495bd85bb385ee48ca7ad0f51b0baf0f994e201ea8baa2011aa64d2d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl -
Subject digest:
340d7d362e933fd178fae5ebeab11c920150813a38eb0d8845a0be53120ac322 - Sigstore transparency entry: 1720721495
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 971.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba00316efe9864dae7f4d7096456426a1ac6bdb5d6a41a9b6626536c829079b0
|
|
| MD5 |
e929b9456a51aca6097982b2bcb1985e
|
|
| BLAKE2b-256 |
babaeb6c30bba8f2828c32b2fc57ceba9ae4b04ad975bec0017a3b0eb86e2008
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl -
Subject digest:
ba00316efe9864dae7f4d7096456426a1ac6bdb5d6a41a9b6626536c829079b0 - Sigstore transparency entry: 1720714048
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 969.3 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21193f75d9f515f610f3d54fecb0e0914a7963bfba804816f9e6776c74a2a6f4
|
|
| MD5 |
a3397a70404ca582079e6a044b1f508f
|
|
| BLAKE2b-256 |
4c9604bbeda6811ab21ff7b9fc19e648e4f67a83dab115ccc791189a727ba48a
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl -
Subject digest:
21193f75d9f515f610f3d54fecb0e0914a7963bfba804816f9e6776c74a2a6f4 - Sigstore transparency entry: 1720715882
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 791.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86b534dc708905613c7c99c48a326fca6f989570798da59f31bfbdc0e59a4084
|
|
| MD5 |
5a311b9c8fcdeae086e9efddaa36e577
|
|
| BLAKE2b-256 |
0cb19c7e88191049db0a0fdb46c4d595203870e55af7e24c709930bb3ae32af8
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
86b534dc708905613c7c99c48a326fca6f989570798da59f31bfbdc0e59a4084 - Sigstore transparency entry: 1720714171
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 803.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84f9306e09a2347dff652a77a9226d99059ddcbba0b6191b8e3ff089c74b651c
|
|
| MD5 |
fbccd77b643e2483e6069fe4d78690c9
|
|
| BLAKE2b-256 |
6141172b4f30a3659e752a1c5e5cdf083734dfd27f30d5cd331c8d482d48138d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
84f9306e09a2347dff652a77a9226d99059ddcbba0b6191b8e3ff089c74b651c - Sigstore transparency entry: 1720713701
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 697.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ff50b6f797578a3e1068635163b3d53d27358d3ced112ea7e5c72e7b9c16df1
|
|
| MD5 |
f76567fe521b9ca30bb3a52ad632f692
|
|
| BLAKE2b-256 |
fc88c551b9abda559afb700b6a4fb080f8d77d5d93972c809f8c08faba0424e3
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
9ff50b6f797578a3e1068635163b3d53d27358d3ced112ea7e5c72e7b9c16df1 - Sigstore transparency entry: 1720720528
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccf98274040944d4706f6d3707c79b1497b4fa4f9b45323105824c05c6493b9e
|
|
| MD5 |
ef94ed85ac02206568d45efa75e7619f
|
|
| BLAKE2b-256 |
6cfc696f846f165244e6f23b40a131ddab4ccdcd06b23cff8915e1bd02d3aaaf
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ccf98274040944d4706f6d3707c79b1497b4fa4f9b45323105824c05c6493b9e - Sigstore transparency entry: 1720720130
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
539802771af22a61a10128a2ddfb57243ff9e7c01730ecfad1b3a78157601103
|
|
| MD5 |
6a48280b772f93672a050d191fe5364b
|
|
| BLAKE2b-256 |
e54a1596f15ad5dbaa3990dbb6d921440d6e0d74ff2b6806946cb67be9ff829e
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
539802771af22a61a10128a2ddfb57243ff9e7c01730ecfad1b3a78157601103 - Sigstore transparency entry: 1720718366
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9c339a1d1ad11c10c496b80ad29d55e1bcf69861235c606acddae71110cd9e8
|
|
| MD5 |
53bb56a16a9b0444a952e0194a35402e
|
|
| BLAKE2b-256 |
3e22ee5c1c5759e61ebb51052a11f96c3ec9621e31329b77bef23aa27551d116
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-musllinux_1_2_i686.whl -
Subject digest:
e9c339a1d1ad11c10c496b80ad29d55e1bcf69861235c606acddae71110cd9e8 - Sigstore transparency entry: 1720721562
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 969.0 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08b43a4282147d9849cfa55ef8c457121ab6cf41562769f7d858d4b9e58c1d6b
|
|
| MD5 |
2717bfaa76c616ead751df4976597edc
|
|
| BLAKE2b-256 |
1a9692b5dd167fc3350371b190b8f36f918e1005a4ead85906dbc41561482c51
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl -
Subject digest:
08b43a4282147d9849cfa55ef8c457121ab6cf41562769f7d858d4b9e58c1d6b - Sigstore transparency entry: 1720720842
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 967.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd7ed7c530943afdc851ec16f12346fd5447eac213e4afd8ed2ea7c8cca0368e
|
|
| MD5 |
ed4943b890a7e189cc18e74a1687b0ab
|
|
| BLAKE2b-256 |
d58510ed10d3595fb3c0a3350f46c24de92135d95a84fa66335eb07fe8340038
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
cd7ed7c530943afdc851ec16f12346fd5447eac213e4afd8ed2ea7c8cca0368e - Sigstore transparency entry: 1720718207
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 789.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88a59e15a7e8885e8200786f87904cea08044303e4e2a9de3c239a71b141c9f7
|
|
| MD5 |
0d95cd94686179b8939950a33f783613
|
|
| BLAKE2b-256 |
e7cae232d23723ba3234fff09acb2ba6278ab488f07e74e36a7604d4fbd31e13
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
88a59e15a7e8885e8200786f87904cea08044303e4e2a9de3c239a71b141c9f7 - Sigstore transparency entry: 1720716814
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 802.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
02b80db0fd85b71ef70248c7f5c7de55ccbd8c282992ece8fd729326865ae734
|
|
| MD5 |
37b47228988c554d9c0b1d0f5d21cf5a
|
|
| BLAKE2b-256 |
f134035df26216b95213d6e7b1c118889f0bf0ffd4f3e938b1f0f9e078fbc68d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
02b80db0fd85b71ef70248c7f5c7de55ccbd8c282992ece8fd729326865ae734 - Sigstore transparency entry: 1720717659
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 694.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ec5f616a1dff05bba4b6aacd66e6874acc65df9b76a3703228707bf7a14ce8f
|
|
| MD5 |
a99b6fad87ef9909a82f54c271efda61
|
|
| BLAKE2b-256 |
62afa77bd426a73f50e0f4e1bdccc77b8ceb215fe07d3f067019972d7fe62dbc
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
7ec5f616a1dff05bba4b6aacd66e6874acc65df9b76a3703228707bf7a14ce8f - Sigstore transparency entry: 1720720641
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 790.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f036475c2e3f268eceac6f6764020c650dd50777a87eba70c402f6b35e8184b
|
|
| MD5 |
13fbd7dd368adb0762f679549bcf5ec7
|
|
| BLAKE2b-256 |
534e44454a3c2aecb1170f33071c0086ffa120e46e2409e4f662e27033f372d7
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
8f036475c2e3f268eceac6f6764020c650dd50777a87eba70c402f6b35e8184b - Sigstore transparency entry: 1720713580
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 606.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08b0e8ec4312afc9a07380313cdd7f9e46553e55bd72d5601ce84d19616a7951
|
|
| MD5 |
cfe1c2a64939312c3a2bca1882fe8bdd
|
|
| BLAKE2b-256 |
1d89ee63c63c74997f457183e7acc68182af85288dfed229abdffec0cf7306d0
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-win_arm64.whl -
Subject digest:
08b0e8ec4312afc9a07380313cdd7f9e46553e55bd72d5601ce84d19616a7951 - Sigstore transparency entry: 1720716559
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 950.3 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab2b0de0f7caa576dd67b1d724326f15d064656228f5d0546ae5fbdd3449920a
|
|
| MD5 |
c507b8e873079510ddcad3ae5e30c93c
|
|
| BLAKE2b-256 |
4f3cee5b745534da540537ed373d006abd088523dd4b90fe4a078e4faa4c0ab9
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-win_amd64.whl -
Subject digest:
ab2b0de0f7caa576dd67b1d724326f15d064656228f5d0546ae5fbdd3449920a - Sigstore transparency entry: 1720714548
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ef9e0a08cf4498df529b70c2e495f833b488fe37c1d20d1bd2d5f5db6f7e2cb
|
|
| MD5 |
fc802be70758ca1f64a78e2d1a343d34
|
|
| BLAKE2b-256 |
2824c3c417d431d4c5dbf3019373c3f7d8d1d500796ae3b49854fba7a76283b1
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
0ef9e0a08cf4498df529b70c2e495f833b488fe37c1d20d1bd2d5f5db6f7e2cb - Sigstore transparency entry: 1720722507
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc39200f292a4e848385764e5c202a10e4a4f524f2d4789f5ca2372fb143953a
|
|
| MD5 |
26759b8c8aae1c39adfb988c6ab9cfc4
|
|
| BLAKE2b-256 |
9dc34f065b9c79b94e356f2dc405313a506ec196f9741494953b1fcf44b8d3c5
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-musllinux_1_2_i686.whl -
Subject digest:
bc39200f292a4e848385764e5c202a10e4a4f524f2d4789f5ca2372fb143953a - Sigstore transparency entry: 1720720900
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 971.3 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28d84423b3d55a374a74ad1beba7abfaa3714f5cac02273e7d8842ac4931ce05
|
|
| MD5 |
70cf0714069ce2d3601c65467798d4d1
|
|
| BLAKE2b-256 |
4d1aef16001f39f7d9183261bfd7d000f29c5570fc38238520f820e1819eee9e
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-musllinux_1_2_armv7l.whl -
Subject digest:
28d84423b3d55a374a74ad1beba7abfaa3714f5cac02273e7d8842ac4931ce05 - Sigstore transparency entry: 1720716328
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 968.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e59197291e9356abd08feed0edb65b34a6a099e824ad1097d89e2227d4d9973
|
|
| MD5 |
8a6aa1fdd58eeada717862d9f4e58dbc
|
|
| BLAKE2b-256 |
f6e0935c8051eca0ea10bb515ab6e1e64016719865fd20a8413a948b5b7e497d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
1e59197291e9356abd08feed0edb65b34a6a099e824ad1097d89e2227d4d9973 - Sigstore transparency entry: 1720718615
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6948c91c03191c2a019d9a0edfb9059713c09c202d623fe75fb3cfb26fca467
|
|
| MD5 |
4218bd50222c0945ec565319ad931df5
|
|
| BLAKE2b-256 |
a3bb3e3d38bd941f1a82bb2c917ba3a317a2845ae234e80de2b28b48828e8bf7
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
c6948c91c03191c2a019d9a0edfb9059713c09c202d623fe75fb3cfb26fca467 - Sigstore transparency entry: 1720719503
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 792.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff9bce4e4f07f53ffb22dbda47d0d129f23677e0e0b946826682422fdccac47c
|
|
| MD5 |
f9e11b85336d9e00d61f4dbccdc8dbaa
|
|
| BLAKE2b-256 |
08c72f4d4dbc73a7efa111a91942016da509cdf92ae9f0ab85fa0f83711afe79
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
ff9bce4e4f07f53ffb22dbda47d0d129f23677e0e0b946826682422fdccac47c - Sigstore transparency entry: 1720721647
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 803.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15157162c557b11e0c0c0f544de4d0781ea88d3063ace4ec9f53822aa24f808f
|
|
| MD5 |
7d42074f16b202c8b5e8470a070347e2
|
|
| BLAKE2b-256 |
be0fb2d278f790c29870385260671a99bb375deca9cb41e3f35db625bb9a21ea
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
15157162c557b11e0c0c0f544de4d0781ea88d3063ace4ec9f53822aa24f808f - Sigstore transparency entry: 1720722425
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 861.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97e9212d14e31c3d0166c0bbb2fdcacec6c3f8eee096be2f7d06954bd0b635a2
|
|
| MD5 |
ff1b7dada590067b896f99dec5b75f8d
|
|
| BLAKE2b-256 |
853d168463370251af488e192901c127045c13bf01384f5e1f65cd3699bc6670
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
97e9212d14e31c3d0166c0bbb2fdcacec6c3f8eee096be2f7d06954bd0b635a2 - Sigstore transparency entry: 1720721810
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 697.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
398e274293989caec74cfd6f1ba9057b370cac6c194c6426bbb0f056bab9ef06
|
|
| MD5 |
093d927b36caeeecab5900f6f1d83286
|
|
| BLAKE2b-256 |
4d55282b64f153c8319408d4e11e7181689eff047dfc4a51f6f4dfec1255e3b8
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
398e274293989caec74cfd6f1ba9057b370cac6c194c6426bbb0f056bab9ef06 - Sigstore transparency entry: 1720716176
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.4 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73e45b425a1246dbab3a2384d07fcf88dcbef8760bc4b8be17b1ae5f0beedd30
|
|
| MD5 |
75cd6affe8cf3660f2c2bd440ecfcbc0
|
|
| BLAKE2b-256 |
804882ee2ec1cc1cd9f756bdac68f5eefd79c7897bc5badb00a1d65a9471fd54
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
73e45b425a1246dbab3a2384d07fcf88dcbef8760bc4b8be17b1ae5f0beedd30 - Sigstore transparency entry: 1720719147
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 702.8 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c93f5d1112fb52e54877426976c5a9aebcae389ffd254f464711746695cc09d5
|
|
| MD5 |
5a29dcffdedbf58ee6ca8a442d9729fd
|
|
| BLAKE2b-256 |
12abe32fe340b9758c55c80bf094b3e1e346b298f6ec065ae36ec513cb262340
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
c93f5d1112fb52e54877426976c5a9aebcae389ffd254f464711746695cc09d5 - Sigstore transparency entry: 1720720405
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 850.9 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b0d3112f2502ee1dd58e32276b2b04f830cf54b21c722b538dba7a844a7982c
|
|
| MD5 |
feb5ab9d706c3595d0f952bc445cbdfc
|
|
| BLAKE2b-256 |
553e8cccd624d5ac9a6b3b032df63fa8b441fe28bea7b1c72a4a23fe2940dff4
|
Provenance
The following attestation bundles were made for within_py-0.2.0-cp314-cp314-macosx_10_12_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.2.0-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
0b0d3112f2502ee1dd58e32276b2b04f830cf54b21c722b538dba7a844a7982c - Sigstore transparency entry: 1720715714
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e637ecea9c2115957552f2aa00ab54a5e9c0a85e51bbdc406087e7d5584160ad
|
|
| MD5 |
c6168de902215c6cc7b74edf6ccaee63
|
|
| BLAKE2b-256 |
cfbe7950124fa21607c2e2c7fce8b0c9b5c84d434894f058187e1020f5ea52d5
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl -
Subject digest:
e637ecea9c2115957552f2aa00ab54a5e9c0a85e51bbdc406087e7d5584160ad - Sigstore transparency entry: 1720713125
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6112cd1f820de628f5e6137aa554bc299b92d7cbc3b5ec91527a0d4777b483e
|
|
| MD5 |
2025e329d5c724ec929bae8410ebcfd2
|
|
| BLAKE2b-256 |
05af9557dda5936ade7bf357b41809a67f2395684ef3353dc55dc669cbc65437
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-musllinux_1_2_i686.whl -
Subject digest:
a6112cd1f820de628f5e6137aa554bc299b92d7cbc3b5ec91527a0d4777b483e - Sigstore transparency entry: 1720720469
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 968.9 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5b06a452179373977841cdad1272dbf45d5668f7d32a21e9fc249658e300ced
|
|
| MD5 |
a1d973765d54a8bed0d9e407ae3c1d22
|
|
| BLAKE2b-256 |
bbf213c0c37662c82e7993cb1056c9956296dae99c1a21fd50857e24e9de3a52
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl -
Subject digest:
b5b06a452179373977841cdad1272dbf45d5668f7d32a21e9fc249658e300ced - Sigstore transparency entry: 1720720266
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 967.0 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e597b2f2dbb829fabf27119816c452d35a45ba216c5f5040c575c47d6b0b6a5c
|
|
| MD5 |
d9e9d7c7e90d32682219b5394e1baaaf
|
|
| BLAKE2b-256 |
19d519a6e49e8bbfa8086c2ba4b9db8a531dfb9499f253ae47815d81a0d9b9a0
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl -
Subject digest:
e597b2f2dbb829fabf27119816c452d35a45ba216c5f5040c575c47d6b0b6a5c - Sigstore transparency entry: 1720717276
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 789.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f426b917db072c8942e8f1fa5d56675cd390a421182d3164bba73210f966f505
|
|
| MD5 |
4c2cfaafe3321d57f6e2c590e0c5f51c
|
|
| BLAKE2b-256 |
799e2ed19a1e25cb30f656ae50382a264d5e63368cad1a1bf0e32719c2cd39ce
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
f426b917db072c8942e8f1fa5d56675cd390a421182d3164bba73210f966f505 - Sigstore transparency entry: 1720717172
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 802.4 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8132f6af9e028c871f90bbc6f10e7cc58d393fec978d9560bc1beebcd7269750
|
|
| MD5 |
f44ebc495c4a7d15a820430a435029ec
|
|
| BLAKE2b-256 |
cd45650379b02613058b8b57a1475a67b599dc5dc969b7a9d76d6969878618ba
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
8132f6af9e028c871f90bbc6f10e7cc58d393fec978d9560bc1beebcd7269750 - Sigstore transparency entry: 1720722074
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 694.8 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2817ae010a0649188c6ac591c4a924c52cd02c1f86493e617e8f714ec72bff1
|
|
| MD5 |
e2a57e77a2c5b83f92284be357217611
|
|
| BLAKE2b-256 |
09917f02e792ff94c311575da7d7846bdd67b4774af653bfdaa56697f431f58e
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
e2817ae010a0649188c6ac591c4a924c52cd02c1f86493e617e8f714ec72bff1 - Sigstore transparency entry: 1720712986
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 790.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38c2e1d5b7ae953a72a06a3716ba2f2802aa4893240287ed661044d61e3fbd83
|
|
| MD5 |
bb875c44d3cf58b24789d32a0c85bec7
|
|
| BLAKE2b-256 |
dde3b32049c4fd7956c519f4d5ccbeb3ba974f30a2f780c00278a5e56c361827
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
38c2e1d5b7ae953a72a06a3716ba2f2802aa4893240287ed661044d61e3fbd83 - Sigstore transparency entry: 1720714641
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 606.1 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89b0614feddee708c1496f5e543f6ac2303fddcb8c7a4f1eeb5cf4ac8020e49a
|
|
| MD5 |
3b2c1f367440b69d97935110686a6771
|
|
| BLAKE2b-256 |
7f668348c2e72e7ac7e750f85c42f10a16218d24ebb67c4626730b0c400c0127
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-win_arm64.whl -
Subject digest:
89b0614feddee708c1496f5e543f6ac2303fddcb8c7a4f1eeb5cf4ac8020e49a - Sigstore transparency entry: 1720716007
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 949.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
388830d5bdc83c59ae49db08152b72bd6ed0001ba053ad2f6eb6e73f1d291903
|
|
| MD5 |
60edb14c1c5688a4d0bfec2ac92e53a8
|
|
| BLAKE2b-256 |
a2e9eb606c4b6fc30e15a4fb568f912641213dad0cd7dad2a58f223dbee5dbbe
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-win_amd64.whl -
Subject digest:
388830d5bdc83c59ae49db08152b72bd6ed0001ba053ad2f6eb6e73f1d291903 - Sigstore transparency entry: 1720721041
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-win32.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-win32.whl
- Upload date:
- Size: 594.0 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3838f59168df7d4d599c4e3bc456bc5f0ad836476a1f2e83a5ea9a7035db805e
|
|
| MD5 |
f3a41d03eb2cbd9a03d25ea79539acc7
|
|
| BLAKE2b-256 |
1c389e9ecdc0e5f00ee550bdbfa5f0f468452d6ddcf72daa45f62186d65d1ea4
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-win32.whl -
Subject digest:
3838f59168df7d4d599c4e3bc456bc5f0ad836476a1f2e83a5ea9a7035db805e - Sigstore transparency entry: 1720716883
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e430ffe5ea2030d2cd13885371d0c14697e29eced6c21a731dd123e48bf3c65
|
|
| MD5 |
9e1d291dc3d4e7bc0423f6c938097439
|
|
| BLAKE2b-256 |
42d5bc707d3075992605a854008a9dcc9d197880d2b0b79ffd6ab8c510264244
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
4e430ffe5ea2030d2cd13885371d0c14697e29eced6c21a731dd123e48bf3c65 - Sigstore transparency entry: 1720715519
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bfca3fc532000e778ad27ae1b84a780dc726c6de502d125375a2b9ff11ee618
|
|
| MD5 |
1d2ced0d52a563a5856f3a2d327928dd
|
|
| BLAKE2b-256 |
8dabaaf655ab9fb91ca4e6788f2084c2c3065bc970b76b5edfaf216c77c8fcab
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-musllinux_1_2_i686.whl -
Subject digest:
2bfca3fc532000e778ad27ae1b84a780dc726c6de502d125375a2b9ff11ee618 - Sigstore transparency entry: 1720712626
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 970.9 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d908e83651fd0a0b71dc82c81dd0639b944ef4b80d87bcf1a21a556a37dd5e1
|
|
| MD5 |
b384795a6639c900b1a26abc8670c587
|
|
| BLAKE2b-256 |
958fa2503d80bbe30e9ee15ad7029ddadc7ca3032a9b09df4bb4e514f02e3cb5
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-musllinux_1_2_armv7l.whl -
Subject digest:
7d908e83651fd0a0b71dc82c81dd0639b944ef4b80d87bcf1a21a556a37dd5e1 - Sigstore transparency entry: 1720716103
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 968.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89d141bd6254ac5043674bba88944a2fe3d41f7d178c436d2bed7e6161adfaf5
|
|
| MD5 |
5e0e486826fbefca63742e06530f4979
|
|
| BLAKE2b-256 |
b0659a9b8ddcf4907b8ce0f6e992d2d07734f17023b98ce7af2f5b4439b6299f
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
89d141bd6254ac5043674bba88944a2fe3d41f7d178c436d2bed7e6161adfaf5 - Sigstore transparency entry: 1720714368
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88e64cdac9ea69d427096f7adb0c04daf537e293fb5a91b55070f4184c77628d
|
|
| MD5 |
97bad9ee6632f199235411b8b58a15ad
|
|
| BLAKE2b-256 |
9ece6689712fb31406c4e40765fa6b2db3d90944e1e723e99d25e522013e0efc
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
88e64cdac9ea69d427096f7adb0c04daf537e293fb5a91b55070f4184c77628d - Sigstore transparency entry: 1720718076
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 791.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd6c449fa2eaad8d714b8ef2a54aa5ebfd3795c66a56647e0ba9eedff1a191fd
|
|
| MD5 |
d9cbe12f0fbfd0ea14688c158e707c56
|
|
| BLAKE2b-256 |
daeaf39c5be0b8d69c2f5a988406433d9a7b2dcb112053afeef98a1b9aff788b
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
cd6c449fa2eaad8d714b8ef2a54aa5ebfd3795c66a56647e0ba9eedff1a191fd - Sigstore transparency entry: 1720721195
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 803.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68debbc1cb30d11537df18ad38ee222fa0f050de70b60fffa239567573eb27fa
|
|
| MD5 |
f2029b64b4711bec4009dbce4b2114af
|
|
| BLAKE2b-256 |
cd4eb0b6c2d89def4d4bd3e409bb5ddc3a8379ce5d7170d24a649028de3c4f64
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
68debbc1cb30d11537df18ad38ee222fa0f050de70b60fffa239567573eb27fa - Sigstore transparency entry: 1720715123
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 860.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57ac60a75be451d90c991d5b917a75ff3e0d01256ef7965ee2ca5ee4b50ce953
|
|
| MD5 |
3785729d171c951622fe34653a3e693e
|
|
| BLAKE2b-256 |
c41b5ee5b70009f61e185251f193ca6abe35750bf8b1e9c78c3ee0d1d03940fe
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
57ac60a75be451d90c991d5b917a75ff3e0d01256ef7965ee2ca5ee4b50ce953 - Sigstore transparency entry: 1720712915
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 696.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b85a1d2a1ed402a396cb8e56d63b747ce4dde8bee7898c6b49f9fc6550b219c
|
|
| MD5 |
7a25e28f68f70177d6c563e6f39cdf7b
|
|
| BLAKE2b-256 |
83bc561f2845274d730e8b5dfcc259738a8578a9d2838efbb02504921e5c0862
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
8b85a1d2a1ed402a396cb8e56d63b747ce4dde8bee7898c6b49f9fc6550b219c - Sigstore transparency entry: 1720716626
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb536a6447325ffb40fc7f1a579f1ddd2f8c4ef4d450c1adb3c774960916f02c
|
|
| MD5 |
5ae0cd42206555f803079e237b3a3c8a
|
|
| BLAKE2b-256 |
5827c6fb186864986e86c45d4796cd2389e20a8acc85b9f1ee9a3cac4ee63e8e
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
cb536a6447325ffb40fc7f1a579f1ddd2f8c4ef4d450c1adb3c774960916f02c - Sigstore transparency entry: 1720717376
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 702.5 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c27d8a68f612630bf7dc1fb9018166c5bbebc3e9b7d28cb76f0f77c085a6408
|
|
| MD5 |
721db16b3b7169ff756394f09bbc2c53
|
|
| BLAKE2b-256 |
b5a435ba3c2a0883327fe297e5ffeb85406131b64339ed617c9777b07ac04405
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
9c27d8a68f612630bf7dc1fb9018166c5bbebc3e9b7d28cb76f0f77c085a6408 - Sigstore transparency entry: 1720716700
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 850.6 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fa730843a007dea5f4913e772e6d921e721d8c5b1ff612973e99156a27a5d4f
|
|
| MD5 |
846e3bba70c700ae9a2cff5491bd4e90
|
|
| BLAKE2b-256 |
94701287d7a40ec5288bc5a59a60b94694e687d1c7722946a83bc4a8ac0310bf
|
Provenance
The following attestation bundles were made for within_py-0.2.0-cp313-cp313-macosx_10_12_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.2.0-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
4fa730843a007dea5f4913e772e6d921e721d8c5b1ff612973e99156a27a5d4f - Sigstore transparency entry: 1720721911
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 606.2 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
098fef51d98d51a0680df9a1573e0659ea7b95cc1d62034cd59dd5bce8d7aa7a
|
|
| MD5 |
a80715c94a1f53ec35533f78861eba1e
|
|
| BLAKE2b-256 |
e1c9de5063c5954f9db55faca30016c79802825c1b1954a7377ab45cf0ec44ce
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-win_arm64.whl -
Subject digest:
098fef51d98d51a0680df9a1573e0659ea7b95cc1d62034cd59dd5bce8d7aa7a - Sigstore transparency entry: 1720719229
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 950.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
137c7c30ad0cf8a808496a7434f959966a181e351cbf9e506f58f346c271b2a4
|
|
| MD5 |
8cc34dda8ab232cadca2a8bd21f21a72
|
|
| BLAKE2b-256 |
4bf816432f788739fbbac165c175f18bc60cd897c81396996eb656478ee21b2d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-win_amd64.whl -
Subject digest:
137c7c30ad0cf8a808496a7434f959966a181e351cbf9e506f58f346c271b2a4 - Sigstore transparency entry: 1720713448
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
825dfcc6c3a6f9dc362bcd376862d28b4c4ce18b760fc79edc43ba82e949f77a
|
|
| MD5 |
3cf5967c28a9e3cfef760c79ec5a08a7
|
|
| BLAKE2b-256 |
c0c36c0dab9a676b4afdaa1f38039a0ca8d38213524c9b0af1ba322294190333
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
825dfcc6c3a6f9dc362bcd376862d28b4c4ce18b760fc79edc43ba82e949f77a - Sigstore transparency entry: 1720712868
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd9b3161afa74000257bc3d3542d4f2c1d406b85f2bf7d736083017d7c0103cc
|
|
| MD5 |
e1c6542344a185871441cb48f512a0fc
|
|
| BLAKE2b-256 |
74fd202d677f32528046f2acd7c72391bbf451e7b6a63e6d914e618d68d9a771
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-musllinux_1_2_i686.whl -
Subject digest:
bd9b3161afa74000257bc3d3542d4f2c1d406b85f2bf7d736083017d7c0103cc - Sigstore transparency entry: 1720719622
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 970.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d3eb140eb9e66de25e4a48454b3eaae21caef19cc6493bfb27277822a03b9e8
|
|
| MD5 |
68b6e3af37071966a7e03136c2e7cb2a
|
|
| BLAKE2b-256 |
32ca33c3c716abe9f0f5d5c1c83e3783e716240d2d7f48ab06d0d4c8762f0848
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-musllinux_1_2_armv7l.whl -
Subject digest:
0d3eb140eb9e66de25e4a48454b3eaae21caef19cc6493bfb27277822a03b9e8 - Sigstore transparency entry: 1720718531
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 968.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01809212529690e814032bae783a7d5a5e9d54bfdf35d8345fce76994e2553d7
|
|
| MD5 |
8fbf65561b385df61ee85fe5a48ed053
|
|
| BLAKE2b-256 |
33a0faf831ba4aebcbeff1509754a6356027f5f4492bbd5647345e83a7f1e018
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
01809212529690e814032bae783a7d5a5e9d54bfdf35d8345fce76994e2553d7 - Sigstore transparency entry: 1720717086
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49552304dacf90f22bff62d7f7846bef76bec59890f2ffd5d18727546af2f928
|
|
| MD5 |
f66d6a8ff3807a4169320940c789566a
|
|
| BLAKE2b-256 |
394dccfe0c095e4d02df9e6ded713d39c7da13850936c911368a59c86087307b
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
49552304dacf90f22bff62d7f7846bef76bec59890f2ffd5d18727546af2f928 - Sigstore transparency entry: 1720713281
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 791.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15638eac9e7fef449f825d788c340584b7c4497ebeb0ea0c8aea156603596ea6
|
|
| MD5 |
e2b3be3d5da794dfd296c6c7ae0b0fe8
|
|
| BLAKE2b-256 |
a908a81e25d8c7dea2277eea02bbac2bf773e4d1671775b8aadb922a92984a70
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
15638eac9e7fef449f825d788c340584b7c4497ebeb0ea0c8aea156603596ea6 - Sigstore transparency entry: 1720718459
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 803.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77f203b1960f7f485ae2155f1c0d36e595f2ee4c28639f2caf5f3f796a052b70
|
|
| MD5 |
b5d30221654a558decdad94450523e90
|
|
| BLAKE2b-256 |
044abc24a7733d318b09744c885f304dd0c53275525929c0f30adc8d7722d267
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
77f203b1960f7f485ae2155f1c0d36e595f2ee4c28639f2caf5f3f796a052b70 - Sigstore transparency entry: 1720721282
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 860.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a375c4fb895fd56cd5c4924b429568774cfb09db0b1ebd1711ecb714ac0fd9e6
|
|
| MD5 |
ccb4689c2337957f539c912dabe95c1f
|
|
| BLAKE2b-256 |
e2285f292c9bae0f238597417b9f3435ff888161370c284c351ca127a98337c9
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
a375c4fb895fd56cd5c4924b429568774cfb09db0b1ebd1711ecb714ac0fd9e6 - Sigstore transparency entry: 1720720331
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 696.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b435e969ab599d7616360e76135ddfb735214ec0204986581dc7abb499e4240e
|
|
| MD5 |
d12ac065a4581e82770605ac63f73c27
|
|
| BLAKE2b-256 |
deefdd09124a5834d82d3bc57488afe4fb5deb208bc67dc05a0c10983001ee46
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
b435e969ab599d7616360e76135ddfb735214ec0204986581dc7abb499e4240e - Sigstore transparency entry: 1720719682
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b82e0ffdcf34a93a299a70d82524e44dac1d487cf8a14dda89c1fb731f092a69
|
|
| MD5 |
38aaa3a696ddbddc3bec8879bc2bbdee
|
|
| BLAKE2b-256 |
664b52f0b2a3e4996d4d3e81a3d2af9557cecb949f107a54ee90726424ed6376
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b82e0ffdcf34a93a299a70d82524e44dac1d487cf8a14dda89c1fb731f092a69 - Sigstore transparency entry: 1720717013
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 702.4 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
773ec3476426ddb9a5d314b9329454fcb97eb4dd097af47aaca3f6cfc6814b07
|
|
| MD5 |
fd277b78a8a64f25a18d4988957dff0e
|
|
| BLAKE2b-256 |
8b3d0ee9f95035619e4956a2024e8398c6e3debead83c69b9810d751ac674253
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
773ec3476426ddb9a5d314b9329454fcb97eb4dd097af47aaca3f6cfc6814b07 - Sigstore transparency entry: 1720716266
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 850.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5811e01217ab7b14245d9ef4693e8bd68fa0a1a5052317dbd08dad687085d07f
|
|
| MD5 |
a782d4bacd7fe548cacedcfd606c7c2c
|
|
| BLAKE2b-256 |
67184135a5c01fa9fdaf89746233c64ee902672480e512858d09cb505624d3ad
|
Provenance
The following attestation bundles were made for within_py-0.2.0-cp312-cp312-macosx_10_12_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.2.0-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
5811e01217ab7b14245d9ef4693e8bd68fa0a1a5052317dbd08dad687085d07f - Sigstore transparency entry: 1720719020
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 948.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b499f902b76b883f6d2fb78a1a236fefdcae63512a9f206d88ac76e84b8d10ab
|
|
| MD5 |
da20b739f61a688a97dd391eed4e94ec
|
|
| BLAKE2b-256 |
87cf96df09f6bdf7d93f9ccb8bde2c9064b0f158d3580e522036bab7e520e63d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-win_amd64.whl -
Subject digest:
b499f902b76b883f6d2fb78a1a236fefdcae63512a9f206d88ac76e84b8d10ab - Sigstore transparency entry: 1720715598
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbc9029b3ef25c08ce923c441e9342d1b4237efa68d8fcf1e745fe867e8d7c64
|
|
| MD5 |
da9eeda25b2921d0cc9eefda767ebfee
|
|
| BLAKE2b-256 |
ef9d43ee6f5155ff1b9d08ab81d62dae88d4b2fc045bc1347a3c8ceeccf33805
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
bbc9029b3ef25c08ce923c441e9342d1b4237efa68d8fcf1e745fe867e8d7c64 - Sigstore transparency entry: 1720718875
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d13999b87f56e18060e75121eaf02b7947463d62136fa2ae7ee0f375e837ba1
|
|
| MD5 |
0edd152b06a8a5a2ebf1acb71bd381a8
|
|
| BLAKE2b-256 |
ce654b2eca10a18798e7f3954a54460d3d1455aad98db7066a3201f7db34000d
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-musllinux_1_2_i686.whl -
Subject digest:
8d13999b87f56e18060e75121eaf02b7947463d62136fa2ae7ee0f375e837ba1 - Sigstore transparency entry: 1720714792
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 970.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c23257d5ae5b56cc85b47ecea371a281141212e0f010445f33022952f7d48a12
|
|
| MD5 |
884dd415e0886896ad4d74c50040d25c
|
|
| BLAKE2b-256 |
02e6e897949eab1a9742b5eb7811b86cfd0dffc9304a2f557852f845dba02904
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-musllinux_1_2_armv7l.whl -
Subject digest:
c23257d5ae5b56cc85b47ecea371a281141212e0f010445f33022952f7d48a12 - Sigstore transparency entry: 1720714717
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 969.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a976bd8c4f90991e0b661506290aca9714ad401d9f87d886b43f5d4ea5b4aad8
|
|
| MD5 |
7d5ad8a4a52a97f4c9c8fb8dedad2527
|
|
| BLAKE2b-256 |
7121d774feba070da422790787e0c5a497ecea62d7917f4f9249d6adc5778128
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
a976bd8c4f90991e0b661506290aca9714ad401d9f87d886b43f5d4ea5b4aad8 - Sigstore transparency entry: 1720719981
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
624f98366467cf2bac86e63510b22dd3c94e1a60c8e8c241c264919e3fd50266
|
|
| MD5 |
506e7de458df09fc3962257419cdcf46
|
|
| BLAKE2b-256 |
aa3036a583f2a647aee907734a4ee3de2e70daeed42ed0b2cbf6cca22df151e9
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
624f98366467cf2bac86e63510b22dd3c94e1a60c8e8c241c264919e3fd50266 - Sigstore transparency entry: 1720715808
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 791.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef8c234e019426ee6c256037fbef809c5d983b7fbb509c5fa3282118fcc90ecd
|
|
| MD5 |
5d34d85ca57c73e4f900bc093de1baa4
|
|
| BLAKE2b-256 |
7fecec1448936eb6e3e071fe060422d48f03fcd15ed177e48c348e042f8daa45
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
ef8c234e019426ee6c256037fbef809c5d983b7fbb509c5fa3282118fcc90ecd - Sigstore transparency entry: 1720717999
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 804.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7156693088c18b39db78b9d2d3e2bd744206b50f74ba2b479fdcd5638989f4b6
|
|
| MD5 |
33bc4d17c7c9bc633d554c7f3ff79ed3
|
|
| BLAKE2b-256 |
4216d5d586fee0171aa72abe49ba8f1daad31b6e8ae8f9ed25d59f57fd891769
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
7156693088c18b39db78b9d2d3e2bd744206b50f74ba2b479fdcd5638989f4b6 - Sigstore transparency entry: 1720712792
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 861.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c50866e0bd8b0881d6213296e7cc825b1fe8d98baa72cf0c35c0d3fea5a858e
|
|
| MD5 |
9199dcd5a3a8d2384a56adfdfcdcd80e
|
|
| BLAKE2b-256 |
e02981e1af3b6bdc84cf902bf2b7ee16aa650aea70a9177a2bc59805f61832e6
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
5c50866e0bd8b0881d6213296e7cc825b1fe8d98baa72cf0c35c0d3fea5a858e - Sigstore transparency entry: 1720717568
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 696.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47679204bc38b1528e159a829b980d774d019dc32e76490168207343f46ed0ac
|
|
| MD5 |
a9923f101b9afe56bd7d074f4178e32a
|
|
| BLAKE2b-256 |
ee0f4e7eebde1101a08eb7b9fece0dd72117480eaa401dc0bf5190bd694100c8
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
47679204bc38b1528e159a829b980d774d019dc32e76490168207343f46ed0ac - Sigstore transparency entry: 1720714255
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36ae2b08676532a0c073499d7e29b6135ffcd437e2c8512a7b7291bbf7b9ef53
|
|
| MD5 |
7866fb96fc7be622b90569353cf20618
|
|
| BLAKE2b-256 |
115336da1c21f57a3f5538f1592b66661775e74eb2d04400028e066cb752a8d1
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
36ae2b08676532a0c073499d7e29b6135ffcd437e2c8512a7b7291bbf7b9ef53 - Sigstore transparency entry: 1720720965
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 702.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56ef3677daeb04e493490a69b3397a130724d07f4df3df4c50fcff5fdaee2329
|
|
| MD5 |
b0097d1ccde17fa2b8ca746300de5d01
|
|
| BLAKE2b-256 |
802d645e174a7f35f52a816174e2aba490c39dc0aef12ea4145ee5a08effb9a2
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
56ef3677daeb04e493490a69b3397a130724d07f4df3df4c50fcff5fdaee2329 - Sigstore transparency entry: 1720718801
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 850.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8648812b9f3c324c927dbfc4176b3558fcec8a9869e1b3812e78675952876fac
|
|
| MD5 |
0d28fbc8fe81123552cdf0c15da38fbf
|
|
| BLAKE2b-256 |
3f48ecd05a4c03247cab5c69c3dcfd5cf7bf05875ebe4c01ac96d1f63b77b5ff
|
Provenance
The following attestation bundles were made for within_py-0.2.0-cp311-cp311-macosx_10_12_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.2.0-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
8648812b9f3c324c927dbfc4176b3558fcec8a9869e1b3812e78675952876fac - Sigstore transparency entry: 1720717469
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 948.3 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a9ac18bca5bfb54616d966e360cc208811d9ace880bf16491046f7e5ad5e8c8
|
|
| MD5 |
dda4e5463d56724705cb58c2f83ad0fb
|
|
| BLAKE2b-256 |
656c0490b83199fc8c2851e404f1c1ff720accb4ac68686f0ae2b6238b9faab9
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-win_amd64.whl -
Subject digest:
2a9ac18bca5bfb54616d966e360cc208811d9ace880bf16491046f7e5ad5e8c8 - Sigstore transparency entry: 1720714884
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc1cd84759bcf42af19ccedfd89004b3052a61cba9d53b2553b2b725b0d6bd3d
|
|
| MD5 |
0fffe80df616c471841db719843cb3bd
|
|
| BLAKE2b-256 |
34f37fc22d1e149e385604e570cd5bc42c9ae2a66a9e30a9447201e380dc027c
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
cc1cd84759bcf42af19ccedfd89004b3052a61cba9d53b2553b2b725b0d6bd3d - Sigstore transparency entry: 1720712703
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2da7d4221b621d7fdb12ae56624bb21db0dc7367e38ccbeca907333c5534874
|
|
| MD5 |
2f953a222cf638a30ebce6ff3968f809
|
|
| BLAKE2b-256 |
a017155cbdd9c7763f5a84df33111c4211732183a0c2acde21603f7b35585590
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-musllinux_1_2_i686.whl -
Subject digest:
a2da7d4221b621d7fdb12ae56624bb21db0dc7367e38ccbeca907333c5534874 - Sigstore transparency entry: 1720720068
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 971.3 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0228e40fde29399a7f8ff857bbee818226decbfc8c754a808d2d33db8a70003
|
|
| MD5 |
c9eb98e5e434f2ea1ad503ae801008ee
|
|
| BLAKE2b-256 |
856c32e1d9b0ac6757945eddd0eca0f5d643ab6d1ae1b4520762853b022b43d1
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-musllinux_1_2_armv7l.whl -
Subject digest:
c0228e40fde29399a7f8ff857bbee818226decbfc8c754a808d2d33db8a70003 - Sigstore transparency entry: 1720714439
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 969.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7bfbfdac90e1b73ce2d7266b5cb2509161c76a79c70c189f0bbb5d37004047e
|
|
| MD5 |
9f0756d328a6f392a57b9018a37abde9
|
|
| BLAKE2b-256 |
b29f57910392342004d79371989643181415aa0d1bdef045028ae58670db81c7
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
b7bfbfdac90e1b73ce2d7266b5cb2509161c76a79c70c189f0bbb5d37004047e - Sigstore transparency entry: 1720721430
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf07b48e4722a7817bd449ef68c8e5942136463d05d86135aae157c71c37598f
|
|
| MD5 |
34fb230d4cdaa527ac034198d886042c
|
|
| BLAKE2b-256 |
73c190141209f65f33d7ea1ec7bd6ee16c05eecf89583e733188cf284970c0d8
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
bf07b48e4722a7817bd449ef68c8e5942136463d05d86135aae157c71c37598f - Sigstore transparency entry: 1720713053
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 791.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
112942bb5dca00c300e584b231cbc17462bc1e8b4148b11fa8ef1a1d9d304f4f
|
|
| MD5 |
10ae0a543df80459cb83d8948b5a43c7
|
|
| BLAKE2b-256 |
164cf77aba6df209f30934ffdcaa021d1647fe482858ff2721687a94eb4671e3
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
112942bb5dca00c300e584b231cbc17462bc1e8b4148b11fa8ef1a1d9d304f4f - Sigstore transparency entry: 1720716766
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 804.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cb62734f6b79160511179b05c28104288304c794431e9d4b206ef15bc79d4fa
|
|
| MD5 |
4f001d01d5411ec8dd0a7ed033f83a7e
|
|
| BLAKE2b-256 |
a8d76a85311c21facc068cc4531459e28e8a1169c3cec4abb7e3e522d6582370
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
5cb62734f6b79160511179b05c28104288304c794431e9d4b206ef15bc79d4fa - Sigstore transparency entry: 1720717905
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 861.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ff89a4c62f3babcc7f803ea3c72634266ce50e929cdc930b064a07e0827cc1a
|
|
| MD5 |
2daf449a47d92096532f5291be903ec0
|
|
| BLAKE2b-256 |
592124047028c99da145f41cc283ecb98b6836dff80e46f00f4fb156131aadf7
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
4ff89a4c62f3babcc7f803ea3c72634266ce50e929cdc930b064a07e0827cc1a - Sigstore transparency entry: 1720718935
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 697.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
017aa3d828acc6b985020e9eea93e6d689f2cb3b39047f1345e201b240e9e953
|
|
| MD5 |
824c995eccecea23792283f438288b44
|
|
| BLAKE2b-256 |
9b664daa624d7aff268e026976ee8b33701d24641ef70908e27ef873241340ba
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
017aa3d828acc6b985020e9eea93e6d689f2cb3b39047f1345e201b240e9e953 - Sigstore transparency entry: 1720713367
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 791.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7052156df05460048734737ec3a8f742c63a4be8714071f3abc5b527bf9766e
|
|
| MD5 |
9625ab03e16f99fa70f48a492dc65cc7
|
|
| BLAKE2b-256 |
3d0c92eb3b60f75dabc689dcc9361cda9c8897bf06a467016188e9f68b22a4b9
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
f7052156df05460048734737ec3a8f742c63a4be8714071f3abc5b527bf9766e - Sigstore transparency entry: 1720721335
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b43b2dda528132081e9cf2df7fd6d4d7bd12dc6e75c0666453f0ee4cc8e60a7a
|
|
| MD5 |
171233b759d090e1bdad866d034ddbf1
|
|
| BLAKE2b-256 |
37e69459f10b790a5e1d00c06bb2566b5b16c4dbed54450015090ef8633f1a08
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
b43b2dda528132081e9cf2df7fd6d4d7bd12dc6e75c0666453f0ee4cc8e60a7a - Sigstore transparency entry: 1720722244
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08ab6b24ac76f6d3d335df7a8022a09008852236a8f5893df7b6c8d6d2cc4b4f
|
|
| MD5 |
2faa339a66c4de9a0ee5361e29c9458b
|
|
| BLAKE2b-256 |
dbd0b9b546fa4297a580183ead6d34f942c943ae7c699cd676acc7a71e1ecbe0
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-musllinux_1_2_i686.whl -
Subject digest:
08ab6b24ac76f6d3d335df7a8022a09008852236a8f5893df7b6c8d6d2cc4b4f - Sigstore transparency entry: 1720720713
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 971.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bfdcd23503366406383cccc32a44784608d24fa11607b41418a1abcda8ece61
|
|
| MD5 |
810d16e3da23bfec30ac67fa4a95203c
|
|
| BLAKE2b-256 |
55141995e506b2b9a74e843a7e26b755a1d3aba57a2f4aef513f5d6593a50b31
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-musllinux_1_2_armv7l.whl -
Subject digest:
2bfdcd23503366406383cccc32a44784608d24fa11607b41418a1abcda8ece61 - Sigstore transparency entry: 1720720780
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 970.6 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f278c0170cc5a6f0a6dd68f34b90cdf503ea43000e23ba5d8da2a9a1cc4a5590
|
|
| MD5 |
77d72a920fdfd81f6f6c8e896cdcb7df
|
|
| BLAKE2b-256 |
52c1719e0eabbed1ff927ff7a30a69b786b23b5fac373774e0b482efdc2c97f0
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
f278c0170cc5a6f0a6dd68f34b90cdf503ea43000e23ba5d8da2a9a1cc4a5590 - Sigstore transparency entry: 1720721996
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: within_py-0.2.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4864ec170b2aa8b18cd1a5e7ee6e3fe044c6ee18f8791ce84eb2feb1432e0885
|
|
| MD5 |
468f3ea3a570730087b88550e24edaba
|
|
| BLAKE2b-256 |
dd7acfccf9452a0ace381bf48810c10bc2c39e0b63ec8e14f564d0b52079ed64
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
4864ec170b2aa8b18cd1a5e7ee6e3fe044c6ee18f8791ce84eb2feb1432e0885 - Sigstore transparency entry: 1720717750
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 792.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdf31fd36e51649e649c765953df8392a6239c6aba42283157fd651972a2f49c
|
|
| MD5 |
346733e31b16491382e2533f833aaefa
|
|
| BLAKE2b-256 |
ff18c6ccf73ea4d097a89953894c2276a40718ecb08f8274fc3a6bd4fea39d74
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl -
Subject digest:
fdf31fd36e51649e649c765953df8392a6239c6aba42283157fd651972a2f49c - Sigstore transparency entry: 1720718702
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 804.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b898e4079b152ee573d24693ddc1f2fcc1830a8a71b0f6d9a9c66763834f6c1
|
|
| MD5 |
dc1a30cfbc15c951d0d19ab9f2490024
|
|
| BLAKE2b-256 |
8a1a922802304995f2932563901c9db378ea3b73b1fb3167de377b9558fa9b2f
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl -
Subject digest:
3b898e4079b152ee573d24693ddc1f2fcc1830a8a71b0f6d9a9c66763834f6c1 - Sigstore transparency entry: 1720719409
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 862.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c0b3d63b2492b97f945c54194c4e908ff130ee45c6a1cc02c3c379e91c0451e
|
|
| MD5 |
4fa3aec5ae746c613ac9b79d29e32a7c
|
|
| BLAKE2b-256 |
ac4cb8aa6f37fc1cfb5b8b5f5681d1ccc0b97c3c8a5c994eb478cb8f7060dd9f
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl -
Subject digest:
1c0b3d63b2492b97f945c54194c4e908ff130ee45c6a1cc02c3c379e91c0451e - Sigstore transparency entry: 1720718298
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 698.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5d94dfb0400f3d2fc31c3ec7e55c7f040785d502aa0f917e3d75b6ba00330ff
|
|
| MD5 |
a5a18aa9e51d16c8c3d8d3c382c757c4
|
|
| BLAKE2b-256 |
9615402f27e13c6da8dfbfe342ed3de5606c2f214d4e539e857a83e1e072fdab
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl -
Subject digest:
a5d94dfb0400f3d2fc31c3ec7e55c7f040785d502aa0f917e3d75b6ba00330ff - Sigstore transparency entry: 1720720583
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type:
File details
Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: within_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 793.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3162bf97c2e6e1e5b04cd74e36f89d6b1ac4c4d9126ddc3cfdbf4c78b6c2914d
|
|
| MD5 |
027d946004cb7a76ae1905fffcf50100
|
|
| BLAKE2b-256 |
298e224d0bf5059e4e25f8644522d950c84cf5f2fab45f7697c15296ffc3d261
|
Provenance
The following attestation bundles were made for within_py-0.2.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.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
3162bf97c2e6e1e5b04cd74e36f89d6b1ac4c4d9126ddc3cfdbf4c78b6c2914d - Sigstore transparency entry: 1720716955
- Sigstore integration time:
-
Permalink:
py-econometrics/within@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/py-econometrics
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@bfef2445f853a20a56a842153d6c7d4e93a3577e -
Trigger Event:
push
-
Statement type: