Skip to main content

pyintval

CI

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, fma via 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/tan across wrapping intervals, atan2's branch cut, and domain restriction (e.g. sqrt of a partly-negative interval, log toward 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

Full documentation — guide and API reference — is built with Sphinx from docs/ and hosted on Read the 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

pyintval-0.2.0.tar.gz (595.0 kB view details)

Uploaded Source

Built Distributions

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

pyintval-0.2.0-cp315-cp315t-win_amd64.whl (647.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

pyintval-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (538.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (493.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl (353.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

pyintval-0.2.0-cp315-cp315t-macosx_10_15_x86_64.whl (368.5 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

pyintval-0.2.0-cp315-cp315-win_amd64.whl (643.1 kB view details)

Uploaded CPython 3.15Windows x86-64

pyintval-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (491.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp315-cp315-macosx_11_0_arm64.whl (339.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

pyintval-0.2.0-cp315-cp315-macosx_10_15_x86_64.whl (358.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

pyintval-0.2.0-cp314-cp314t-win_amd64.whl (647.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyintval-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (537.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (492.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (353.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyintval-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (368.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyintval-0.2.0-cp314-cp314-win_amd64.whl (643.1 kB view details)

Uploaded CPython 3.14Windows x86-64

pyintval-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (491.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (339.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyintval-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl (358.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyintval-0.2.0-cp313-cp313-win_amd64.whl (627.3 kB view details)

Uploaded CPython 3.13Windows x86-64

pyintval-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (490.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (338.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyintval-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (358.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyintval-0.2.0-cp312-cp312-win_amd64.whl (627.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pyintval-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (534.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (490.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (338.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyintval-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (358.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyintval-0.2.0-cp311-cp311-win_amd64.whl (625.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyintval-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (532.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (489.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (337.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyintval-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (353.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyintval-0.2.0-cp310-cp310-win_amd64.whl (623.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pyintval-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (531.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

pyintval-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (488.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

pyintval-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (335.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyintval-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (352.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pyintval-0.2.0.tar.gz.

File metadata

  • Download URL: pyintval-0.2.0.tar.gz
  • Upload date:
  • Size: 595.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyintval-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b18dee57112027dbcaa76d5bb62cb33d6b0ba8f4127d9d7644a6bbd7e97a547d
MD5 b679cbe7d8b75f835d4b5a304a03afe2
BLAKE2b-256 fd5382f82b535cc39fe11b393c0bdd01d61e53faebf1c000f078ef06e2dd86e6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 647.8 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

Hashes for pyintval-0.2.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 c799ff28a173852566f0372f6805db2bf04664fe4e590cbf4263b07458788470
MD5 a248b8b304c530771aec8e63a3a2d24d
BLAKE2b-256 baf58a1c9d1f297ab8106d3822f529a198d26d44dddb5f507aa8e121328a3f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 494d9ff3f8ee61ffd31f7903949cbf24345b15978e18eb1a836fc52cf10b5285
MD5 dcf8e6d112e59e7494a9fc91bdca9cf7
BLAKE2b-256 79a6001b5d712c1eb8b763c94823c324e5b6156412506ffd6f38848f48cf6443

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b37353bb99e0e999026711b112a8fb9798dc0fd5a46d5ce4980be81306a2a4d
MD5 169ba2df561cad0c5dea71ef3730fe1a
BLAKE2b-256 b689372df69902a8ba46192d5d455d9bb9521b2034ec6047c09dc21c30eaba6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af99e9ff8cf8c3a841e131ef9b6429be368277ff38f7890f097c96568b7716a5
MD5 8fe19f7844073e0d6aa79d2f938a1069
BLAKE2b-256 2309d5029a0b9cf30390b79e435359ead0e89d35b368427e0e375b99713b1640

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2538a2c6ab902072dc2f78b727b3cb4fc92165f5b6cf0126565fafed37f7e238
MD5 4653f3ce38790a5af02f53d7e1efe2bf
BLAKE2b-256 c2c31f849b8c207d92fc83f67f2741749228dce2a33dba82954db9e098b48b5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 643.1 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

Hashes for pyintval-0.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 7c4b643bb983bf45fe0d888199533305106e256e07902aa3115b9ada7f7a8393
MD5 19b7a1c9bc3ac798d911b43ca614ae84
BLAKE2b-256 f22c3955504fedf3f0d94b0644a2f058d0440653952dd6274992d4b666f7206c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 acccdb30c5cc7305be6705c5524c03799eca52a35cea3bfcc69ef4e8dd5a618a
MD5 5371d05c49382da1ac8ebe0718567254
BLAKE2b-256 d1ce6c9da7f77391de9ad8a97f21c0ce9ec20eb8a803211147a8c068044c4b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b098e1c4bf76b7b5a693b675d8afeb3639b74ab0659786d1641eaf097238dca
MD5 8e34a0bea851a9f1a7df662b93fc8d84
BLAKE2b-256 3e87e829653c985da991d2cbe7d175eb48326675bbb5fda49cc2f81af86c8919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d65f5decc0ac932551d371840efc2e212cb40c014d76ccf45809fb01072343c
MD5 26392281d487cfbc10d701d895fa1cce
BLAKE2b-256 6baf2be54295f26b14f36bcc67e78521eceee5e2ba5cbcdb3ba4609c0675786c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0ef14bb217f5b4f9c6d6ceac3a82bfc21b05d3650f1cd8d576cbb5bd779a116a
MD5 153cc88b663c387a89e0c8fc5f7999b8
BLAKE2b-256 1bee9889262458fe85469340ea2b086e7b2cb3b78f94e9f972a2815fdbac52fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 647.8 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

Hashes for pyintval-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e92ee8fb3faecc9ad1096779cf4dbdc304658dc3dce29cf0e072a2d4b5b2a759
MD5 65dd31b4bd5732680c70b68af6c1455c
BLAKE2b-256 e9abcab430f8905d1efb4e919ad07cd20f2a76b79066bdd20924a59a1fd61883

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2004f2cc89fdd63d5af8f8196ea4769fd023115e11652b31d9271f523a26269b
MD5 eea2e67faaec61b6a6ec51521f726af3
BLAKE2b-256 e2503d191022403be6c21281c3f1fe3caddb6bbd968bd6a7ff4388a10b24c76a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b900415962a03bbd46db4c464d86f17c6a8225979260f1e7a885cd2bb7728325
MD5 535d068541bb0424a73766800ff97d09
BLAKE2b-256 c7a00b26fd7c92ed655ea92cbbe1022042d7fd7bb1dbda1f63c3d3fd3fca5a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ab172bcccec9e82268673db6eae474012fa249c39d63560c589df6e6570da87
MD5 ad6d32708e6f71784ab97ebae552cc63
BLAKE2b-256 b7f96c4a25446a598479c58d609b0c034fd95fe37084822d04b94eb7c4e7c596

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b7ef568136d5278c30847be736512ecbe5ed56fb6672eebf7fae6420db8f672
MD5 2e9d8106b15257d700a6fa33e2d1716a
BLAKE2b-256 b9317ad37547f028e59b14bb30d90daa284ef5c22942578ca3fc83c0c2568cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 643.1 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

Hashes for pyintval-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d1dc147c28a014ff1be0531c0f2e8a02b6f91a91e0d0fda9cff8d65d06417210
MD5 d7deb2f92219a81e8cfa76634e5bb338
BLAKE2b-256 b7cfa83960eac553f6ae8f97417d295b0fcd87180f0f7b040c2a45a5b45cacc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5d3f970a260282b317ab841886ff4d734fb898a42ae478fb6d3c93849d0bde1
MD5 1fe8c36c4aa96f273f07b6e8a9a875ba
BLAKE2b-256 c09ee4a580883c707c496086b4edc00742bfba4599e961f94d2589f06fa7cbe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b770b0831935db0331ceb2e359b2fddc4bca627950c70a0c6beb6e7ba9c3f431
MD5 1afc4b9dbddf815c51621e2b132c3288
BLAKE2b-256 e72a872f673b2c6b8a734b64e2ac35899748f7330b2b12d6139367dcf4acfa07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

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

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb8474058f214ffc2a378ef543bdb64a682f83f6d9144b3fc96214ffcd74c93
MD5 3487b5308b047ed786c8648158d5fd40
BLAKE2b-256 929eb92074e69f98bf1cbb64ea47f5cc3280c914c7dbdb9b8a73fbd21731e35e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9e5870faabf8500bcb7938bf748c11803c625e5099b0ce12d7d5cfa415e9af60
MD5 498d72af17385cf866799eb8158de479
BLAKE2b-256 28d6b89fac2cf7926ebea78a5615250d8bc0a06b38cc8bce46003e1c94a0684c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 627.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

Hashes for pyintval-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2cfed9f5f9910aebe84e3695f3ef8252c632f36f7a31576d54db2a41434aeed4
MD5 98b76c9146764f020d2b9c0ff03710dc
BLAKE2b-256 26d1d7ba2104de47b3de7cc7f5fc7861287bc6abb39cce6a460c56c377d479a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd45cf204e1f30376c218483075f9d08365e7773d761f3f62e19e64047a32b26
MD5 71eee5b417aeba8cd7b9d044965656b8
BLAKE2b-256 7ffd689a5c4d4133a5242f44d58a94f58823fe0a177c0dbae5b394496691c80e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf9a92d171cded50023313c89dca1c841f748aa0d37ac2923602c8c79d35e081
MD5 d59477220869d95e158e8af6031e6ee7
BLAKE2b-256 d1e8eb2d2db0310563517f9dee3f66b91215cf64e61fe298d8c83916b360eb57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

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

File metadata

File hashes

Hashes for pyintval-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b84ba22029e8b0cad5c1a9d7c58b2cc79842629d49ae3116670bee5d5f296d41
MD5 7ca79052f8ef6f02c4e1ba9113bee728
BLAKE2b-256 ffb6b5a5deb70c0997f1d74daf8c97cdfc40c8b16277a54c508bb16e099229a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f36a080d76dcce4162e2a11f282b710476b300f835bb9a3a8294cff25d9dea0a
MD5 9eb9521b4e0c80535befbc271d671bcc
BLAKE2b-256 a2747de69bbb9d3d60b198956e4f1d0e0d5925b04833525efd62d35aaf7a0725

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 627.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

Hashes for pyintval-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f9590f84072bb578240cd2acd3a3d01fac6192ca4290d9d9a0d9902af50bb58f
MD5 f06a5d06d9fff26f71f5754e87c133c9
BLAKE2b-256 6a3a92bc859c15473bda7ae6acd0aeaf0563e411cc9c127846d6b9653cf35249

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b08719faf1cdc4afc8fed767d60699cccc3a67309acb2e0f8f8693ed63a54da
MD5 c47b2c07541dee01c6e0cdf8423932d6
BLAKE2b-256 a6b8742595abc4f9f9e933d671764941b1cd9ecdd5e19e28175892c3749c6f8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91a11692d67039d3eeb9acb702fe43af8cbf686de9d700c6de1da66552e64f0e
MD5 dfc4ecc75bd7d98c01707ee5a91655d6
BLAKE2b-256 e3acd7e86d5fd15d0ea96a6e1cfb1d60a6dda7079acba310bfe6f73d2abee8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

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

File metadata

File hashes

Hashes for pyintval-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15adfc829a5f211b3612252255d5eed1edfbfb267b1cadba7d5ddf40cf670eb2
MD5 fbf0559d21de7a0b90b8701f12c92e42
BLAKE2b-256 7ddaddea4363842e05aa74a96f1ed4f5c246b5958a086727a5452008545341bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 65a8f7b7dd1387b6853c16b070c215b165fb6e45f3b97f7d90f96081cc1e0735
MD5 6cda7682088139ceb14ca7c3a083502b
BLAKE2b-256 5471c4bf48dd3ce8a72c8c176b748ec79ef83178cc2049ee8611b6802a823260

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 625.9 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

Hashes for pyintval-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0fea49efe0d5fa418980417e4bc3ab611700cdee0b750d0b5850f460b96f8e55
MD5 ea73c380f43ff921510ead2ab9f23245
BLAKE2b-256 54e52eb5f5582fa3c58ae21190c9a7d7b9aab892cfb254e4f8a1458d9464479e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 818d45398afcdf7ad41f7f27803673efb8d565f30012a491ecb65664431b41d7
MD5 5737f2f49aa5f667bcfeea3c73a45d97
BLAKE2b-256 383575cf8074311a1bba674d1b84bb6f41af4a03ee3f2034b2ff68984e13292b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ca6b32bd4715a9ac1c9e2f6ea47615a3024357e3d046c50c78ffd475312fff0
MD5 34fce0f6c63d7129f80d27c23cc2f77d
BLAKE2b-256 719e0715b922eb447477f6b080e69adbc80997b929dbc9c649d172a007f9895b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

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

File metadata

File hashes

Hashes for pyintval-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 710e2215051990fc2c8d1f4515141484fbb29ae5cbfce3a5586501dd834a5744
MD5 3af1b3335981af664826f1af33cfe827
BLAKE2b-256 5ff61702e935e22223f02a22ea91b35da00d74edf094e086208a701762337ac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a487847d199eea4ddf444af4aead928c708a394bcc13d8ca7ac7d484dd5d22c6
MD5 f987ea2c0d7b734168f9308a8d84116e
BLAKE2b-256 58a2fa95e6d8455bef4733a09c5335cffe8896220a10ab2fc26a79700925dfe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyintval-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 623.5 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

Hashes for pyintval-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05c7d26a21822a75c64c3635f998a9bfcd7519439ff2c9431876d99fa554630c
MD5 72c627c814b315883346356e197707da
BLAKE2b-256 39564e27f670521c7b50d05bd43a6532ff4624398164fb8e454b542d14057e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 705a36cfa7dc2abbd1268b45b86f2024f15031b9279650e7fb478618bea2f7ce
MD5 4292a1e79fd2ae56b85aea2016f17e12
BLAKE2b-256 28ec01d017ebb6662beb64a60f9c29874695a7b08fb6310e87133e41a1b82bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6dbaad70df0332910c72f2d73d3b883ebbff22fb22f5d123480e43e77a74e2f5
MD5 148414b59195a4326bc3460eab091bab
BLAKE2b-256 4a5e529c19ebe2397f351f3460340b3ffc102d4e0b130bdb6496e1fd1ad32b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27ab6c4220d132fe952ab5e316dbd35bccc299e9a4156b7fa434805d24d7629f
MD5 0c9437d61d59d402b0b8f1dd6cf63f30
BLAKE2b-256 5910cf14ba5fed42b0338b9a26f5e5379bc313b2d4f0736c6bf1cdbaf6c58752

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

File details

Details for the file pyintval-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyintval-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 648a4fa1d6d369df581beb3670af48d31639c619728eae6603154ea4f7f40ea1
MD5 5b0870fb879e588c64ca3ef5d3286e02
BLAKE2b-256 6f85c37c36247c584041cba5540da048155c8c9a6b498a5f6def151d3f753464

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyintval-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on marciogameiro/pyintval

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

Supported by

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