Skip to main content

mapbox_earcut

PyPi version

Python bindings for the C++ implementation of the Mapbox Earcut library, which provides very fast and quite robust triangulation of 2D polygons.

Original code: earcut.hpp

Original description:

The library implements a modified ear slicing algorithm, optimized by z-order curve hashing and extended to handle holes, twisted polygons, degeneracies and self-intersections in a way that doesn't guarantee correctness of triangulation, but attempts to always produce acceptable results for practical data like geographical shapes.

Provided functions (depending on dtype of vertex data):

triangulate_float32
triangulate_float64
triangulate_int32
triangulate_int64

Example:

import mapbox_earcut as earcut
import numpy as np

# A Nx2 array of vertices. Must be 2D.
verts = np.array([[0, 0], [1, 0], [1, 1]]).reshape(-1, 2)

# An array of end-indices for each ring.
# The first ring is the outer contour of the polygon.
# Subsequent ones are holes.
# This implies that the last index must always be equal to the size of verts!
rings = np.array([3])

result = earcut.triangulate_float32(verts, rings)

# Result is an np.ndarray with dtype np.uint32 and shape (3,)
# containing indices into the verts array.

print(verts[result])
# [[1 0]
#  [1 1]
#  [0 0]]

Release files for mapbox-earcut 2.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mapbox-earcut 2.1.0
File Size Uploaded
mapbox_earcut-2.1.0.tar.gz 46.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for mapbox-earcut 2.1.0
File
mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.27+ x86-64, Linux glibc 2.28+ x86-64 Details
mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
mapbox_earcut-2.1.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
mapbox_earcut-2.1.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mapbox_earcut-2.1.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.26+ ARM64, Linux glibc 2.28+ ARM64 Details
mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.13+ x86-64 Details
mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mapbox_earcut-2.1.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.27+ x86-64 Details
mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.26+ ARM64 Details
mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.13+ x86-64 Details
mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
mapbox_earcut-2.1.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.13+ x86-64 Details

Total release size: 12.5 MB

Release files / mapbox_earcut-2.1.0.tar.gz

