SciRS2: A comprehensive scientific computing library in Rust - Python bindings (SciPy alternative)
Project description
SciRS2 - Python Bindings
SciRS2: Type-safe scientific computing in Rust with Python bindings - Specialized for complex statistical analysis with exceptional performance for higher-order statistics.
Overview
SciRS2-Python provides Python bindings for the SciRS2 scientific computing ecosystem, offering:
- Exceptional Complex Statistics: Up to 410x faster than SciPy for skewness, kurtosis, and higher-order moments on small datasets
- Type Safety: Rust's compile-time guarantees prevent many runtime errors
- SciPy-Compatible APIs: Familiar interface for Python scientists
- Zero-Copy Integration: Efficient NumPy array interoperability
- BLAS/LAPACK Integration: Hardware-accelerated linear algebra via system BLAS (OpenBLAS, Accelerate, MKL)
- OxiFFT Integration: Pure Rust high-performance FFT with FFTW-compatible algorithms
- Hybrid Approach: Use alongside NumPy/SciPy for optimal performance
Important: SciRS2 is a specialized tool for type-safe complex statistical analysis, not a general-purpose NumPy/SciPy replacement. See Performance Guide for when to use scirs2 vs NumPy.
BLAS/LAPACK Performance Notice
Performance varies dramatically based on your system's BLAS/LAPACK installation.
SciRS2 uses ndarray-linalg with system BLAS/LAPACK backends for linear algebra operations. The performance you see depends entirely on which BLAS library is available on your system:
| Platform | Default Backend | Performance Level |
|---|---|---|
| macOS | Apple Accelerate | ✅ Excellent (hardware-optimized) |
| Linux (with OpenBLAS) | OpenBLAS | ✅ Good to Excellent |
| Linux (with MKL) | Intel MKL | ✅ Excellent (Intel CPUs) |
| Linux (without BLAS) | Fallback | ⚠️ Very slow (pure Rust) |
| Windows (with OpenBLAS) | OpenBLAS | ✅ Good |
Ensuring Optimal Performance
macOS: No action needed - uses Accelerate framework automatically.
Linux (Debian/Ubuntu):
sudo apt-get install libopenblas-dev liblapack-dev
Linux (RHEL/CentOS/Fedora):
sudo dnf install openblas-devel lapack-devel
Windows: Install OpenBLAS via vcpkg or use pre-built binaries.
Verify BLAS is being used: If linear algebra operations (det, inv, solve, eig) are >100x slower than SciPy, your system likely lacks a proper BLAS installation.
Installation
pip install scirs2
For development:
pip install scirs2[dev]
Quick Start
SciRS2 excels at statistics - up to 410x faster than SciPy on complex operations:
import numpy as np
import scirs2
# Generate data
data = np.random.randn(1000)
# ✅ Use scirs2 for ALL statistics on small-medium data (MUCH FASTER!)
mean = scirs2.mean_py(data) # 8x faster than NumPy!
std = scirs2.std_py(data, 0) # 14x faster than NumPy!
skewness = scirs2.skew_py(data) # 52x faster than SciPy!
kurtosis = scirs2.kurtosis_py(data) # 52x faster than SciPy!
print(f"Mean: {mean:.4f}, Std: {std:.4f}")
print(f"Skewness: {skewness:.4f}, Kurtosis: {kurtosis:.4f}")
# ✅ Linear algebra: competitive with BLAS
A = np.random.randn(50, 50)
det = scirs2.det_py(A) # ~1x vs SciPy (uses Accelerate/OpenBLAS)
inv = scirs2.inv_py(A) # ~1x vs SciPy
# ✅ FFT: fast on small data
signal = np.random.randn(512)
rfft = scirs2.rfft_py(signal) # 3x faster than NumPy!
Modules (v0.2.0)
Linear Algebra (linalg)
Linear algebra operations use system BLAS/LAPACK via ndarray-linalg. Performance depends on your BLAS installation (see BLAS/LAPACK Performance Notice above).
import numpy as np
import scirs2
A = np.array([[4.0, 2.0], [2.0, 3.0]])
b = np.array([1.0, 2.0])
# Basic operations
det = scirs2.det_py(A) # Determinant
inv = scirs2.inv_py(A) # Inverse
trace = scirs2.trace_py(A) # Trace
# Decompositions
lu = scirs2.lu_py(A) # LU: {'L', 'U', 'P'}
qr = scirs2.qr_py(A) # QR: {'Q', 'R'}
svd = scirs2.svd_py(A) # SVD: {'U', 'S', 'Vt'}
chol = scirs2.cholesky_py(A) # Cholesky
# Eigenvalues
eig = scirs2.eig_py(A) # {'eigenvalues_real', 'eigenvalues_imag', 'eigenvectors'}
eigh = scirs2.eigh_py(A) # For symmetric matrices
# Linear systems
x = scirs2.solve_py(A, b) # Solve Ax = b
lstsq = scirs2.lstsq_py(A, b) # Least squares
# Norms
norm_fro = scirs2.matrix_norm_py(A, "fro")
norm_vec = scirs2.vector_norm_py(b, 2)
cond = scirs2.cond_py(A)
rank = scirs2.matrix_rank_py(A)
Statistics (stats)
✅ Performance Strength: Average 30x faster than SciPy! Complex statistics (skewness, kurtosis) are up to 410x faster on small datasets. Even basic stats (mean, std) are 5-25x faster on small-medium data (<10K elements).
import numpy as np
import scirs2
data = np.array([1.0, 2.0, 3.0, 4.0, 5.0])
# Descriptive statistics
stats = scirs2.describe_py(data) # Returns dict with all stats
mean = scirs2.mean_py(data)
std = scirs2.std_py(data, 0) # ddof=0 for population
var = scirs2.var_py(data, 1) # ddof=1 for sample
# Percentiles
median = scirs2.median_py(data)
p75 = scirs2.percentile_py(data, 75.0)
iqr = scirs2.iqr_py(data)
# Correlation
x = np.array([1.0, 2.0, 3.0, 4.0, 5.0])
y = np.array([2.0, 4.0, 6.0, 8.0, 10.0])
corr = scirs2.correlation_py(x, y) # Returns 1.0
cov = scirs2.covariance_py(x, y, 1)
FFT (fft)
FFT operations use OxiFFT backend (Pure Rust, FFTW-compatible algorithms). Performance is 2-5x faster than NumPy on small data (<2K samples), but NumPy is faster on large data (>32K samples).
import numpy as np
import scirs2
data = np.array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0])
# FFT
result = scirs2.fft_py(data) # {'real', 'imag'}
real, imag = result['real'], result['imag']
# Inverse FFT
reconstructed = scirs2.ifft_py(
np.array(real), np.array(imag)
)
# Real FFT (for real-valued signals)
rfft = scirs2.rfft_py(data)
irfft = scirs2.irfft_py(
np.array(rfft['real']),
np.array(rfft['imag']),
len(data)
)
# DCT
dct = scirs2.dct_py(data, 2) # Type-II DCT
idct = scirs2.idct_py(np.array(dct), 2)
# Helper functions
freqs = scirs2.fftfreq_py(len(data), 1.0)
rfreqs = scirs2.rfftfreq_py(len(data), 1.0)
shifted = scirs2.fftshift_py(data)
fast_len = scirs2.next_fast_len_py(100, False)
Clustering (cluster)
import numpy as np
import scirs2
# Generate sample data
X = np.vstack([
np.random.randn(50, 2) + [0, 0],
np.random.randn(50, 2) + [5, 5],
])
# K-Means clustering
kmeans = scirs2.KMeans(n_clusters=2)
kmeans.fit(X)
labels = kmeans.labels
inertia = kmeans.inertia_
# Evaluation metrics
silhouette = scirs2.silhouette_score_py(X, labels)
davies_bouldin = scirs2.davies_bouldin_score_py(X, labels)
calinski = scirs2.calinski_harabasz_score_py(X, labels)
# Preprocessing
X_std = scirs2.standardize_py(X, True) # Zero mean, unit variance
X_norm = scirs2.normalize_py(X, "l2") # L2 normalization
Time Series (series)
import numpy as np
import scirs2
# Create time series
data = np.array([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0])
ts = scirs2.PyTimeSeries(data, None)
# Descriptive statistics
stats = ts.describe()
# Differencing
diff1 = scirs2.apply_differencing(ts, 1) # First difference
seasonal = scirs2.apply_seasonal_differencing(ts, 4) # Seasonal
# ARIMA modeling
arima = scirs2.PyARIMA(1, 1, 0) # AR(1), I(1), MA(0)
arima.fit(ts)
forecast = arima.forecast(5)
params = arima.get_params()
print(arima.summary())
# Box-Cox transformation
result = scirs2.boxcox_transform(ts, None) # Auto-select lambda
transformed = result['transformed']
lambda_val = result['lambda']
recovered = scirs2.boxcox_inverse(np.array(transformed), lambda_val)
# Stationarity test
adf = scirs2.adf_test(ts, None)
print(f"ADF statistic: {adf['statistic']}, p-value: {adf['p_value']}")
# STL decomposition
decomp = scirs2.stl_decomposition(ts, 4)
trend = decomp['trend']
seasonal = decomp['seasonal']
residual = decomp['residual']
Performance
Benchmark Summary (macOS Apple Silicon with Accelerate/OxiFFT):
- Statistics: 30.40x average speedup, 85.3% win rate
- FFT: 2.24x average speedup, 53.3% win rate
- Linear Algebra: 1.94x slower (with proper BLAS), competitive on small matrices
- Strength: Complex statistics, small-medium data
Where SciRS2 Excels 🏆
| Operation | Data Size | Speedup | Use Case |
|---|---|---|---|
| Skewness | 100 | 410x | Distribution shape analysis |
| Kurtosis | 100 | 408x | Distribution tail analysis |
| Skewness | 1,000 | 52x | Higher-order moments |
| Kurtosis | 1,000 | 52x | Higher-order moments |
| Pearson correlation | 100 | 127x | Small dataset correlation |
| Pearson correlation | 10,000 | 17x | Medium dataset correlation |
| IQR | 100 | 95x | Quartile calculations |
| Percentile | 100 | 49x | Distribution analysis |
| Std | 100 | 25x | Small data variability |
| Mean | 100 | 11x | Small data average |
| FFT (rfft) | 128 | 5.2x | Small signal processing |
| FFT (dct) | 128 | 5.5x | Small signal processing |
| Linear Solve | 10x10 | 9.4x | Small linear systems |
Best Use Cases:
- Complex statistical analysis on datasets <10,000 elements
- Higher-order moments (skewness, kurtosis) - up to 410x faster
- Correlation analysis - up to 127x faster
- Distribution shape analysis
- Small FFT operations (<2048 samples)
- Type-safe Rust integration
Where NumPy/SciPy May Win ⚠️
| Operation | Size | Performance | Notes |
|---|---|---|---|
| Linear algebra (SVD, QR) | Large (200x200+) | 2-4x slower | SciPy LAPACK more optimized |
| FFT operations | Large (32K+) | 1.5-3x slower | NumPy highly optimized for large FFT |
| Basic stats | 100K+ | SIMD: 2-4x slower | NumPy C optimization |
Use NumPy/SciPy for:
- Large FFT operations (>32K samples)
- Large matrix decompositions (SVD, QR on 200x200+)
- Basic statistics on very large datasets (>100K elements)
Linear algebra performance: With proper system BLAS, SciRS2 is within 2x of SciPy. Small matrices (10x10) can be 9x faster.
Decision Matrix
| Your Use Case | Recommended Tool | Reason |
|---|---|---|
| Skewness/Kurtosis | ✅ scirs2 | 50-410x faster |
| Correlation | ✅ scirs2 | 17-127x faster |
| Basic stats, small data (<10K) | ✅ scirs2 | 3-25x faster |
| FFT, small data (<2K) | ✅ scirs2 | 2-5x faster |
| Linear algebra, small (<50x50) | ✅ scirs2 | 1-9x faster |
| Linear algebra, large (200x200+) | ⚡ Either | ~2x slower with BLAS |
| FFT, large data (>32K) | ❌ NumPy | 1.5-3x faster |
| Basic stats, huge data (>100K) | ❌ NumPy | SIMD optimized |
| Type-safe Rust integration | ✅ scirs2 | Native Rust types |
Recommended Hybrid Approach
import numpy as np
import scirs2
# Generate data
data = np.random.randn(1000)
# ✅ Use scirs2 for complex stats (MUCH FASTER!)
skewness = scirs2.skew_py(data) # 52x faster than SciPy!
kurtosis = scirs2.kurtosis_py(data) # 52x faster than SciPy!
# ✅ Use scirs2 for basic stats on small-medium data
mean = scirs2.mean_py(data) # 8x faster on 1K elements
std = scirs2.std_py(data, 0) # 14x faster on 1K elements
# ✅ Linear algebra: excellent with BLAS
matrix = np.random.randn(50, 50)
det = scirs2.det_py(matrix) # ~1x (comparable to SciPy)
inv = scirs2.inv_py(matrix) # ~1x (comparable to SciPy)
# ✅ FFT: fast on small data
signal = np.random.randn(512)
rfft = scirs2.rfft_py(signal) # 3x faster than NumPy!
# ⚠️ For large FFT, NumPy is faster
large_signal = np.random.randn(65536)
spectrum = np.fft.rfft(large_signal) # NumPy wins on large data
Note: Benchmarks performed on macOS Apple Silicon with Accelerate framework. Performance may vary on other platforms depending on BLAS installation.
Type Hints
SciRS2 includes type stubs (.pyi files) for better IDE support:
# Your IDE will show type hints and autocompletion
import scirs2
result = scirs2.det_py(matrix) # IDE knows this returns float
Development
Building from Source
Prerequisites (for optimal linear algebra performance):
macOS: No additional dependencies - uses Accelerate framework.
Linux (Debian/Ubuntu):
sudo apt-get install libopenblas-dev liblapack-dev gfortran
Linux (RHEL/CentOS/Fedora):
sudo dnf install openblas-devel lapack-devel gcc-gfortran
Build Steps:
# Install Rust and maturin
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
pip install maturin
# Build (ensure BLAS is installed first!)
cd scirs2-python
maturin develop --release
# Run tests
pip install pytest numpy
pytest tests/
Note: If you see linker errors about openblas or lapack, install the system BLAS libraries as shown above.
Project Structure
scirs2-python/
├── src/ # Rust source with PyO3 bindings
│ ├── lib.rs # Module registration
│ ├── cluster.rs # Clustering bindings
│ ├── series.rs # Time series bindings
│ ├── linalg.rs # Linear algebra bindings
│ ├── stats.rs # Statistics bindings
│ └── fft.rs # FFT bindings
├── tests/ # Python tests
├── scirs2.pyi # Type stubs
└── pyproject.toml
Related Projects
License
Dual-licensed under MIT OR Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file scirs2-0.1.3.tar.gz.
File metadata
- Download URL: scirs2-0.1.3.tar.gz
- Upload date:
- Size: 23.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5229993b172ae32eeaba2e62bfbe451a8991478a1a86f86f7119ae2a67f63949
|
|
| MD5 |
0be4e8aa1ba78d8fd9eaf08e8f54b3c2
|
|
| BLAKE2b-256 |
c886493f1777b67a2fdf7836dd3bd688ac0947a2d6044d2c5f0f04a855c4338d
|
Provenance
The following attestation bundles were made for scirs2-0.1.3.tar.gz:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3.tar.gz -
Subject digest:
5229993b172ae32eeaba2e62bfbe451a8991478a1a86f86f7119ae2a67f63949 - Sigstore transparency entry: 855362706
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
076de48981625df8ac080a0084c26da77861e5dd76bc1e0b99d7acdeed8b8c23
|
|
| MD5 |
70cb6e74b847c5ae5532f26a758b9cb8
|
|
| BLAKE2b-256 |
5e1798fc157e3acad036b346bc492c3e03e3f76071dbb3b958d99d67a3d15b76
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
076de48981625df8ac080a0084c26da77861e5dd76bc1e0b99d7acdeed8b8c23 - Sigstore transparency entry: 855362790
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
589b6073882f783f7d5e0d0467ff1365bb780fa0e44bcce25f0f6efdb0e8cff1
|
|
| MD5 |
15c075a9ea1e62f09b857085f366af87
|
|
| BLAKE2b-256 |
1d27934bcbe5de410b3d675effa87fcf561b5f3f170108cd02f6fa77af67f9bd
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
589b6073882f783f7d5e0d0467ff1365bb780fa0e44bcce25f0f6efdb0e8cff1 - Sigstore transparency entry: 855362957
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f7e12d1c2ba8945c6a0241cfc1012e398bf10ad624d0fea62b05117cf71a69b
|
|
| MD5 |
886be1f2d23e4f972b0ac98b83ad8236
|
|
| BLAKE2b-256 |
42fa4237a901ee9a14b74ee2b128063cba22f88651ed677d667d33ace7a8c853
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
4f7e12d1c2ba8945c6a0241cfc1012e398bf10ad624d0fea62b05117cf71a69b - Sigstore transparency entry: 855362900
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01fe0f11374d9b76f6d42a92f9692c0ba012e3b6678ecccce983a77312718fb4
|
|
| MD5 |
d23742ce81ededcc4bed8813ecdc2b0e
|
|
| BLAKE2b-256 |
17e6b628374daab4a2ed7692d18557bcdb9eae9bfd14daf96c6a1312e4ffe885
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp314-cp314-win_amd64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp314-cp314-win_amd64.whl -
Subject digest:
01fe0f11374d9b76f6d42a92f9692c0ba012e3b6678ecccce983a77312718fb4 - Sigstore transparency entry: 855362763
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59e8de012c1b9e23acff3827e5b7d8ab6a95e9ebaa4b3af1d08f92db04ad51a2
|
|
| MD5 |
0b06e315fb9e2ac7db739fe79a099a59
|
|
| BLAKE2b-256 |
fe8fb63f2c8864e420a32e86589c911a06170c372ae0a667929926f28a37710b
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
59e8de012c1b9e23acff3827e5b7d8ab6a95e9ebaa4b3af1d08f92db04ad51a2 - Sigstore transparency entry: 855362809
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
213c63bd5f9513c19b2c9f9734e54002cd34928938a7f84e5bf164963d66fd54
|
|
| MD5 |
890a1e73123a50f1e6dc838cc3ee41ac
|
|
| BLAKE2b-256 |
801c354e08a25aee64ea8a56415f07580d55a197e9199ef5ae1764090a5d295e
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
213c63bd5f9513c19b2c9f9734e54002cd34928938a7f84e5bf164963d66fd54 - Sigstore transparency entry: 855362944
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a04d13e28f60995b6e852f2973cc8722b97e29721aa37575adf99637e71942c0
|
|
| MD5 |
74ffecd9115c9bec17d59ca122663953
|
|
| BLAKE2b-256 |
edc6b516c4c644321c1d014e2164bc8adf805e86ff0a0e57b1ee7869756b4671
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
a04d13e28f60995b6e852f2973cc8722b97e29721aa37575adf99637e71942c0 - Sigstore transparency entry: 855362798
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0e2588d87bdb117bc2aba49db7d96e910c77cdd53389284bb184c28571beb54
|
|
| MD5 |
4960f85e4c6df460f3b87807680918c9
|
|
| BLAKE2b-256 |
420f5e9df4485bb7b03e49bc21fbe93b514e306fa1d7cd170fb53fd2d2018a05
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl -
Subject digest:
b0e2588d87bdb117bc2aba49db7d96e910c77cdd53389284bb184c28571beb54 - Sigstore transparency entry: 855362947
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2760ce59538c853345da6e9d23a7a857b1f1ee3936c39fa0f8914cfc8c2877a7
|
|
| MD5 |
987a9ec50872fa0d77704e422e2e64cf
|
|
| BLAKE2b-256 |
8141983c2d1763b28a13ccdf371ac40bb605ef29626764cb71dbe27c0a402116
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
2760ce59538c853345da6e9d23a7a857b1f1ee3936c39fa0f8914cfc8c2877a7 - Sigstore transparency entry: 855362781
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92e9a01d9f4f797401765ac16fa007c580f9889b24b1c5839a6aee30b3c1946b
|
|
| MD5 |
e4b5fe4b39396c22e1863751d2448375
|
|
| BLAKE2b-256 |
fc9aef2621f9af37c5a0166bbf21bb23565fe67a71e02ceb8f6fd8cbef78c92e
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp313-cp313-win_amd64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp313-cp313-win_amd64.whl -
Subject digest:
92e9a01d9f4f797401765ac16fa007c580f9889b24b1c5839a6aee30b3c1946b - Sigstore transparency entry: 855362910
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ae3a6ec7d95a5036154c7d9347eb57f6e5dc76ed3d8b654573c65e7e2f5482d
|
|
| MD5 |
2c7fc37e4a9885b595797a6210584b53
|
|
| BLAKE2b-256 |
5dd583967b575763cf61e3d7f0dd0c0b4cf19772dc32d585d1e752f631789bcf
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
3ae3a6ec7d95a5036154c7d9347eb57f6e5dc76ed3d8b654573c65e7e2f5482d - Sigstore transparency entry: 855362940
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea5532692c6714c02cf6457bdbf2c798fdb0f19ba9e275772110c6b0413a98cc
|
|
| MD5 |
03b955cfcf6fad92bb12aa302fbf3c62
|
|
| BLAKE2b-256 |
43043e41b444b8eb678a3fa425deb7b52d1d5c68684fcf34dd17daa18ad275e7
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
ea5532692c6714c02cf6457bdbf2c798fdb0f19ba9e275772110c6b0413a98cc - Sigstore transparency entry: 855362785
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73ee65f2e87aa390f1182b4d8887d117af454b91ef93ed9bbfdfbf2f3116153c
|
|
| MD5 |
7f39ce24fba1242a67c32cefca7c280f
|
|
| BLAKE2b-256 |
589ac20bfe3811217dbbfbc863f57fc38359cda10dab82e98f470724960f7f85
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
73ee65f2e87aa390f1182b4d8887d117af454b91ef93ed9bbfdfbf2f3116153c - Sigstore transparency entry: 855362846
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b1b7115a4fd8d0934af4f5fb39b855053771c83f8a534922ec1a051268b125d
|
|
| MD5 |
075ceaa2f2d6f75a7f9fe265579b542a
|
|
| BLAKE2b-256 |
9bf9829b64bd8078d6607dfa3466429b4d141a416c6707019115ba64c9eeee9f
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl -
Subject digest:
1b1b7115a4fd8d0934af4f5fb39b855053771c83f8a534922ec1a051268b125d - Sigstore transparency entry: 855362963
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8885d4b327fb2cc6b1aec85b0bf13c4348a6a51bafad8a22bdef28cba6c37adf
|
|
| MD5 |
c62fc408a0066483a39190e7a5c21c99
|
|
| BLAKE2b-256 |
e3672881096595e0e2362298b802b1f7ba5dd709e34d1ae73cb6d18ba88fe3de
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp312-cp312-win_amd64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp312-cp312-win_amd64.whl -
Subject digest:
8885d4b327fb2cc6b1aec85b0bf13c4348a6a51bafad8a22bdef28cba6c37adf - Sigstore transparency entry: 855362769
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
694639b47403a2e57c9d8dbfea8fd01cee833af726d543c8b59046ae3d0ddd78
|
|
| MD5 |
b6d7d880515d6d84094d2265480f79fe
|
|
| BLAKE2b-256 |
1de382550b29aaf4dbbb8b1630eabd01d4751deb9947662ebd80d8b5dae7efb9
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
694639b47403a2e57c9d8dbfea8fd01cee833af726d543c8b59046ae3d0ddd78 - Sigstore transparency entry: 855362860
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd70544425870667fb74334cce4dc6c9ff6380ce80e081353e8abc358de34f05
|
|
| MD5 |
d0cafa59b7340cabb3a82bc0989a3bdd
|
|
| BLAKE2b-256 |
4888ef659a8c2ebc657a8f8739ee8fac7cc790ff76f0bdcb96549cbb6a51f376
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
cd70544425870667fb74334cce4dc6c9ff6380ce80e081353e8abc358de34f05 - Sigstore transparency entry: 855362748
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34f7e08ad48ac7df8799db81c34767a606fa35d766ac2b0faa73ebf34be74680
|
|
| MD5 |
4e6a11aea97f24659ae2c199bf89d0e2
|
|
| BLAKE2b-256 |
46a739384dd438a1c978315ee6a41b9e2f1c809be83f0788a19feeca4e66417b
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
34f7e08ad48ac7df8799db81c34767a606fa35d766ac2b0faa73ebf34be74680 - Sigstore transparency entry: 855362714
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6634c4700cad0d6ea0156ee62dfb8d6abd4b3efc0f2fb6727f8da9c39ef75ca4
|
|
| MD5 |
45b0683a7290955ea8942defd42c9cf5
|
|
| BLAKE2b-256 |
5b68a917a18ccdcbc86fbf1cc06f2bb752cf59c834d26bbbfcc404474a1090ff
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl -
Subject digest:
6634c4700cad0d6ea0156ee62dfb8d6abd4b3efc0f2fb6727f8da9c39ef75ca4 - Sigstore transparency entry: 855362872
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9ab950522a3a62427b7bd5bceebb27374b17e0a4a6a35da4cd5ecd90ecb00d1
|
|
| MD5 |
552e3f48b684718cc7ff6a6346c96d66
|
|
| BLAKE2b-256 |
48e0a500220fedd0030ed4146fd0474603996984dbf11c548c3ece790c119246
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp311-cp311-win_amd64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp311-cp311-win_amd64.whl -
Subject digest:
b9ab950522a3a62427b7bd5bceebb27374b17e0a4a6a35da4cd5ecd90ecb00d1 - Sigstore transparency entry: 855362887
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f462cc0b1a8f6174b326da0ba4dfba442d4d995f88049771d269812748e6c72
|
|
| MD5 |
49da73ceeed7c9219fb1eb9733ff0689
|
|
| BLAKE2b-256 |
0d812c6d44db20d2207189419894f3a49b86d9fd2cabf0da5e4b7a81059294e7
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
7f462cc0b1a8f6174b326da0ba4dfba442d4d995f88049771d269812748e6c72 - Sigstore transparency entry: 855362930
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b29b1b3f84ecc455e89ff15844016c2c99e626b4d6fbbfb177fa333c832adf70
|
|
| MD5 |
a537b0067b7f084a6e6bfb607c8a19ea
|
|
| BLAKE2b-256 |
0b88cb48b5c03f2bfde453f47e9f6b6a5130d67178a4375349bbe977c36cd640
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b29b1b3f84ecc455e89ff15844016c2c99e626b4d6fbbfb177fa333c832adf70 - Sigstore transparency entry: 855362974
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9504f5df55ff524d0a0495376e0dbecff04ecac36cb662186cecbf83f4873c5a
|
|
| MD5 |
8155af93a2f835d4ba20ab342167a883
|
|
| BLAKE2b-256 |
24e553a6e6ac442ee2c7ae5b0ed32f7775ce6c284f05bd18459a9b72eb8420a8
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
9504f5df55ff524d0a0495376e0dbecff04ecac36cb662186cecbf83f4873c5a - Sigstore transparency entry: 855362751
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af0854de31b90123d23b7ced63a19337de84023c8a00a79e334ac167cb7b9613
|
|
| MD5 |
c8318a1730c15668c06542a830336054
|
|
| BLAKE2b-256 |
9eec79af9441a1492ae29866f8511ba537863c32dd0fe01cd6e0982e8d37f3ee
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl -
Subject digest:
af0854de31b90123d23b7ced63a19337de84023c8a00a79e334ac167cb7b9613 - Sigstore transparency entry: 855362832
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2529303a57378c0c1142cb18e189aa9ee6f1df5d6bfbf3aa258f1c5dc73f099
|
|
| MD5 |
034dbe30cc7814fc9a451a03a0616e51
|
|
| BLAKE2b-256 |
29e06c931dbdab3f6243308621de65f5034d3fa704846a8d270ff8547cd9e6c9
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp310-cp310-win_amd64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp310-cp310-win_amd64.whl -
Subject digest:
e2529303a57378c0c1142cb18e189aa9ee6f1df5d6bfbf3aa258f1c5dc73f099 - Sigstore transparency entry: 855362922
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebcea916c0d97f3db4edc207a24ac15fb3828ca772b60b779499def6568e5af6
|
|
| MD5 |
b7099a62bac8e447116d14cf850cad0d
|
|
| BLAKE2b-256 |
4413568f8980c2b1c8acece2af38788e261f407feee0aacc87561c67833e6dd5
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ebcea916c0d97f3db4edc207a24ac15fb3828ca772b60b779499def6568e5af6 - Sigstore transparency entry: 855362818
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8d2a445a6ab1ae782c2c08acb7873db32bd021708891e97ec5d23b2c24bb893
|
|
| MD5 |
853c28fb38f6f35c881bbc3dd687569a
|
|
| BLAKE2b-256 |
44e5698376ba51306e4d571e830ec8dc22c7d05d12376a8c599d6ce5b3617487
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
e8d2a445a6ab1ae782c2c08acb7873db32bd021708891e97ec5d23b2c24bb893 - Sigstore transparency entry: 855362731
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
257ffe03ca3783c811bef550ad3dba604ebc65f4a8385b7f40c567d205164a44
|
|
| MD5 |
672cb0cc4a2261c2b8c62c302ae693a8
|
|
| BLAKE2b-256 |
c6d435f461a052104a8719076536c0e325ed167c4941f29898cf8b48a9ee1673
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
257ffe03ca3783c811bef550ad3dba604ebc65f4a8385b7f40c567d205164a44 - Sigstore transparency entry: 855362935
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b324ec10fbb82e3dedce6ed289f6168e189fa8b2e93cedf462bcce3ad0147cee
|
|
| MD5 |
868e9a791796cc9e3a5c8af01a0195de
|
|
| BLAKE2b-256 |
0f2fee258b9d72422ec39b6f3505972fffe8d47ef472f1b10953bb19c26f82bf
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
b324ec10fbb82e3dedce6ed289f6168e189fa8b2e93cedf462bcce3ad0147cee - Sigstore transparency entry: 855362864
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
961c351ae62a09a07bec53f22a45225beab50ae5333dfb2e2966cef7c46a7faf
|
|
| MD5 |
e0dd0e125af54f6e1f5efa918468b881
|
|
| BLAKE2b-256 |
d76e754e56bcca2ffcc501ce2abeada86e73c47a69ccfb4a83f214fc61d1a926
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
961c351ae62a09a07bec53f22a45225beab50ae5333dfb2e2966cef7c46a7faf - Sigstore transparency entry: 855362891
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type:
File details
Details for the file scirs2-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: scirs2-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.4 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54c08be86922286c7be4d7e4149a533701ae6ca2bd45331dadd0aa23ec81b425
|
|
| MD5 |
6d1e62e6b9aafd2027ce4c02d80bfd82
|
|
| BLAKE2b-256 |
b3ae211580b1d76caefe4cf84f189cbda09fe93d942679a240cca6d7586ce419
|
Provenance
The following attestation bundles were made for scirs2-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
pypi-publish.yml on cool-japan/scirs
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
scirs2-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
54c08be86922286c7be4d7e4149a533701ae6ca2bd45331dadd0aa23ec81b425 - Sigstore transparency entry: 855362879
- Sigstore integration time:
-
Permalink:
cool-japan/scirs@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/cool-japan
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@dec09b08139f89cafc6ab1667b08c12da26a6056 -
Trigger Event:
push
-
Statement type: