Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

within_py-0.2.0.tar.gz (142.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (970.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (968.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (790.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (803.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (860.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (696.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (970.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (969.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (791.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (803.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (696.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (971.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (969.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (791.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (803.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (697.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

within_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

within_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (969.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (967.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

within_py-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

within_py-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (802.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (694.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (790.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp314-cp314-win_arm64.whl (606.8 kB view details)

Uploaded CPython 3.14Windows ARM64

within_py-0.2.0-cp314-cp314-win_amd64.whl (950.3 kB view details)

Uploaded CPython 3.14Windows x86-64

within_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

within_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

within_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (971.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

within_py-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

within_py-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (792.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

within_py-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (803.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (861.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

within_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (697.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (702.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

within_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (850.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

within_py-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

within_py-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

within_py-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (968.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (967.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

within_py-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (789.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

within_py-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (802.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (694.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (790.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp313-cp313-win_arm64.whl (606.1 kB view details)

Uploaded CPython 3.13Windows ARM64

within_py-0.2.0-cp313-cp313-win_amd64.whl (949.9 kB view details)

Uploaded CPython 3.13Windows x86-64

within_py-0.2.0-cp313-cp313-win32.whl (594.0 kB view details)

Uploaded CPython 3.13Windows x86

within_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

within_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

within_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (970.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (968.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

within_py-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

within_py-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (791.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

within_py-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (803.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (860.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

within_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (696.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (702.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

within_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (850.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

within_py-0.2.0-cp312-cp312-win_arm64.whl (606.2 kB view details)

Uploaded CPython 3.12Windows ARM64

within_py-0.2.0-cp312-cp312-win_amd64.whl (950.0 kB view details)

Uploaded CPython 3.12Windows x86-64

within_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

within_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

within_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (970.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

within_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

within_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (791.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

within_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (803.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (860.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

within_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (696.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (702.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

within_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (850.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

within_py-0.2.0-cp311-cp311-win_amd64.whl (948.3 kB view details)

Uploaded CPython 3.11Windows x86-64

within_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

within_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

within_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (970.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (969.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

within_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

within_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (791.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

within_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (804.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (861.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

within_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (696.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (702.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

within_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (850.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

within_py-0.2.0-cp310-cp310-win_amd64.whl (948.3 kB view details)

Uploaded CPython 3.10Windows x86-64

within_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

within_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

within_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (971.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (969.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

within_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

within_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (791.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

within_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (804.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (861.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

within_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (697.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (791.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

within_py-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

within_py-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

within_py-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (971.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

within_py-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (970.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

within_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

within_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (792.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

within_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (804.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

within_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (862.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

within_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (698.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

within_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (793.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Hashes for within_py-0.2.0.tar.gz
Algorithm Hash digest
SHA256 99b2a43a9b2c96d3057f25879e089b4ef9ef270a3b73c76388d26d75a79bf353
MD5 71c50c0a8ac7af948cec2e22d08719cc
BLAKE2b-256 b5799207a0d01b30065beb68e4875ee00478870df504c66837475d3ca676b9e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for within_py-0.2.0.tar.gz:

Publisher: publish.yml on py-econometrics/within

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 153b561719f24d15b110b63309d84c0b5f5634d73800affb8027aa250ac9abb5
MD5 db0f0a2b68c307cfa1a26322b2a576c5
BLAKE2b-256 0f28773d94b2ef4c75eb67f0ca52299f31905219e3d502630ef099efe5acb8db

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 288404a0cda14ac3fee0774151cee1aa08fb8eb83f8cbccc62874c0f9c015b3b
MD5 04656e0a0f3d02e5be07eaff5035ed96
BLAKE2b-256 243a8a3e9bbe0d72b6539177c7108d59fc8dedc9e2bac3c47b38771946081f24

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b65db7d20277347f3730f6ea2888268fba24a513c69073da9aef9d2a9681f89
MD5 d7e3097ab58fe7dfaf528b0c1261847f
BLAKE2b-256 0a92fda14cae94b5221c4f9027d89dacd52cd1d79c37bb648f0bb05967dd9d95

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 054ff709ad6b17fafc018ad70c99bcb3ad58ba942e3810a804469caa81f63805
MD5 3159f08d92c6179e3723fe1b21cd1050
BLAKE2b-256 59b4a55436c444abe2223da18a6a48cb88b3ae42896372aad081c46137abbaac

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db0a4c9acbf7d59774d34abab4b40b9ace922fe13aceb36ccc58a897114e770
MD5 e772358e4b618dd15fc70ac4ea1fbbfe
BLAKE2b-256 15cbb65db8647bb3d4f6560688611938b6ffa53300bc974c8b24092f11e5827f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c32f41bcf330bf066d74b953afa472b0943d8acde5953d5fff82d907ed56a86c
MD5 0989bbc412eddb3acf65cbdfb72c5f48
BLAKE2b-256 655c5646ac56ace9819594a00c289d9a02aa5b319eb29c08ae5ae190b406b392

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3903775bfc9689a7e827105e65870f81b3c1370ac5dd3a0b3d7b98c70b36428e
MD5 e1972f1f51b27cfbcc79a2a6c07f1f25
BLAKE2b-256 6c5fecc4cee13a80ba4b41b4e3d230563fcf5fd0d72aa514b46dd1512d18bcaf

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0dd46b700b4dff72ff2846dc85a6286b972883e3dc3542a8bc98709a619a3958
MD5 73113307aa7960dedae9ee8b0ac20be2
BLAKE2b-256 be0b6dfce107133c41a983608fbfd8dd35e05e63eb5069c181b1c2b896d36517

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a4e04e17ef9cf7725a6ea4a7c9b8a3f77d75c7edc11f14bfe94e242396ba7f2
MD5 b5745027f01b8527282397e6957ad11d
BLAKE2b-256 473a1243b166bfd9c57ef627047d46956c50631f464c5d697cb2b094dbcf44f9

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9034bf63fac04b9db103c231751ff699c6c600a0bb4542dd77782c1b003de252
MD5 cedfade8b04d5d8b934bc19b9ebfd3f1
BLAKE2b-256 a0b4d51b58c2175b646ac2b4179c553b3b3aa317312da72cd890634181132c25

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 504bd72c1d29764abab1b966fca860cbfdda724497a2dde7a74f92759c537620
MD5 f0621164d4179275a4489d6ef2d91283
BLAKE2b-256 96089820f3eb76423bb02de059cf599bf98b6816ada3fe5e2c94f23ff52ed32d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44e3e0410726918f7c787998127a47895287b2854cdaab45f4ab9ff75ce55cc7
MD5 4351513f44c95360daafc5b0f8b082f2
BLAKE2b-256 1c2d845857d31dba03c32b40cca29728dcdc7ac2202f2d8eddd12bf604430ba3

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b72a5ed021c3ef89ee66cfae64b9f92a9913987dfcd00d511658d2ea1af17830
MD5 8fbc0c802b530ea749ae023c81053c89
BLAKE2b-256 22adfee72211d67e88f64ae25d46c3b763d00cdaebdb3a9afbc994a92fb4c4f0

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab79e3608da4889ab1491455b6140ac9650f2d8d303e8b46b9a19097e3287402
MD5 f5d8ca6524d958af16f00feeddbf4a7a
BLAKE2b-256 f1cec3967586e9cc16f710406ccad1fa987d25e1c133f184870d787c80c79c22

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cdd96afda731c09578f11a32685b64ec0805b0abb6b6d37381190edde8cbce0
MD5 78d784d0782c0fae7e8fa0a1c8e47866
BLAKE2b-256 b0f810aadbd13edb7ec2bfa9de9f16875aebeca776c1bf613377e479da0cd227

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30d492f8bccd830b464e81b6b0c15827e4afd20724e6f356883210b1fb3853b3
MD5 0eeb83a4ed11a251935285d3099852bb
BLAKE2b-256 20006f51aa9acb92739d73f001c2fb9a8ffaaed09cffdcba42b6bfc5fa0be7b1

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7476e8f3bf3f17b3d3ad7e289038e46927ebbb4341792dd869f2c1e745c5e317
MD5 608fb7722b395c74909db105a6b64fa6
BLAKE2b-256 8c8b3d7dc8299737469e5fbe52d9b7b6c398e9809be282140487bf484ec59556

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6439cb062d5a733b49fd390c23a12392622c66cfe8a1fcc533fb7e3c5de98a5c
MD5 ae093c8fbe86857784587d2a5e43b5b1
BLAKE2b-256 b41e8d5f695d32fd73897932a049689fe097e8e35c6eb03485a08013d37f546a

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d158e9836fa093ac38fa1183704c8d389d11fd7c968e4fca7286848ae16e57e
MD5 4d4612e4e923ee0d61f113f087e6db24
BLAKE2b-256 6489b0a0f3eaa21bdaa373eff3a17dcc66119a3e031384a36b5ac5466e34993b

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 340d7d362e933fd178fae5ebeab11c920150813a38eb0d8845a0be53120ac322
MD5 12990eb16dee1260893580765dd6fd11
BLAKE2b-256 6df5bafc495bd85bb385ee48ca7ad0f51b0baf0f994e201ea8baa2011aa64d2d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba00316efe9864dae7f4d7096456426a1ac6bdb5d6a41a9b6626536c829079b0
MD5 e929b9456a51aca6097982b2bcb1985e
BLAKE2b-256 babaeb6c30bba8f2828c32b2fc57ceba9ae4b04ad975bec0017a3b0eb86e2008

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21193f75d9f515f610f3d54fecb0e0914a7963bfba804816f9e6776c74a2a6f4
MD5 a3397a70404ca582079e6a044b1f508f
BLAKE2b-256 4c9604bbeda6811ab21ff7b9fc19e648e4f67a83dab115ccc791189a727ba48a

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86b534dc708905613c7c99c48a326fca6f989570798da59f31bfbdc0e59a4084
MD5 5a311b9c8fcdeae086e9efddaa36e577
BLAKE2b-256 0cb19c7e88191049db0a0fdb46c4d595203870e55af7e24c709930bb3ae32af8

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84f9306e09a2347dff652a77a9226d99059ddcbba0b6191b8e3ff089c74b651c
MD5 fbccd77b643e2483e6069fe4d78690c9
BLAKE2b-256 6141172b4f30a3659e752a1c5e5cdf083734dfd27f30d5cd331c8d482d48138d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ff50b6f797578a3e1068635163b3d53d27358d3ced112ea7e5c72e7b9c16df1
MD5 f76567fe521b9ca30bb3a52ad632f692
BLAKE2b-256 fc88c551b9abda559afb700b6a4fb080f8d77d5d93972c809f8c08faba0424e3

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccf98274040944d4706f6d3707c79b1497b4fa4f9b45323105824c05c6493b9e
MD5 ef94ed85ac02206568d45efa75e7619f
BLAKE2b-256 6cfc696f846f165244e6f23b40a131ddab4ccdcd06b23cff8915e1bd02d3aaaf

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 539802771af22a61a10128a2ddfb57243ff9e7c01730ecfad1b3a78157601103
MD5 6a48280b772f93672a050d191fe5364b
BLAKE2b-256 e54a1596f15ad5dbaa3990dbb6d921440d6e0d74ff2b6806946cb67be9ff829e

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9c339a1d1ad11c10c496b80ad29d55e1bcf69861235c606acddae71110cd9e8
MD5 53bb56a16a9b0444a952e0194a35402e
BLAKE2b-256 3e22ee5c1c5759e61ebb51052a11f96c3ec9621e31329b77bef23aa27551d116

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 08b43a4282147d9849cfa55ef8c457121ab6cf41562769f7d858d4b9e58c1d6b
MD5 2717bfaa76c616ead751df4976597edc
BLAKE2b-256 1a9692b5dd167fc3350371b190b8f36f918e1005a4ead85906dbc41561482c51

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd7ed7c530943afdc851ec16f12346fd5447eac213e4afd8ed2ea7c8cca0368e
MD5 ed4943b890a7e189cc18e74a1687b0ab
BLAKE2b-256 d58510ed10d3595fb3c0a3350f46c24de92135d95a84fa66335eb07fe8340038

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88a59e15a7e8885e8200786f87904cea08044303e4e2a9de3c239a71b141c9f7
MD5 0d95cd94686179b8939950a33f783613
BLAKE2b-256 e7cae232d23723ba3234fff09acb2ba6278ab488f07e74e36a7604d4fbd31e13

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02b80db0fd85b71ef70248c7f5c7de55ccbd8c282992ece8fd729326865ae734
MD5 37b47228988c554d9c0b1d0f5d21cf5a
BLAKE2b-256 f134035df26216b95213d6e7b1c118889f0bf0ffd4f3e938b1f0f9e078fbc68d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ec5f616a1dff05bba4b6aacd66e6874acc65df9b76a3703228707bf7a14ce8f
MD5 a99b6fad87ef9909a82f54c271efda61
BLAKE2b-256 62afa77bd426a73f50e0f4e1bdccc77b8ceb215fe07d3f067019972d7fe62dbc

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f036475c2e3f268eceac6f6764020c650dd50777a87eba70c402f6b35e8184b
MD5 13fbd7dd368adb0762f679549bcf5ec7
BLAKE2b-256 534e44454a3c2aecb1170f33071c0086ffa120e46e2409e4f662e27033f372d7

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 08b0e8ec4312afc9a07380313cdd7f9e46553e55bd72d5601ce84d19616a7951
MD5 cfe1c2a64939312c3a2bca1882fe8bdd
BLAKE2b-256 1d89ee63c63c74997f457183e7acc68182af85288dfed229abdffec0cf7306d0

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ab2b0de0f7caa576dd67b1d724326f15d064656228f5d0546ae5fbdd3449920a
MD5 c507b8e873079510ddcad3ae5e30c93c
BLAKE2b-256 4f3cee5b745534da540537ed373d006abd088523dd4b90fe4a078e4faa4c0ab9

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ef9e0a08cf4498df529b70c2e495f833b488fe37c1d20d1bd2d5f5db6f7e2cb
MD5 fc802be70758ca1f64a78e2d1a343d34
BLAKE2b-256 2824c3c417d431d4c5dbf3019373c3f7d8d1d500796ae3b49854fba7a76283b1

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc39200f292a4e848385764e5c202a10e4a4f524f2d4789f5ca2372fb143953a
MD5 26759b8c8aae1c39adfb988c6ab9cfc4
BLAKE2b-256 9dc34f065b9c79b94e356f2dc405313a506ec196f9741494953b1fcf44b8d3c5

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28d84423b3d55a374a74ad1beba7abfaa3714f5cac02273e7d8842ac4931ce05
MD5 70cf0714069ce2d3601c65467798d4d1
BLAKE2b-256 4d1aef16001f39f7d9183261bfd7d000f29c5570fc38238520f820e1819eee9e

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e59197291e9356abd08feed0edb65b34a6a099e824ad1097d89e2227d4d9973
MD5 8a6aa1fdd58eeada717862d9f4e58dbc
BLAKE2b-256 f6e0935c8051eca0ea10bb515ab6e1e64016719865fd20a8413a948b5b7e497d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6948c91c03191c2a019d9a0edfb9059713c09c202d623fe75fb3cfb26fca467
MD5 4218bd50222c0945ec565319ad931df5
BLAKE2b-256 a3bb3e3d38bd941f1a82bb2c917ba3a317a2845ae234e80de2b28b48828e8bf7

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff9bce4e4f07f53ffb22dbda47d0d129f23677e0e0b946826682422fdccac47c
MD5 f9e11b85336d9e00d61f4dbccdc8dbaa
BLAKE2b-256 08c72f4d4dbc73a7efa111a91942016da509cdf92ae9f0ab85fa0f83711afe79

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15157162c557b11e0c0c0f544de4d0781ea88d3063ace4ec9f53822aa24f808f
MD5 7d42074f16b202c8b5e8470a070347e2
BLAKE2b-256 be0fb2d278f790c29870385260671a99bb375deca9cb41e3f35db625bb9a21ea

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97e9212d14e31c3d0166c0bbb2fdcacec6c3f8eee096be2f7d06954bd0b635a2
MD5 ff1b7dada590067b896f99dec5b75f8d
BLAKE2b-256 853d168463370251af488e192901c127045c13bf01384f5e1f65cd3699bc6670

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 398e274293989caec74cfd6f1ba9057b370cac6c194c6426bbb0f056bab9ef06
MD5 093d927b36caeeecab5900f6f1d83286
BLAKE2b-256 4d55282b64f153c8319408d4e11e7181689eff047dfc4a51f6f4dfec1255e3b8

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73e45b425a1246dbab3a2384d07fcf88dcbef8760bc4b8be17b1ae5f0beedd30
MD5 75cd6affe8cf3660f2c2bd440ecfcbc0
BLAKE2b-256 804882ee2ec1cc1cd9f756bdac68f5eefd79c7897bc5badb00a1d65a9471fd54

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c93f5d1112fb52e54877426976c5a9aebcae389ffd254f464711746695cc09d5
MD5 5a29dcffdedbf58ee6ca8a442d9729fd
BLAKE2b-256 12abe32fe340b9758c55c80bf094b3e1e346b298f6ec065ae36ec513cb262340

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b0d3112f2502ee1dd58e32276b2b04f830cf54b21c722b538dba7a844a7982c
MD5 feb5ab9d706c3595d0f952bc445cbdfc
BLAKE2b-256 553e8cccd624d5ac9a6b3b032df63fa8b441fe28bea7b1c72a4a23fe2940dff4

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e637ecea9c2115957552f2aa00ab54a5e9c0a85e51bbdc406087e7d5584160ad
MD5 c6168de902215c6cc7b74edf6ccaee63
BLAKE2b-256 cfbe7950124fa21607c2e2c7fce8b0c9b5c84d434894f058187e1020f5ea52d5

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a6112cd1f820de628f5e6137aa554bc299b92d7cbc3b5ec91527a0d4777b483e
MD5 2025e329d5c724ec929bae8410ebcfd2
BLAKE2b-256 05af9557dda5936ade7bf357b41809a67f2395684ef3353dc55dc669cbc65437

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b5b06a452179373977841cdad1272dbf45d5668f7d32a21e9fc249658e300ced
MD5 a1d973765d54a8bed0d9e407ae3c1d22
BLAKE2b-256 bbf213c0c37662c82e7993cb1056c9956296dae99c1a21fd50857e24e9de3a52

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e597b2f2dbb829fabf27119816c452d35a45ba216c5f5040c575c47d6b0b6a5c
MD5 d9e9d7c7e90d32682219b5394e1baaaf
BLAKE2b-256 19d519a6e49e8bbfa8086c2ba4b9db8a531dfb9499f253ae47815d81a0d9b9a0

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f426b917db072c8942e8f1fa5d56675cd390a421182d3164bba73210f966f505
MD5 4c2cfaafe3321d57f6e2c590e0c5f51c
BLAKE2b-256 799e2ed19a1e25cb30f656ae50382a264d5e63368cad1a1bf0e32719c2cd39ce

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8132f6af9e028c871f90bbc6f10e7cc58d393fec978d9560bc1beebcd7269750
MD5 f44ebc495c4a7d15a820430a435029ec
BLAKE2b-256 cd45650379b02613058b8b57a1475a67b599dc5dc969b7a9d76d6969878618ba

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2817ae010a0649188c6ac591c4a924c52cd02c1f86493e617e8f714ec72bff1
MD5 e2a57e77a2c5b83f92284be357217611
BLAKE2b-256 09917f02e792ff94c311575da7d7846bdd67b4774af653bfdaa56697f431f58e

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38c2e1d5b7ae953a72a06a3716ba2f2802aa4893240287ed661044d61e3fbd83
MD5 bb875c44d3cf58b24789d32a0c85bec7
BLAKE2b-256 dde3b32049c4fd7956c519f4d5ccbeb3ba974f30a2f780c00278a5e56c361827

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 89b0614feddee708c1496f5e543f6ac2303fddcb8c7a4f1eeb5cf4ac8020e49a
MD5 3b2c1f367440b69d97935110686a6771
BLAKE2b-256 7f668348c2e72e7ac7e750f85c42f10a16218d24ebb67c4626730b0c400c0127

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 388830d5bdc83c59ae49db08152b72bd6ed0001ba053ad2f6eb6e73f1d291903
MD5 60edb14c1c5688a4d0bfec2ac92e53a8
BLAKE2b-256 a2e9eb606c4b6fc30e15a4fb568f912641213dad0cd7dad2a58f223dbee5dbbe

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3838f59168df7d4d599c4e3bc456bc5f0ad836476a1f2e83a5ea9a7035db805e
MD5 f3a41d03eb2cbd9a03d25ea79539acc7
BLAKE2b-256 1c389e9ecdc0e5f00ee550bdbfa5f0f468452d6ddcf72daa45f62186d65d1ea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for within_py-0.2.0-cp313-cp313-win32.whl:

Publisher: publish.yml on py-econometrics/within

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e430ffe5ea2030d2cd13885371d0c14697e29eced6c21a731dd123e48bf3c65
MD5 9e1d291dc3d4e7bc0423f6c938097439
BLAKE2b-256 42d5bc707d3075992605a854008a9dcc9d197880d2b0b79ffd6ab8c510264244

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bfca3fc532000e778ad27ae1b84a780dc726c6de502d125375a2b9ff11ee618
MD5 1d2ced0d52a563a5856f3a2d327928dd
BLAKE2b-256 8dabaaf655ab9fb91ca4e6788f2084c2c3065bc970b76b5edfaf216c77c8fcab

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d908e83651fd0a0b71dc82c81dd0639b944ef4b80d87bcf1a21a556a37dd5e1
MD5 b384795a6639c900b1a26abc8670c587
BLAKE2b-256 958fa2503d80bbe30e9ee15ad7029ddadc7ca3032a9b09df4bb4e514f02e3cb5

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89d141bd6254ac5043674bba88944a2fe3d41f7d178c436d2bed7e6161adfaf5
MD5 5e0e486826fbefca63742e06530f4979
BLAKE2b-256 b0659a9b8ddcf4907b8ce0f6e992d2d07734f17023b98ce7af2f5b4439b6299f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88e64cdac9ea69d427096f7adb0c04daf537e293fb5a91b55070f4184c77628d
MD5 97bad9ee6632f199235411b8b58a15ad
BLAKE2b-256 9ece6689712fb31406c4e40765fa6b2db3d90944e1e723e99d25e522013e0efc

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd6c449fa2eaad8d714b8ef2a54aa5ebfd3795c66a56647e0ba9eedff1a191fd
MD5 d9cbe12f0fbfd0ea14688c158e707c56
BLAKE2b-256 daeaf39c5be0b8d69c2f5a988406433d9a7b2dcb112053afeef98a1b9aff788b

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68debbc1cb30d11537df18ad38ee222fa0f050de70b60fffa239567573eb27fa
MD5 f2029b64b4711bec4009dbce4b2114af
BLAKE2b-256 cd4eb0b6c2d89def4d4bd3e409bb5ddc3a8379ce5d7170d24a649028de3c4f64

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57ac60a75be451d90c991d5b917a75ff3e0d01256ef7965ee2ca5ee4b50ce953
MD5 3785729d171c951622fe34653a3e693e
BLAKE2b-256 c41b5ee5b70009f61e185251f193ca6abe35750bf8b1e9c78c3ee0d1d03940fe

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b85a1d2a1ed402a396cb8e56d63b747ce4dde8bee7898c6b49f9fc6550b219c
MD5 7a25e28f68f70177d6c563e6f39cdf7b
BLAKE2b-256 83bc561f2845274d730e8b5dfcc259738a8578a9d2838efbb02504921e5c0862

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb536a6447325ffb40fc7f1a579f1ddd2f8c4ef4d450c1adb3c774960916f02c
MD5 5ae0cd42206555f803079e237b3a3c8a
BLAKE2b-256 5827c6fb186864986e86c45d4796cd2389e20a8acc85b9f1ee9a3cac4ee63e8e

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c27d8a68f612630bf7dc1fb9018166c5bbebc3e9b7d28cb76f0f77c085a6408
MD5 721db16b3b7169ff756394f09bbc2c53
BLAKE2b-256 b5a435ba3c2a0883327fe297e5ffeb85406131b64339ed617c9777b07ac04405

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fa730843a007dea5f4913e772e6d921e721d8c5b1ff612973e99156a27a5d4f
MD5 846e3bba70c700ae9a2cff5491bd4e90
BLAKE2b-256 94701287d7a40ec5288bc5a59a60b94694e687d1c7722946a83bc4a8ac0310bf

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 098fef51d98d51a0680df9a1573e0659ea7b95cc1d62034cd59dd5bce8d7aa7a
MD5 a80715c94a1f53ec35533f78861eba1e
BLAKE2b-256 e1c9de5063c5954f9db55faca30016c79802825c1b1954a7377ab45cf0ec44ce

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 137c7c30ad0cf8a808496a7434f959966a181e351cbf9e506f58f346c271b2a4
MD5 8cc34dda8ab232cadca2a8bd21f21a72
BLAKE2b-256 4bf816432f788739fbbac165c175f18bc60cd897c81396996eb656478ee21b2d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 825dfcc6c3a6f9dc362bcd376862d28b4c4ce18b760fc79edc43ba82e949f77a
MD5 3cf5967c28a9e3cfef760c79ec5a08a7
BLAKE2b-256 c0c36c0dab9a676b4afdaa1f38039a0ca8d38213524c9b0af1ba322294190333

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd9b3161afa74000257bc3d3542d4f2c1d406b85f2bf7d736083017d7c0103cc
MD5 e1c6542344a185871441cb48f512a0fc
BLAKE2b-256 74fd202d677f32528046f2acd7c72391bbf451e7b6a63e6d914e618d68d9a771

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d3eb140eb9e66de25e4a48454b3eaae21caef19cc6493bfb27277822a03b9e8
MD5 68b6e3af37071966a7e03136c2e7cb2a
BLAKE2b-256 32ca33c3c716abe9f0f5d5c1c83e3783e716240d2d7f48ab06d0d4c8762f0848

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01809212529690e814032bae783a7d5a5e9d54bfdf35d8345fce76994e2553d7
MD5 8fbf65561b385df61ee85fe5a48ed053
BLAKE2b-256 33a0faf831ba4aebcbeff1509754a6356027f5f4492bbd5647345e83a7f1e018

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49552304dacf90f22bff62d7f7846bef76bec59890f2ffd5d18727546af2f928
MD5 f66d6a8ff3807a4169320940c789566a
BLAKE2b-256 394dccfe0c095e4d02df9e6ded713d39c7da13850936c911368a59c86087307b

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15638eac9e7fef449f825d788c340584b7c4497ebeb0ea0c8aea156603596ea6
MD5 e2b3be3d5da794dfd296c6c7ae0b0fe8
BLAKE2b-256 a908a81e25d8c7dea2277eea02bbac2bf773e4d1671775b8aadb922a92984a70

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77f203b1960f7f485ae2155f1c0d36e595f2ee4c28639f2caf5f3f796a052b70
MD5 b5d30221654a558decdad94450523e90
BLAKE2b-256 044abc24a7733d318b09744c885f304dd0c53275525929c0f30adc8d7722d267

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a375c4fb895fd56cd5c4924b429568774cfb09db0b1ebd1711ecb714ac0fd9e6
MD5 ccb4689c2337957f539c912dabe95c1f
BLAKE2b-256 e2285f292c9bae0f238597417b9f3435ff888161370c284c351ca127a98337c9

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b435e969ab599d7616360e76135ddfb735214ec0204986581dc7abb499e4240e
MD5 d12ac065a4581e82770605ac63f73c27
BLAKE2b-256 deefdd09124a5834d82d3bc57488afe4fb5deb208bc67dc05a0c10983001ee46

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b82e0ffdcf34a93a299a70d82524e44dac1d487cf8a14dda89c1fb731f092a69
MD5 38aaa3a696ddbddc3bec8879bc2bbdee
BLAKE2b-256 664b52f0b2a3e4996d4d3e81a3d2af9557cecb949f107a54ee90726424ed6376

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 773ec3476426ddb9a5d314b9329454fcb97eb4dd097af47aaca3f6cfc6814b07
MD5 fd277b78a8a64f25a18d4988957dff0e
BLAKE2b-256 8b3d0ee9f95035619e4956a2024e8398c6e3debead83c69b9810d751ac674253

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5811e01217ab7b14245d9ef4693e8bd68fa0a1a5052317dbd08dad687085d07f
MD5 a782d4bacd7fe548cacedcfd606c7c2c
BLAKE2b-256 67184135a5c01fa9fdaf89746233c64ee902672480e512858d09cb505624d3ad

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b499f902b76b883f6d2fb78a1a236fefdcae63512a9f206d88ac76e84b8d10ab
MD5 da20b739f61a688a97dd391eed4e94ec
BLAKE2b-256 87cf96df09f6bdf7d93f9ccb8bde2c9064b0f158d3580e522036bab7e520e63d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbc9029b3ef25c08ce923c441e9342d1b4237efa68d8fcf1e745fe867e8d7c64
MD5 da9eeda25b2921d0cc9eefda767ebfee
BLAKE2b-256 ef9d43ee6f5155ff1b9d08ab81d62dae88d4b2fc045bc1347a3c8ceeccf33805

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d13999b87f56e18060e75121eaf02b7947463d62136fa2ae7ee0f375e837ba1
MD5 0edd152b06a8a5a2ebf1acb71bd381a8
BLAKE2b-256 ce654b2eca10a18798e7f3954a54460d3d1455aad98db7066a3201f7db34000d

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c23257d5ae5b56cc85b47ecea371a281141212e0f010445f33022952f7d48a12
MD5 884dd415e0886896ad4d74c50040d25c
BLAKE2b-256 02e6e897949eab1a9742b5eb7811b86cfd0dffc9304a2f557852f845dba02904

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a976bd8c4f90991e0b661506290aca9714ad401d9f87d886b43f5d4ea5b4aad8
MD5 7d5ad8a4a52a97f4c9c8fb8dedad2527
BLAKE2b-256 7121d774feba070da422790787e0c5a497ecea62d7917f4f9249d6adc5778128

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 624f98366467cf2bac86e63510b22dd3c94e1a60c8e8c241c264919e3fd50266
MD5 506e7de458df09fc3962257419cdcf46
BLAKE2b-256 aa3036a583f2a647aee907734a4ee3de2e70daeed42ed0b2cbf6cca22df151e9

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef8c234e019426ee6c256037fbef809c5d983b7fbb509c5fa3282118fcc90ecd
MD5 5d34d85ca57c73e4f900bc093de1baa4
BLAKE2b-256 7fecec1448936eb6e3e071fe060422d48f03fcd15ed177e48c348e042f8daa45

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7156693088c18b39db78b9d2d3e2bd744206b50f74ba2b479fdcd5638989f4b6
MD5 33bc4d17c7c9bc633d554c7f3ff79ed3
BLAKE2b-256 4216d5d586fee0171aa72abe49ba8f1daad31b6e8ae8f9ed25d59f57fd891769

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5c50866e0bd8b0881d6213296e7cc825b1fe8d98baa72cf0c35c0d3fea5a858e
MD5 9199dcd5a3a8d2384a56adfdfcdcd80e
BLAKE2b-256 e02981e1af3b6bdc84cf902bf2b7ee16aa650aea70a9177a2bc59805f61832e6

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47679204bc38b1528e159a829b980d774d019dc32e76490168207343f46ed0ac
MD5 a9923f101b9afe56bd7d074f4178e32a
BLAKE2b-256 ee0f4e7eebde1101a08eb7b9fece0dd72117480eaa401dc0bf5190bd694100c8

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36ae2b08676532a0c073499d7e29b6135ffcd437e2c8512a7b7291bbf7b9ef53
MD5 7866fb96fc7be622b90569353cf20618
BLAKE2b-256 115336da1c21f57a3f5538f1592b66661775e74eb2d04400028e066cb752a8d1

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56ef3677daeb04e493490a69b3397a130724d07f4df3df4c50fcff5fdaee2329
MD5 b0097d1ccde17fa2b8ca746300de5d01
BLAKE2b-256 802d645e174a7f35f52a816174e2aba490c39dc0aef12ea4145ee5a08effb9a2

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8648812b9f3c324c927dbfc4176b3558fcec8a9869e1b3812e78675952876fac
MD5 0d28fbc8fe81123552cdf0c15da38fbf
BLAKE2b-256 3f48ecd05a4c03247cab5c69c3dcfd5cf7bf05875ebe4c01ac96d1f63b77b5ff

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for within_py-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a9ac18bca5bfb54616d966e360cc208811d9ace880bf16491046f7e5ad5e8c8
MD5 dda4e5463d56724705cb58c2f83ad0fb
BLAKE2b-256 656c0490b83199fc8c2851e404f1c1ff720accb4ac68686f0ae2b6238b9faab9

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc1cd84759bcf42af19ccedfd89004b3052a61cba9d53b2553b2b725b0d6bd3d
MD5 0fffe80df616c471841db719843cb3bd
BLAKE2b-256 34f37fc22d1e149e385604e570cd5bc42c9ae2a66a9e30a9447201e380dc027c

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2da7d4221b621d7fdb12ae56624bb21db0dc7367e38ccbeca907333c5534874
MD5 2f953a222cf638a30ebce6ff3968f809
BLAKE2b-256 a017155cbdd9c7763f5a84df33111c4211732183a0c2acde21603f7b35585590

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0228e40fde29399a7f8ff857bbee818226decbfc8c754a808d2d33db8a70003
MD5 c9eb98e5e434f2ea1ad503ae801008ee
BLAKE2b-256 856c32e1d9b0ac6757945eddd0eca0f5d643ab6d1ae1b4520762853b022b43d1

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7bfbfdac90e1b73ce2d7266b5cb2509161c76a79c70c189f0bbb5d37004047e
MD5 9f0756d328a6f392a57b9018a37abde9
BLAKE2b-256 b29f57910392342004d79371989643181415aa0d1bdef045028ae58670db81c7

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf07b48e4722a7817bd449ef68c8e5942136463d05d86135aae157c71c37598f
MD5 34fb230d4cdaa527ac034198d886042c
BLAKE2b-256 73c190141209f65f33d7ea1ec7bd6ee16c05eecf89583e733188cf284970c0d8

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 112942bb5dca00c300e584b231cbc17462bc1e8b4148b11fa8ef1a1d9d304f4f
MD5 10ae0a543df80459cb83d8948b5a43c7
BLAKE2b-256 164cf77aba6df209f30934ffdcaa021d1647fe482858ff2721687a94eb4671e3

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cb62734f6b79160511179b05c28104288304c794431e9d4b206ef15bc79d4fa
MD5 4f001d01d5411ec8dd0a7ed033f83a7e
BLAKE2b-256 a8d76a85311c21facc068cc4531459e28e8a1169c3cec4abb7e3e522d6582370

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ff89a4c62f3babcc7f803ea3c72634266ce50e929cdc930b064a07e0827cc1a
MD5 2daf449a47d92096532f5291be903ec0
BLAKE2b-256 592124047028c99da145f41cc283ecb98b6836dff80e46f00f4fb156131aadf7

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 017aa3d828acc6b985020e9eea93e6d689f2cb3b39047f1345e201b240e9e953
MD5 824c995eccecea23792283f438288b44
BLAKE2b-256 9b664daa624d7aff268e026976ee8b33701d24641ef70908e27ef873241340ba

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7052156df05460048734737ec3a8f742c63a4be8714071f3abc5b527bf9766e
MD5 9625ab03e16f99fa70f48a492dc65cc7
BLAKE2b-256 3d0c92eb3b60f75dabc689dcc9361cda9c8897bf06a467016188e9f68b22a4b9

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b43b2dda528132081e9cf2df7fd6d4d7bd12dc6e75c0666453f0ee4cc8e60a7a
MD5 171233b759d090e1bdad866d034ddbf1
BLAKE2b-256 37e69459f10b790a5e1d00c06bb2566b5b16c4dbed54450015090ef8633f1a08

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08ab6b24ac76f6d3d335df7a8022a09008852236a8f5893df7b6c8d6d2cc4b4f
MD5 2faa339a66c4de9a0ee5361e29c9458b
BLAKE2b-256 dbd0b9b546fa4297a580183ead6d34f942c943ae7c699cd676acc7a71e1ecbe0

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bfdcd23503366406383cccc32a44784608d24fa11607b41418a1abcda8ece61
MD5 810d16e3da23bfec30ac67fa4a95203c
BLAKE2b-256 55141995e506b2b9a74e843a7e26b755a1d3aba57a2f4aef513f5d6593a50b31

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f278c0170cc5a6f0a6dd68f34b90cdf503ea43000e23ba5d8da2a9a1cc4a5590
MD5 77d72a920fdfd81f6f6c8e896cdcb7df
BLAKE2b-256 52c1719e0eabbed1ff927ff7a30a69b786b23b5fac373774e0b482efdc2c97f0

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4864ec170b2aa8b18cd1a5e7ee6e3fe044c6ee18f8791ce84eb2feb1432e0885
MD5 468f3ea3a570730087b88550e24edaba
BLAKE2b-256 dd7acfccf9452a0ace381bf48810c10bc2c39e0b63ec8e14f564d0b52079ed64

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdf31fd36e51649e649c765953df8392a6239c6aba42283157fd651972a2f49c
MD5 346733e31b16491382e2533f833aaefa
BLAKE2b-256 ff18c6ccf73ea4d097a89953894c2276a40718ecb08f8274fc3a6bd4fea39d74

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b898e4079b152ee573d24693ddc1f2fcc1830a8a71b0f6d9a9c66763834f6c1
MD5 dc1a30cfbc15c951d0d19ab9f2490024
BLAKE2b-256 8a1a922802304995f2932563901c9db378ea3b73b1fb3167de377b9558fa9b2f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c0b3d63b2492b97f945c54194c4e908ff130ee45c6a1cc02c3c379e91c0451e
MD5 4fa3aec5ae746c613ac9b79d29e32a7c
BLAKE2b-256 ac4cb8aa6f37fc1cfb5b8b5f5681d1ccc0b97c3c8a5c994eb478cb8f7060dd9f

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5d94dfb0400f3d2fc31c3ec7e55c7f040785d502aa0f917e3d75b6ba00330ff
MD5 a5a18aa9e51d16c8c3d8d3c382c757c4
BLAKE2b-256 9615402f27e13c6da8dfbfe342ed3de5606c2f214d4e539e857a83e1e072fdab

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file within_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for within_py-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3162bf97c2e6e1e5b04cd74e36f89d6b1ac4c4d9126ddc3cfdbf4c78b6c2914d
MD5 027d946004cb7a76ae1905fffcf50100
BLAKE2b-256 298e224d0bf5059e4e25f8644522d950c84cf5f2fab45f7697c15296ffc3d261

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page