Download URL mapbox_earcut-2.1.0.tar.gz
Size 46.7 kB
Tags Source
SHA-256 checksum
How to use checksums
fb0c1e43581a635bbaabf4a5149009014d370c515816c4d5a7d8118477f28d48
BLAKE2b-256 checksum
How to use checksums
aa148505f246191c41da54a64a4d6c30049ed47b6047930d8f0de328dadb06ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-win_amd64.whl
Size 291.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
265e2670bad18d86a6a542b09ae6426e8025fcc7bfc7b039027f6af380d2a604
BLAKE2b-256 checksum
How to use checksums
923cb73e2b9e4291663eaf1c2548ffc9051ccd47abd0f68e99f39e3dd8c8d603
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-win32.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-win32.whl
Size 283.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
d7dca5e525f54c28160d5515f5aeae135a35cb82408e3bd280b01f208d23f5e0
BLAKE2b-256 checksum
How to use checksums
05f50beffb7ad07b71ece774b201b6efe969571fa7697be9649ad53b4eb4d8f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 175.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
afa1e3c5b9d983b58e88cf5a1ab8d57c7817777a9a9bc13d26356f940fa0bad1
BLAKE2b-256 checksum
How to use checksums
28d3f2e047ba37e25f98b4086afed39c9ee6566c98a9c5bd7a32a8f459df4c8c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 170.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f90df2b36e6008a5993e29c74a9d711fa227600a6f9675cb182f7feef3dcfbd7
BLAKE2b-256 checksum
How to use checksums
9e675d4d81b893b2d0a7950edcd688fdc8fcfde92c6c3aaa49dbc306a6912019
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 75.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
da53538a84bc1bb32d3983710d0014be6f41f2e5dc90fad51dfb53278b0a1698
BLAKE2b-256 checksum
How to use checksums
f0fbed1e52409b65873c1cbfcd3b701ac9adecb506585268f8c4d813a359d51a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 72.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3bce59b92603849ef49084cad77dda3da323970ba7a82de3a0a35fc962ab92a1
BLAKE2b-256 checksum
How to use checksums
cea2ec7ea2249e5b47b5c779f3879e83a51072d19b78822655f56cbad716fb0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 67.7 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
260814d85d5cb7f02b99d0fb69b4ec83a0cc4aaedb2c7f9c69d9f47a8ad38ff5
BLAKE2b-256 checksum
How to use checksums
ddee1e92aaa17861ee9a5e7b406e33325b89f3e83fbc5767763f5cb57fa20fdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 70.7 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
0e1cd2514e2774c11f988f33af09b3ff30f534c6dd9630d6a0b99694274d4b6a
BLAKE2b-256 checksum
How to use checksums
d622cabd764d02ba6a4639354d78f65456f2f0bbc7ca4c553d39e96c71a52c2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-win_amd64.whl
Size 289.2 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
e1b21fd100655ae3c0a2f62e08994228051f9b0b31e081c535c1431361b54614
BLAKE2b-256 checksum
How to use checksums
fb21ba8bc7f379005f2df1f21cafde1b7f5880f539af35356c67a1bc156d9367
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-win32.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-win32.whl
Size 281.0 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
fbaae75dc6c34d94329f55068aa3c0e4285b8f54a84e569f3d7c14be4774295c
BLAKE2b-256 checksum
How to use checksums
5cf63518161f9caa9c5f50cf59ed764749b3a4eb650c07cdb11bd2a6ec4a7a6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 174.4 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b7447082d864ac496aa6e0b23e31428bda9ec3ca217c09ea9af405274fb56410
BLAKE2b-256 checksum
How to use checksums
05d1a72944ae9567d8745668dacefafa92d6a9aadac63b2d9c155feef7b8c87e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 168.9 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0d6e11e5e722cc29d2da08840802742b0337842bed0c6655b8785874e646cc34
BLAKE2b-256 checksum
How to use checksums
7091bdc5aa7dae025b8faf022987397bb27081f3b95d49ed45b4c9347b7f8528
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 76.9 kB
Tags CPython 3.15 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c5b7b07974a3832175fb79bcfba32582cdb04142703d804c40fe1043d4dfca3f
BLAKE2b-256 checksum
How to use checksums
d1beaf8af09b7c74613a38fe4ca23afbdd45e70bf9019ff4b91401ce879b8572
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 73.2 kB
Tags CPython 3.15 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
26e40f410c0b101626111252fd657d310220254434bd240d29503d83c0857d71
BLAKE2b-256 checksum
How to use checksums
3acfb4a2bea95c0ab9b46206898308103087df993d656e0e089891be331dbf29
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-macosx_11_0_arm64.whl
Size 66.5 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6cccc1efbfbc989ed178f91d1e855969fdc4acf26d4396ad404fec011ec69973
BLAKE2b-256 checksum
How to use checksums
ba6249ebf1d6afbbdba83b73efbb2e91b45701ac6f0f07d5cf9242c521d28992
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 69.6 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2f5f9e0e7be256393cb872b3af3064bd7eaddda16c0d238588b5c8ba9a8544b7
BLAKE2b-256 checksum
How to use checksums
0ac7e410ccb819156c4500f363a4cf6f1bddbf1f48007b10fd2352d93b0ac2c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-win_amd64.whl
Size 290.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
4b11782a4bec5c5b442ebf5421361ea4b8d343ac15fd58d8dee39c0affc81a4f
BLAKE2b-256 checksum
How to use checksums
a302091aa8f58defed3696b12ff7d4a56e78fcb3416b3d4e32fb183a2ce31646
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-win32.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-win32.whl
Size 283.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
46c75cbf1d10b3e3b88dc2e0047f6f0c715e1bd4d56931727751f776660c0357
BLAKE2b-256 checksum
How to use checksums
049eb0c286fb9d2d71d08665d23f00906d402f67b4379570b5cf115a2e7c07d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 174.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d0eab4447b73c54b4b73ccc25881a66d533b13ca37d887cf654efc17b8da21f8
BLAKE2b-256 checksum
How to use checksums
e116c852be8d82c438ac583b6a07db02ff5547634c64966f5bc5fd761f1a6589
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 169.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
691825b5b93171b1725491fada1ddae70c37330360f70592bf07c1b770a2b437
BLAKE2b-256 checksum
How to use checksums
9c8dd86b1da12235b27d8530ca30e5499bba646468926978eb46bd8f4ce79747
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 75.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
52f75cca40240f33fe18de005ee1ecb1c13af6ecc45d108400ac6489b54562ca
BLAKE2b-256 checksum
How to use checksums
976e4cdab89617fbc955b85c91250767b482dce19813515dcee2d78a76da0354
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 72.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
66439a181c1416907607b97f3f749ad22cb8b5d410a37da3a7d3f4914739a19d
BLAKE2b-256 checksum
How to use checksums
865d3e52d5dd94d7227d5161d2270a29b5831738a119ff343c78b111c070463c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 67.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
01e35034f923d087359a8551ee8546abfcc4d711674859ca41385409d44e993b
BLAKE2b-256 checksum
How to use checksums
050189e382936dcc3a0cf8260fd30d428afec81fa53e35062b150ff95350b154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 70.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
1c924fd7f19a1b1a2421306c651b228d36be30c131a1d552c2303214c67cf186
BLAKE2b-256 checksum
How to use checksums
36954477d1231487470822a98cff8dae19720ae3eef1798fa4a51e97b8251452
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-win_arm64.whl
Size 464.1 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
5d28efcc3448f524ad45f52db9046b3296de32a0406f62ba203b360e3492d7fa
BLAKE2b-256 checksum
How to use checksums
30914d53f1cd838936da7cf7f14a641a07bff730cc19f5be3e3b77eb75475e9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-win_amd64.whl
Size 289.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
d8816d6b4b83d2a3e4b9a2f685a9d16418c680825ac277642c05975a08af073c
BLAKE2b-256 checksum
How to use checksums
92e8a94aa807140140d515fccb7393c75d2aaddac2403a207588fb3da1a2b688
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-win32.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-win32.whl
Size 280.9 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
ef8e993d04ce5f8e198f55af4f5de0a64164c7d2f914fee29731d2c14da63bcf
BLAKE2b-256 checksum
How to use checksums
4e1e7c3e2cdf47c70526376769dd981ed0e608e44a9772e1edd213e3f211e31b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 174.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5488bdd616a4ab9b8ec2b177f9d94ca33243020209fb5025ca0c6d19fd043a76
BLAKE2b-256 checksum
How to use checksums
eeba3be16d09fcb5277cb1f27a65566584d0bac33664aa3e74f20b224cfda762
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 168.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0b300e634ca98f44bd7300d06f177197e5872f63675a4003ea1857d16f364571
BLAKE2b-256 checksum
How to use checksums
60129ea657f8117c3c0d6e0d96218395c57f0b289654955f90405d7981e5b816
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 76.8 kB
Tags CPython 3.14 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
db56b69aace164fb82884f9ca36864ea3d6e8ec643defebec83541dddf41be32
BLAKE2b-256 checksum
How to use checksums
864f3655c691732f14cc829fa45a4629085a7ada9e1bb65caf231e6ce982e9d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 73.0 kB
Tags CPython 3.14 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b51988c17538fb98dd18a45656ea1d54c30b4d384eabd20eb8ad0a142116495f
BLAKE2b-256 checksum
How to use checksums
44d1499e87fc1b630ef2d1ac3083587258d0dea4e5e7b1048e73d9d9770f133d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 66.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8e2d94b2a5ff27082975c57372fc6c966111482b82f42c322dbae22a11737c78
BLAKE2b-256 checksum
How to use checksums
4cb77a558c3a36ec6818632dce1c4e45ea4bac764b4e484a9f15a44e33116c9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 69.5 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
01754511b3b2adf9068a0aec595f6b3c2ef91e101942f0805153a555bfb4226b
BLAKE2b-256 checksum
How to use checksums
56f5d927a6c18e628fe76ee6d5be1991a9ed55f07b8d608f37acd78aa9bf0337
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-win_arm64.whl
Size 448.1 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
7b3441c188704bd03ca7c320c444378eda529ef494220b9b735389b87765a38e
BLAKE2b-256 checksum
How to use checksums
e945cc48844e03f595b535facd5f5b481db05f98e017b3858fab96c639b5da50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-win_amd64.whl
Size 279.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
0224b889f67b2868b4cf4dc3ba7dd7006122ece2199159147edce80e05df079c
BLAKE2b-256 checksum
How to use checksums
60e1dc52f1b18347c29742ff1a82c0f88553c8fac71fdc541cabe553ddead1c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-win32.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-win32.whl
Size 272.9 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
fed97aaa1cd846c1a24867a43fe0a6603e84b25543cec9f58aced65a8c5c723f
BLAKE2b-256 checksum
How to use checksums
e265c97fabf109c2e381611e20a9657a4097d90dcbd82abb2e183e0247a81a8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 174.2 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
086cf89caf061da1669add4f92aa76e5e90a232edc7f82445df362334fd4c3f8
BLAKE2b-256 checksum
How to use checksums
38451a43da1002787a1b4dcc3740d0216d60239cf92a878ac6cc1ca8d2d4d089
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 168.7 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d2d87ecc9a00faafb7a0e6c0179bc61e54f79c23f44c33269605475d5eeceb07
BLAKE2b-256 checksum
How to use checksums
47ca349241fb7971173f2bb7f626396b2d504c7ed3fc1f46f19c18769865fc94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 76.7 kB
Tags CPython 3.13 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7cee9422275dd8700bb04f82eac3410d03c283630a1cc536b1a09cc721a5c0a1
BLAKE2b-256 checksum
How to use checksums
fea1841d702350b644808fc9c4793910045a9fb63a387aabe132de225d0a07cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 72.9 kB
Tags CPython 3.13 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
611a6fc362c6a24cd7fc230e2740300e60bc5360e6085e36b40c5776eaf156a5
BLAKE2b-256 checksum
How to use checksums
3824edf60cbcdf8327e18279dce6963496542dfefbf3c49641a8a68e753b9a6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 66.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
01e1df4c841ebdccce44e07046e6d23f307019957f69751439da744f7b09a262
BLAKE2b-256 checksum
How to use checksums
b1c734fc86374e487adeae197f42883664abe72c48663e9d106b6b431645d053
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 69.3 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
fe652ace9a050b9f6447e9d7a9f2465fab951547e295ba1de7f2404f8bdf326f
BLAKE2b-256 checksum
How to use checksums
c98d9225758660ddf74fa757a044efdd40bc3e9ad509bc012c0efd58082012dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-win_arm64.whl
Size 448.1 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
d48c8abdf0268903689335f4b609022b588b84d98a455c2a2cb0d6bacd5bad50
BLAKE2b-256 checksum
How to use checksums
fb95f9b0ecb85c62768b2827ab50fcda3228e5f133c0e11aa9dc4759c6f4c1dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-win_amd64.whl
Size 279.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
eeea00eeb70873d840290e98471671d02e4ac0536b847b785177a14001e33a95
BLAKE2b-256 checksum
How to use checksums
ba58b1021f9065d315a5d325a913cc76c996a1629fb032df9c3fa5c9939bf692
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-win32.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-win32.whl
Size 272.9 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
c87bf3755011fde95713c5b655c67b144e23e218e65efed2b7ec44f0188b3af9
BLAKE2b-256 checksum
How to use checksums
9dc17c9453cb4e0cf19184da13324d96f349e5a180dc78da12dda886dce894a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 174.3 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ace5e2f5f53d742fffdb795c66e8387b0cca04ecf11588fbb8ab14150f30f214
BLAKE2b-256 checksum
How to use checksums
bed58cbe09f35d6dedccfc90d7823bbdf7782e0665134dd5abd53d18e2ad1bc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 168.8 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c0875192aed99a58e438abbcd5c096517c7947002a5f442440e2a7673f20cc0d
BLAKE2b-256 checksum
How to use checksums
29716ea9a0bf249782684b241c58a7fdf58c07aa760233a5c0d4366d10f2c25e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 76.8 kB
Tags CPython 3.12 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5592b56bf6ba66c1d360edf019c7708c8ec9ab6b71b336e457f4660a077676ed
BLAKE2b-256 checksum
How to use checksums
9dd09557f5d60e21c434cf87d70fe056899eb6b7ee8cf7755c556e06c77c8dab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 73.0 kB
Tags CPython 3.12 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
3f6181c097afb5de2a7160424cdb0660510bf8689ed4585a3f61f3f52596c18b
BLAKE2b-256 checksum
How to use checksums
524fb886e77d14f9807abccb2eb0e4752400746fa16cc6a2c9197e88385332ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 66.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4e392807f3e25f268826ece0f32739f0410ac46eebf70f06e701950297292d7c
BLAKE2b-256 checksum
How to use checksums
673ed93e98c76afad5075151d6e19a8446092a53fd42823f4734138dbc74fd5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 69.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ba3e72cbe58c564acc4e07458da0da0cbf3e034705a093cdf6213815793cf566
BLAKE2b-256 checksum
How to use checksums
2cd074534b0a7df17340cb2ab2c959909ec7005eaaf8422da646565205b04664
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-win_arm64.whl
Size 448.8 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
5613a5947aebe42557dfc09a545469db34876a5c6d06c1b341b11a0e5dcaea95
BLAKE2b-256 checksum
How to use checksums
4ccbb9802ebe1f0afc06e258af142ed66963fd5bb9e30e6ce608be126b8b08ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-win_amd64.whl
Size 279.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
010531c21c3ebbe9f52b185e023aa9132a496bd57a6e113bafd7ce4b41d05c7b
BLAKE2b-256 checksum
How to use checksums
6c700acc354827f848721d77c1efaca0e23bb16ba4b90c2b2ed2961179650217
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-win32.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-win32.whl
Size 273.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
87a6f1df5df5d35e10d8120d1ff4ee35a26007e5aa15435d17124a8c72e385bf
BLAKE2b-256 checksum
How to use checksums
e9fbe9dfa7d9587c769e500cdb3bbc263ce5a6d0e4a70edd40a4927c38c8a6a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 175.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a17febe0d541fe7cfc9dced37234adda598e0fd303d08b5f56c75b4d5e0ba0d3
BLAKE2b-256 checksum
How to use checksums
4b3b0d2139c8599650ae8edf68b6c5efeb60776dfdd4dd905fbfe285899f25eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 169.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
08fe000894fa4e4c5794c0a9c361e1fbb7c7c2baa40398cf6c89bb1327f2a430
BLAKE2b-256 checksum
How to use checksums
f40e9246639cd6f8c0864a2fd08ede2920c8fe4842adc487538bd4d839faf351
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 77.3 kB
Tags CPython 3.11 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
89c81f3806540c5b7091fc7ac4dcc2336d6410a922ff9fb384835015c7709c1a
BLAKE2b-256 checksum
How to use checksums
68f5d5296c3bfa1d4ba0580f1785526dc634f65ee25619db75538583a33f40bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 73.8 kB
Tags CPython 3.11 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
74bea5212c7253f624f771a4bdc5ac661a701ddb3b9f503dc1c0378ea573800c
BLAKE2b-256 checksum
How to use checksums
dfbf69d9967fa16218125c5cd9800ff52ef200ff3b65cf6cbda1946eb4ec44cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 67.1 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6318a6fc346d94d8fe7703b75d7436c02609b4707fe27ea7fcff9877f1e620a3
BLAKE2b-256 checksum
How to use checksums
7d0e57cd9441cd98809e397e4856786290f31fd77ca696a9254414f107ccac4f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Size 70.0 kB
Tags CPython 3.11 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
32143eff1deb83a78ac03759fe5f87403874fc5915e48ad23e6b948375871364
BLAKE2b-256 checksum
How to use checksums
a4b78d0cc82be423a6220c46428288ae963b176502c3a85baf6f5a82e62780d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-win_amd64.whl
Size 279.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
9ffd573619606eb4399e6d19ee7e8fb351b11435bf8194dacd8836faed87ca7d
BLAKE2b-256 checksum
How to use checksums
ad9f56a99cb3e8a47468bb8128699bcfcdec8eeef36049b3259890c54940e9a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-win32.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-win32.whl
Size 273.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
aa18e4bfad11053a49d8ad03e92e63742cf6db71ea6dc6a6dd16e3f260d0e829
BLAKE2b-256 checksum
How to use checksums
30b32f17730ddfade34936e0b60fe60f1a65cac45ed1e9291127f45804c9f473
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 175.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d40c690598ac45e2c77bf1a7f0c374a9eb21730492c75515234e4754b7cf4660
BLAKE2b-256 checksum
How to use checksums
819dc7848d011fe5c28bbdeb12130d229f36d6b9821876dec2625b32052288f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 169.9 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6da41db4c566a50d2d7ff4a10d0bae85d70fac09382d491bbc2c034da0f45973
BLAKE2b-256 checksum
How to use checksums
9ea293a6bdcd0e4aab083e15fba66a9ccea339c22a43976440eca148421100e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Size 77.7 kB
Tags CPython 3.10 Linux glibc 2.27+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
22c6106c1db9c45a83d20d4eec0133b41d2746f348418440fc5693156901528c
BLAKE2b-256 checksum
How to use checksums
fcd523a0aa58c23f3630bf3b4f137ac2faed28c4512595e953ea836aa5df75e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Size 74.2 kB
Tags CPython 3.10 Linux glibc 2.26+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b67043dd426c6a78a2463730c67657837786710908fe2fba60e226864ee54464
BLAKE2b-256 checksum
How to use checksums
e917267f07b0b28643e1aee05d717eea7705031688a4ffb4783d8bbe9e4aa410
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 67.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
87a2c587c93300501d05bbd424a980059339bbb722cea3cea8740032d6309721
BLAKE2b-256 checksum
How to use checksums
593a5ca87e7d5c80b4a7512042dae49780ad324968f13bf9a4915e9ed8ae00e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Size 70.4 kB
Tags CPython 3.10 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
942c94de1da6b078969c13383cb7697ec7884ad314c35753b60527590a94c4b8
BLAKE2b-256 checksum
How to use checksums
9927693647c0faf2e2e2078ff3cd4bc8e9e06d3f6299b83062cfebd838d53c01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-win_amd64.whl
Size 253.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
6cecf0ffc9f78b8ec97e6708a97192684a8998291c577b15d4b30c37d7dff9b9
BLAKE2b-256 checksum
How to use checksums
9dc30591f382af52c279318917f60ff8da0559f74d79b1f24d1cf32df9e3fa46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-win32.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-win32.whl
Size 249.9 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
e7af33d530c1e11b144c68a7300827156c4ed71a8dd3fe16ea8323bd8ffb827e
BLAKE2b-256 checksum
How to use checksums
839f5777a0947c6479649d5a9470f4a3bbdc2532fa6a03f4de1c3797abb673f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 170.2 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
09e7f50cc1de37c11a039ade46e0e8a516b06f84bbc1c4eabbaa924a2cd8c354
BLAKE2b-256 checksum
How to use checksums
c5b11a6e56b678c7e7d0af079af35097e042c73b404b58d61c447782445bb22c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 165.3 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b1882b28119b0b3816a21619abc5ccbf669446f6d89ebcdc7ccfff3b02f199a2
BLAKE2b-256 checksum
How to use checksums
ff6fcd2640b1fd66403bd733951ddecc874ce4961ec410afa2c8d9edc16e4277
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 73.2 kB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7cfafd2860a1a6c4625f3fff9776e90f40bad180d2a4bd658f7485380b5c36d7
BLAKE2b-256 checksum
How to use checksums
734f2985505645179c78a3d8f53f4a71c1cd86d840d7d6df071e6bfb260499fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 70.1 kB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
01f158470968293287d4c15ee28cc87bc3d87814d17850441529a665a8e58d82
BLAKE2b-256 checksum
How to use checksums
2ee81c4e4d470b2b99f13425674f15292e56627cb4ab5d3db718c6ece77b1f73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
Size 63.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b3ee543e87db47e600724fd69eb6e20459da6297f0f02ce293225889d2f60206
BLAKE2b-256 checksum
How to use checksums
a1274eed73d09f792bf610daacfc9c2f3174b886e9db83cca14567895dc65807
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release files / mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl

Download URL mapbox_earcut-2.1.0-cp39-cp39-macosx_10_13_x86_64.whl
Size 67.3 kB
Tags CPython 3.9 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7b1c4d2a2d31d0effc350013ea15786c9e96fe57da705e778ab50524196b98ae
BLAKE2b-256 checksum
How to use checksums
b98bfdf8b0394cb0f6c3f2b14fabe95b4534c9799ac47a407c29c10a00bd86ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 8, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.1.0 This release

77 release files

2.0.0

61 release files

1.0.3

39 release files

0.12.6

1 release file

0.12.5

4 release files

0.12.4

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page