pyintval
Rigorous interval arithmetic for Python — every operation returns an interval that is mathematically guaranteed to contain the true result.
Released on PyPI, with prebuilt wheels for Linux, macOS, and Windows on CPython 3.10–3.14. Validated against the ITF1788 reference conformance suite for IEEE 1788-2015.
What it provides
- IEEE 1788-2015 set-based interval arithmetic over double-precision endpoints: empty and unbounded intervals propagate instead of raising, so bulk computations never abort mid-sweep.
- Correctly rounded endpoints for
+,-,*,/,sqrt,fmavia error-free transformations (no rounding-mode switching, thread-safe), and elementary functions (exp,log,sin,cos,tan, their inverses, hyperbolics,pow,atan2,hypot,cbrt,expm1,log1p,erf,erfc, ...) built on the correctly rounded CORE-MATH kernels, widened one ulp per side — enclosures at most a couple of ulps wider than optimal. - Correct handling of the hard cases: periodic extrema of
sin/cos/tanacross wrapping intervals,atan2's branch cut, and domain restriction (e.g.sqrtof a partly-negative interval,logtoward zero). - Verified against a high-precision mpmath oracle across millions of inputs, and the rounding primitives cross-checked bit-for-bit against hardware directed rounding.
Also provides decorated intervals — a machine-checked certificate that a composed function is defined and continuous on its input box. NumPy-style interval arrays are planned.
At a glance
import pyintval as iv
x = iv.Interval("0.1") # rigorously encloses the decimal 0.1
y = iv.sqrt(x) + iv.sin(x) * 2 # guaranteed enclosure of the true image
print(y.lo, y.hi)
iv.Interval(1) / iv.Interval(-1, 1) # -> Interval('[entire]'), never raises
iv.exp(iv.log(iv.Interval(5))) # encloses 5
math_pi_in = 3.141592653589793 in iv.pi()
Installation
Once released:
pip install pyintval
From source (requires a C++20 compiler):
pip install .
On Windows, building from source requires clang-cl (the vendored CORE-MATH kernels use features MSVC lacks); prebuilt wheels have no such requirement.
Documentation
📖 pyintval.readthedocs.io — the user guide and full API reference.
Built with Sphinx from docs/; build it locally with:
pip install ".[docs]"
sphinx-build -b html docs docs/_build/html
Development
# Python tests
pip install -e ".[test]"
pytest
# C++ unit tests
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
ctest --test-dir build -C Release --output-on-failure
# Lint / format
pip install pre-commit
pre-commit run --all-files
See RELEASING.md for the wheel-building and PyPI publishing process.
Examples
The examples/ directory has runnable scripts: basic usage,
rigorous range enclosure, an intermediate-value-theorem root proof, certified
transcendental bounds, and a continuity certificate via decorated intervals.
License
MIT. Vendored components: doctest (MIT)
and the CORE-MATH correctly-rounded
kernels (MIT); see third_party/.
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 pyintval-0.3.0.tar.gz.
File metadata
- Download URL: pyintval-0.3.0.tar.gz
- Upload date:
- Size: 603.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daa92cc41412b0a0ce34b5ce562b0b96036d60458d738e939512aab9ffbcf047
|
|
| MD5 |
dbbbc7655dc474047dec8882bb429148
|
|
| BLAKE2b-256 |
c41c90d9e51edf7244727bec2ac9afc359bf777b9464a6c384412c8f61c29bb6
|
Provenance
The following attestation bundles were made for pyintval-0.3.0.tar.gz:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0.tar.gz -
Subject digest:
daa92cc41412b0a0ce34b5ce562b0b96036d60458d738e939512aab9ffbcf047 - Sigstore transparency entry: 2429643102
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315t-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315t-win_amd64.whl
- Upload date:
- Size: 651.4 kB
- Tags: CPython 3.15t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ff9ebfe88864533d4335b13bcc403edd65641ee27005742881197394e4c3e5f
|
|
| MD5 |
cbcfd88cf43be36097e0151b03a1f9b8
|
|
| BLAKE2b-256 |
b233bb1bb34302926d20e587f5fc6ffa1afa3733def9195100bc2dd54a42e7bc
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315t-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315t-win_amd64.whl -
Subject digest:
1ff9ebfe88864533d4335b13bcc403edd65641ee27005742881197394e4c3e5f - Sigstore transparency entry: 2429645250
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 540.2 kB
- Tags: CPython 3.15t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a0ca1acccfd2be5f2817257c2f37db7358f639d61b99f42524f6a9cb1339ae3
|
|
| MD5 |
e11a5036b94bd6cde2d5f59fa7dbfeb8
|
|
| BLAKE2b-256 |
0d4396e6af8795c89b0cdc21c0ef137beb5139f951c2e6693f392746c0748288
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3a0ca1acccfd2be5f2817257c2f37db7358f639d61b99f42524f6a9cb1339ae3 - Sigstore transparency entry: 2429645163
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 495.1 kB
- Tags: CPython 3.15t, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ada8db13dc1fdd199e7068f9e4116c21f25953f1d9dac1df624695b349621499
|
|
| MD5 |
597bae3745b617566b6eea737de57832
|
|
| BLAKE2b-256 |
ea33f9f7e86768e9720de02181799ccaffb071d6ff56d21cb05ea51b3f345089
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ada8db13dc1fdd199e7068f9e4116c21f25953f1d9dac1df624695b349621499 - Sigstore transparency entry: 2429643777
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl
- Upload date:
- Size: 355.6 kB
- Tags: CPython 3.15t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e51de7084d8efca4c71e1d0954b4d0c1c0dce9ccb309c9926a4d6539295c9c01
|
|
| MD5 |
cb0b27226a71a8b04efdf9e9b106e652
|
|
| BLAKE2b-256 |
a24e7e2f1b362c6b8b7aa34fd9963e0a0a15259d18e3e4db494a01a97e335699
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315t-macosx_11_0_arm64.whl -
Subject digest:
e51de7084d8efca4c71e1d0954b4d0c1c0dce9ccb309c9926a4d6539295c9c01 - Sigstore transparency entry: 2429644734
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 371.1 kB
- Tags: CPython 3.15t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f03cb23c953fa47b1fc4bb4e6f8148ffd54de8784091686e0c26aed04dc5443
|
|
| MD5 |
01597bd09eee1dc46019e0064b760c39
|
|
| BLAKE2b-256 |
4ceae4d11422df25048a590f289e5ce34d11949f64791026bcb427d3b0082c5a
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315t-macosx_10_15_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315t-macosx_10_15_x86_64.whl -
Subject digest:
2f03cb23c953fa47b1fc4bb4e6f8148ffd54de8784091686e0c26aed04dc5443 - Sigstore transparency entry: 2429644145
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315-win_amd64.whl
- Upload date:
- Size: 645.9 kB
- Tags: CPython 3.15, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85db867ada0fe5c7502b7407e966aceda7dd3089cf98378aa9aee76818782e04
|
|
| MD5 |
cba2340718e3081c57d902a53a1be21b
|
|
| BLAKE2b-256 |
86f564fb8c89336e5abe66095e33a9ec98aafdb0c341e00db99a9e3ceb2a615d
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315-win_amd64.whl -
Subject digest:
85db867ada0fe5c7502b7407e966aceda7dd3089cf98378aa9aee76818782e04 - Sigstore transparency entry: 2429644832
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 536.1 kB
- Tags: CPython 3.15, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ea1d0f1a5d124daba4264a3099f9aeeb06f878519bcc99ed9e6cf68197df415
|
|
| MD5 |
f852f7364d55b0c0ac7765392b775273
|
|
| BLAKE2b-256 |
fd21f794f2b3d81b0ed8cca1f2ecf7be31f0311609bd1a24e5fb421c0bca42b8
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0ea1d0f1a5d124daba4264a3099f9aeeb06f878519bcc99ed9e6cf68197df415 - Sigstore transparency entry: 2429645063
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 493.0 kB
- Tags: CPython 3.15, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea25753e956bc93b7469589141dc3bb6d51c50f36b6f9949a3eef07be0bfeb3d
|
|
| MD5 |
846f618b8c3c85fbf5f95afc9f3f1867
|
|
| BLAKE2b-256 |
d84982f91ba6540695f99211925d00b3ccafaad2559e7eea699e3d884ceac8fe
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ea25753e956bc93b7469589141dc3bb6d51c50f36b6f9949a3eef07be0bfeb3d - Sigstore transparency entry: 2429644461
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315-macosx_11_0_arm64.whl
- Upload date:
- Size: 341.6 kB
- Tags: CPython 3.15, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
489a3284ab64399928c3929cf5cc7f09da1f7a5051be56163bd35a1f16008a66
|
|
| MD5 |
7b7c2fd076c9bea145a2da4742561d81
|
|
| BLAKE2b-256 |
814e10e5ec248c6bdd9b5d84295fd5486ffeb47b64e6733d8242868f8f92df5e
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315-macosx_11_0_arm64.whl -
Subject digest:
489a3284ab64399928c3929cf5cc7f09da1f7a5051be56163bd35a1f16008a66 - Sigstore transparency entry: 2429644275
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp315-cp315-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp315-cp315-macosx_10_15_x86_64.whl
- Upload date:
- Size: 361.6 kB
- Tags: CPython 3.15, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1343fdfd26f016f62dac8ecdb1e14e1cb00d89712dc75671f50dd96542cb0b5f
|
|
| MD5 |
8a258e1c3fe9074e8202473999d325b1
|
|
| BLAKE2b-256 |
ec117b0c34af8308ad5d43e7e43774fd7d0968ecb04b87f47d8c0f2d8da8b42b
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp315-cp315-macosx_10_15_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp315-cp315-macosx_10_15_x86_64.whl -
Subject digest:
1343fdfd26f016f62dac8ecdb1e14e1cb00d89712dc75671f50dd96542cb0b5f - Sigstore transparency entry: 2429645299
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 651.5 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
183711e1faa88a22d29a99befe3e9713256ed706d38b4010fba065e2f0e9b783
|
|
| MD5 |
afffa4de5bc9db32d2ee1613c814534d
|
|
| BLAKE2b-256 |
f7a8c9e4914f3ffc5896512ccbc5472e7785870f0671d45dc897b2f28e35fe9d
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314t-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314t-win_amd64.whl -
Subject digest:
183711e1faa88a22d29a99befe3e9713256ed706d38b4010fba065e2f0e9b783 - Sigstore transparency entry: 2429644406
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 539.9 kB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa126ca5c2ad296dc1b4e1a41e4521f297912b5882c8cdd9a5429cbad3eb9458
|
|
| MD5 |
70fc8da428db5375f3bb6535b514d860
|
|
| BLAKE2b-256 |
05c693eb4e940d25353026b99fc6e93e711beb895bbc56eab5f154085b53fb71
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
fa126ca5c2ad296dc1b4e1a41e4521f297912b5882c8cdd9a5429cbad3eb9458 - Sigstore transparency entry: 2429643257
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 494.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c1f37c46fec03cea84076af8645389ef74190a8024a39beb14bb7d7d240d645
|
|
| MD5 |
ca168c0de0be269e7509227870ac96a2
|
|
| BLAKE2b-256 |
165d695f0f9a042b44a5c016b398221f34a2c71971330bf4fce62e37ec8e56eb
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
7c1f37c46fec03cea84076af8645389ef74190a8024a39beb14bb7d7d240d645 - Sigstore transparency entry: 2429643716
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 355.6 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05afbf5789d54a79106858be82e9a118c880072c2e0c6926f298d63aef27ec02
|
|
| MD5 |
dd92f0f54c32af79641533fdd604f137
|
|
| BLAKE2b-256 |
25abc66dd9d93487a6d7ba83e63a259e5051ef16ec0ff9e6de376da07b257f1d
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
05afbf5789d54a79106858be82e9a118c880072c2e0c6926f298d63aef27ec02 - Sigstore transparency entry: 2429644672
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 371.2 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13e734009fb32f1aef56f076f19b3c44f0380da6de5fc653319288ce3a5a495e
|
|
| MD5 |
f8a5ba5411ee9cb9f5b74f35662829e9
|
|
| BLAKE2b-256 |
f1d801edfc2836836e3277177bcc6f085a65e624ebe7d06be734742d75e1235b
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
13e734009fb32f1aef56f076f19b3c44f0380da6de5fc653319288ce3a5a495e - Sigstore transparency entry: 2429643881
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 645.9 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ff2fc1b9cb95b40ef115acaa66bed293b1c932b3676372d7060f7a490848ea9
|
|
| MD5 |
c24d630d748e05be34c71bdc0894bf4d
|
|
| BLAKE2b-256 |
6dcae88aa6983d04c6358ff61c4872384763df125edad53c35adbafff9425012
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314-win_amd64.whl -
Subject digest:
3ff2fc1b9cb95b40ef115acaa66bed293b1c932b3676372d7060f7a490848ea9 - Sigstore transparency entry: 2429645113
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 536.1 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5d43b2c88d9eeed09e855d9758692857251e7827df5d14199eda8d7c1d600d7
|
|
| MD5 |
b9e7fe5a8b423ae12fee1fa867cae115
|
|
| BLAKE2b-256 |
63effa9a53a26e5b2e04e76cde78674f0d2d7c2680df3c33f2b1d107a783eb94
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c5d43b2c88d9eeed09e855d9758692857251e7827df5d14199eda8d7c1d600d7 - Sigstore transparency entry: 2429644075
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 493.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e590f912980fe71bb2c98ee26911ff9ddb267998ce2768598619efc8b3a45f65
|
|
| MD5 |
f8401b7579e85426144bc63e90b33a9b
|
|
| BLAKE2b-256 |
5736590e426057fefd02ab47897311e2203c777e808807cd6b1e0bd735369832
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e590f912980fe71bb2c98ee26911ff9ddb267998ce2768598619efc8b3a45f65 - Sigstore transparency entry: 2429644531
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 341.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f197187c0b1c38a009843be48d8135314f03bfbfe2efb8dbcd131a86733189a7
|
|
| MD5 |
227ad2a30609f38450042512cdb6ce3e
|
|
| BLAKE2b-256 |
c52bc06565f782204d4b6fe3e8629a61a7b55ad10ff10467d57803872b193810
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
f197187c0b1c38a009843be48d8135314f03bfbfe2efb8dbcd131a86733189a7 - Sigstore transparency entry: 2429644602
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 361.6 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
607a654711b1085795c750d82c5ece7545aedaec1297be9b063ea34ea51a6e1f
|
|
| MD5 |
5b260bd81cbc3d86e99470b3af0560e5
|
|
| BLAKE2b-256 |
68f65d6b0532dcedae27222ff89474ee331f15dc12058e3d9d392d4966d70ae2
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
607a654711b1085795c750d82c5ece7545aedaec1297be9b063ea34ea51a6e1f - Sigstore transparency entry: 2429644920
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 630.3 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eb04c0d6bdf54575fc8afd1a977c541325ef6069abea9fe66aabff1a324aa6e
|
|
| MD5 |
7cf919b988630c4eb7853b07887525d9
|
|
| BLAKE2b-256 |
c5a2275de238318634f44fe0353af2421347facd44535b2481d1192f9c39b12f
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp313-cp313-win_amd64.whl -
Subject digest:
6eb04c0d6bdf54575fc8afd1a977c541325ef6069abea9fe66aabff1a324aa6e - Sigstore transparency entry: 2429644884
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 536.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2e37e011a0355fc8edeab3e6a7186e1fc235e3b991dd81bdc152b429b383a5b3
|
|
| MD5 |
17ba278a56de67df4acb6c1053af46a9
|
|
| BLAKE2b-256 |
7f8de8aed5a8b32b9c2b6e62b42cb35bcc77ceba55cf97a4f69e375435a3b3f1
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
2e37e011a0355fc8edeab3e6a7186e1fc235e3b991dd81bdc152b429b383a5b3 - Sigstore transparency entry: 2429643544
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 491.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
feb7d31b4ae6ed13d1efa5a38c5a43a9c6d12ced194682b47af91947ddfac517
|
|
| MD5 |
5b9999f8e2267b6e78285ba9fc71b15c
|
|
| BLAKE2b-256 |
b0c2b2e2d3482911824ecd5935bee50dea99b6ec336f8a466f8e22c9f682aa9f
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
feb7d31b4ae6ed13d1efa5a38c5a43a9c6d12ced194682b47af91947ddfac517 - Sigstore transparency entry: 2429643479
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 341.3 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21f08c57eb5c745abe528fd564026f3bca0a337a628f17edb6983e3fa96c1fcf
|
|
| MD5 |
ab99cfb20d65bbd3252bfc68dd61cf81
|
|
| BLAKE2b-256 |
3ce0a4285dbbc375fb8948fdce2ba1328f342f618c51747509cc111fa72cf20d
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
21f08c57eb5c745abe528fd564026f3bca0a337a628f17edb6983e3fa96c1fcf - Sigstore transparency entry: 2429643140
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 361.2 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4888422e1227538e83bcb77ad93488b1b0919d350c6a0b4ec4c87ca782053016
|
|
| MD5 |
d3116546ce77342d36117f29b6e07d5e
|
|
| BLAKE2b-256 |
6175669237c4b6f235ba11fbe4a1bffdd8fe5981ecb983f7b0a2505a73dacdc3
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
4888422e1227538e83bcb77ad93488b1b0919d350c6a0b4ec4c87ca782053016 - Sigstore transparency entry: 2429644245
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 630.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d72b5acbaf34d3f89612925eab67c4af759ad6f6d71db9090c6d22d4d9884f11
|
|
| MD5 |
08d5181bf1e19e19bda3321e00a374d7
|
|
| BLAKE2b-256 |
60f850eca955f1c746d5462e58e7a4ec72283ffc1a0313904222bc09e4af8029
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
d72b5acbaf34d3f89612925eab67c4af759ad6f6d71db9090c6d22d4d9884f11 - Sigstore transparency entry: 2429644118
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 536.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
96f0094ed51909e167cc550554c0895c7a898d880bfbdfe7de82fdda473deccd
|
|
| MD5 |
993d2b096f29192b7515b86fb0003db6
|
|
| BLAKE2b-256 |
8d32b81b85784f6b1f66a295233223106b536fa96bbd053482f66d5f5a55c2a6
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
96f0094ed51909e167cc550554c0895c7a898d880bfbdfe7de82fdda473deccd - Sigstore transparency entry: 2429645210
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 491.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63430a4622575c2c914868e6d4aef75074cd1d15cc97c90204fa1fe6d1f6e053
|
|
| MD5 |
31b33e155a0de60d58315062d647f874
|
|
| BLAKE2b-256 |
36d35a9ea7f59a791881cc2c00ba1bd73bba1095feaf5c8d401135ab92605ecb
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
63430a4622575c2c914868e6d4aef75074cd1d15cc97c90204fa1fe6d1f6e053 - Sigstore transparency entry: 2429644986
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 341.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b493c7d66bc1ac61040756bf4dfbae24bb4f6801ab8113b8c3f5c089afb25a82
|
|
| MD5 |
2d80864b7fed81effbc0074c753ebace
|
|
| BLAKE2b-256 |
1cd8569790f60500748164e43be02fdff0145ed99a4f38146cf17617601c7917
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
b493c7d66bc1ac61040756bf4dfbae24bb4f6801ab8113b8c3f5c089afb25a82 - Sigstore transparency entry: 2429644202
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 361.1 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
465e57b5564d69ca3f8434d89aa7808e63a97d94f021b8c34bc1dba28c5c242e
|
|
| MD5 |
3f5c3aa455f0dc27b4c766d18a88c689
|
|
| BLAKE2b-256 |
6662c59d829bf5eefd5f2d8e02fafd920a85084e966db2d303fca6b2062c5984
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
465e57b5564d69ca3f8434d89aa7808e63a97d94f021b8c34bc1dba28c5c242e - Sigstore transparency entry: 2429644355
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 629.0 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40d8ebe9ffaa80425670c1e885832fa95fbf8dd9650dd4ef68c39e789a288e5c
|
|
| MD5 |
9396d5e7033d2563c3e2a4da871cb362
|
|
| BLAKE2b-256 |
54ee0f09e69c9ebc28f1147a83257cb3d03f2effe2e9336fc7fc0148e4b4cb35
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp311-cp311-win_amd64.whl -
Subject digest:
40d8ebe9ffaa80425670c1e885832fa95fbf8dd9650dd4ef68c39e789a288e5c - Sigstore transparency entry: 2429643207
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 534.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d506085be37f3147a1c86e07f9927d08d1839f914c334c5da3e72688efa397ff
|
|
| MD5 |
c6041e5d2dc59e28c3eadac72f876e0d
|
|
| BLAKE2b-256 |
1b314f35ea9757c94097b47bb1cb267824733b2760d6e3a548fb3b18e7aaa844
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d506085be37f3147a1c86e07f9927d08d1839f914c334c5da3e72688efa397ff - Sigstore transparency entry: 2429643270
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 491.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af514af1af9be855686dd28236f857719afc9dd891b351cde6490b9baa69c73c
|
|
| MD5 |
e96471b7692704efbc2c178d9ff840db
|
|
| BLAKE2b-256 |
66684c7de9702356fff7ab345ebe0c1a82a2164e62c9c6974d4deb3bb6d5082e
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
af514af1af9be855686dd28236f857719afc9dd891b351cde6490b9baa69c73c - Sigstore transparency entry: 2429643929
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 340.0 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e67e918ed1f67e06a90ddec08cc8cf1a94280b11cae4fba22d2c78e875adbb1
|
|
| MD5 |
42d3b14c586004f2153305e2ac381367
|
|
| BLAKE2b-256 |
a68d2198953829a5b8de137481b1582924785996afcd294790043f149f0a296c
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
9e67e918ed1f67e06a90ddec08cc8cf1a94280b11cae4fba22d2c78e875adbb1 - Sigstore transparency entry: 2429643346
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 356.2 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c1afd6ec687739fc43a04b4d058913ec1453b8848906fce24b6e66eaf1afd21
|
|
| MD5 |
b903129a49ef3d7aa44d1fac7b49a222
|
|
| BLAKE2b-256 |
c712db26b70fd56ec8500eb8969ebfb194972101dd62bd5b83c6e3f90e19af5d
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
9c1afd6ec687739fc43a04b4d058913ec1453b8848906fce24b6e66eaf1afd21 - Sigstore transparency entry: 2429644779
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 626.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84ef3d4d716f81d6c22cbfea0834d6d118801602f620d6c93bad84d3720e48af
|
|
| MD5 |
36d2cfe541fc6c51f50ae8979210c926
|
|
| BLAKE2b-256 |
9d4b78ac267755225ff9020fcd3908417a520de8ab7d18ecf5ca9edac4709a5c
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp310-cp310-win_amd64.whl -
Subject digest:
84ef3d4d716f81d6c22cbfea0834d6d118801602f620d6c93bad84d3720e48af - Sigstore transparency entry: 2429643677
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 533.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
902a1fd94595871c17cdde389f4d7aa861e943729e1f512f93d46b7eff2dfd13
|
|
| MD5 |
b65bcfeaaf30cef72239184f0917f102
|
|
| BLAKE2b-256 |
4e167540cecf64e1d73b85acc526a69495852c5bb568fda1c06df4a4f37191d3
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
902a1fd94595871c17cdde389f4d7aa861e943729e1f512f93d46b7eff2dfd13 - Sigstore transparency entry: 2429643424
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 490.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c36278f9de69a45ccd665e3a7e9b96aafb03867745dfb83db5e8ffdfe98cbe63
|
|
| MD5 |
ea203f6e5935d43dfdd30cbf805fddac
|
|
| BLAKE2b-256 |
c3d828cb1ec7b36def69ba8867f60b47f3906e4f52d97e5cabaccd57b3a55416
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
c36278f9de69a45ccd665e3a7e9b96aafb03867745dfb83db5e8ffdfe98cbe63 - Sigstore transparency entry: 2429643619
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 338.5 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a98f02b0a216c94b439eb54be90dcd2d05cffbaad72e4249be6404efe22ab81
|
|
| MD5 |
83563d8675d6e9a06dfec993233adb33
|
|
| BLAKE2b-256 |
9f58f7fa3a4b8f062c297c9a5ff5bb75872b52f55460f84092f2d690854db37a
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
9a98f02b0a216c94b439eb54be90dcd2d05cffbaad72e4249be6404efe22ab81 - Sigstore transparency entry: 2429643821
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type:
File details
Details for the file pyintval-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pyintval-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 354.8 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
460d65defe8424c992932d5cf99a6280a190d9a0a4e6ce9170cd2b3aa5aeaee4
|
|
| MD5 |
fb566ea94bd9badd71d5380193437975
|
|
| BLAKE2b-256 |
249f16478d01ea5b50193dc059728d1dfaacce5ffe23bce2df6adb74557edf81
|
Provenance
The following attestation bundles were made for pyintval-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
release.yml on marciogameiro/pyintval
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyintval-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
460d65defe8424c992932d5cf99a6280a190d9a0a4e6ce9170cd2b3aa5aeaee4 - Sigstore transparency entry: 2429644020
- Sigstore integration time:
-
Permalink:
marciogameiro/pyintval@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/marciogameiro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@d7d782e734983ced4c35cda8d22600f7ef976e2e -
Trigger Event:
push
-
Statement type: