Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Shapely

Documentation Status PyPI Anaconda

Manipulation and analysis of geometric objects in the Cartesian plane.

https://c2.staticflickr.com/6/5560/31301790086_b3472ea4e9_c.jpg

Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. It is using the widely deployed open-source geometry library GEOS (the engine of PostGIS, and a port of JTS). Shapely wraps GEOS geometries and operations to provide both a feature rich Geometry interface for singular (scalar) geometries and higher-performance NumPy ufuncs for operations using arrays of geometries. Shapely is not primarily focused on data serialization formats or coordinate systems, but can be readily integrated with packages that are.

What is a ufunc?

A universal function (or ufunc for short) is a function that operates on n-dimensional arrays on an element-by-element fashion and supports array broadcasting. The underlying for loops are implemented in C to reduce the overhead of the Python interpreter.

Multithreading

Shapely functions generally support multithreading by releasing the Global Interpreter Lock (GIL) during execution. Normally in Python, the GIL prevents multiple threads from computing at the same time. Shapely functions internally release this constraint so that the heavy lifting done by GEOS can be done concurrently from a single Python process.

When sharing NumPy array of geometries between threads, extreme care must be taken to avoid creating thread safety issues when mutating arrays. This holds for any NumPy array, but even more so for arrays of Shapely geometries. When overwriting a geometry in an array, the old geometry is deallocated. If at the same time another thread operates on that geometry, interpreter crashes will occur.

Usage

Here is the canonical example of building an approximately circular patch by buffering a point, using the scalar Geometry interface:

>>> from shapely import Point
>>> patch = Point(0.0, 0.0).buffer(10.0)
>>> patch
<POLYGON ((10 0, 9.952 -0.98, 9.808 -1.951, 9.569 -2.903, 9.239 -3.827, 8.81...>
>>> patch.area
313.6548490545941

Using the vectorized ufunc interface (instead of using a manual for loop), compare an array of points with a polygon:

>>> import shapely
>>> import numpy as np
>>> geoms = np.array([Point(0, 0), Point(1, 1), Point(2, 2)])
>>> polygon = shapely.box(0, 0, 2, 2)

>>> shapely.contains(polygon, geoms)
array([False,  True, False])

See the documentation for more examples and guidance: https://shapely.readthedocs.io

Requirements

Shapely 2.2 requires

  • Python >=3.11

  • GEOS >=3.10

  • NumPy >=1.26

Installing Shapely

We recommend installing Shapely using one of the available built distributions, for example using pip or conda:

$ pip install shapely
# or using conda
$ conda install shapely --channel conda-forge

See the installation documentation for more details and advanced installation instructions.

Integration

Shapely does not read or write data files, but it can serialize and deserialize using several well known formats and protocols. The shapely.wkb and shapely.wkt modules provide dumpers and loaders inspired by Python’s pickle module.

>>> from shapely.wkt import dumps, loads
>>> dumps(loads('POINT (0 0)'))
'POINT (0.0000000000000000 0.0000000000000000)'

Shapely can also integrate with other Python GIS packages using GeoJSON-like dicts.

>>> import json
>>> from shapely.geometry import mapping, shape
>>> s = shape(json.loads('{"type": "Point", "coordinates": [0.0, 0.0]}'))
>>> s
<POINT (0 0)>
>>> print(json.dumps(mapping(s)))
{"type": "Point", "coordinates": [0.0, 0.0]}

Support

Questions about using Shapely may be asked on the GIS StackExchange using the “shapely” tag.

Bugs may be reported at https://github.com/shapely/shapely/issues.

Release files for shapely 2.2.0rc1

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

Source distribution (sdist)

Source distribution for shapely 2.2.0rc1
File Size Uploaded
shapely-2.2.0rc1.tar.gz 379.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for shapely 2.2.0rc1
File
shapely-2.2.0rc1-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
shapely-2.2.0rc1-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
shapely-2.2.0rc1-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
shapely-2.2.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp315-cp315t-manylinux_2_24_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.24+ x86-64 Details
shapely-2.2.0rc1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
shapely-2.2.0rc1-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
shapely-2.2.0rc1-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
shapely-2.2.0rc1-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
shapely-2.2.0rc1-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
shapely-2.2.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
shapely-2.2.0rc1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
shapely-2.2.0rc1-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
shapely-2.2.0rc1-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
shapely-2.2.0rc1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
shapely-2.2.0rc1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
shapely-2.2.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
shapely-2.2.0rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
shapely-2.2.0rc1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
shapely-2.2.0rc1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
shapely-2.2.0rc1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
shapely-2.2.0rc1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
shapely-2.2.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
shapely-2.2.0rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
shapely-2.2.0rc1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
shapely-2.2.0rc1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
shapely-2.2.0rc1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
shapely-2.2.0rc1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
shapely-2.2.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
shapely-2.2.0rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
shapely-2.2.0rc1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
shapely-2.2.0rc1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
shapely-2.2.0rc1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
shapely-2.2.0rc1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
shapely-2.2.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
shapely-2.2.0rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
shapely-2.2.0rc1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
shapely-2.2.0rc1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
shapely-2.2.0rc1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
shapely-2.2.0rc1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
shapely-2.2.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
shapely-2.2.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
shapely-2.2.0rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
shapely-2.2.0rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
shapely-2.2.0rc1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
shapely-2.2.0rc1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details

Total release size: 139.5 MB

Release files / shapely-2.2.0rc1.tar.gz

Download URL shapely-2.2.0rc1.tar.gz
Size 379.1 kB
Tags Source
SHA-256 checksum
How to use checksums
d2271d003c2d6446fdb8bdc97e187f13249d93eb90842c92ebf7cb9ee061c75d
BLAKE2b-256 checksum
How to use checksums
1cf1f87f512bad722cfe1eaf61735f675f9ef26a287bce84a0658c534b87fca1
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-win_arm64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-win_arm64.whl
Size 1.9 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
face9f7a4f058731e55c8d90bfb4ca9dcb5a51abbdc3102d07b14a9541d3e9a8
BLAKE2b-256 checksum
How to use checksums
f148130f7a1c1afffdfa059401d81c8b440a4ceb0af54573b762d645c7ef5374
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-win_amd64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-win_amd64.whl
Size 1.9 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
2f013a0d0cb5a5da2338118a16ca221ea29d6736a510d1bd63abb5bd61c2bb25
BLAKE2b-256 checksum
How to use checksums
6cd424b17570a49e082d3ef81250a5947f223cd1271af55075214765e2d992be
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-win32.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-win32.whl
Size 1.7 MB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
976e2980d789ea1a0e7fd3accbea274a90446c91f8d0c5882164b9a5f10efa9f
BLAKE2b-256 checksum
How to use checksums
ae3e1bdf063c2841d8351fdbbb7ea73409e4ddc64365d7473f2ea11e6eacec50
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ae494ac7f122f3a5c6321d44ca03961b2b8ebd0e359016958e1ea38ad7a4a5c7
BLAKE2b-256 checksum
How to use checksums
e098ab9d3e19163cfe6901472037843ed4845b14a5b1abe876593013d83b85f8
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 3.2 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5ea6395000a83e2cf8fdebbb23de4ed3e73c69ab8b2fd813381c7a37de067c45
BLAKE2b-256 checksum
How to use checksums
f80f743c6e4a9976576ea4d915fab6dd2908ad62e27df391bba1ce7a3f579d29
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
08c4da86c4d22c14ead0972fcdb30a18f34fb2db049202c1636e48ca433fb2c7
BLAKE2b-256 checksum
How to use checksums
1501dd91906cb636454e2128f1d5a1e56e0e7164740c507671bfa3d989510e22
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
856682d77781600a0ffa2f4d836b2691c668b7b732914159be91949043d96297
BLAKE2b-256 checksum
How to use checksums
84545e87784639ce294e7668e10613923c676da78b2d0cf8b41d37244d082b9a
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c010056530d0fa18da4f7c65c1c6b04c4022c6d2f8747d1328fd9b3cabdec6fe
BLAKE2b-256 checksum
How to use checksums
681c92775eb4c9f69a8c2e773c68c67b88bd10351880dfb1505983a98c22b93b
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL shapely-2.2.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl
Size 1.8 MB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
603ae072b0096a6dce07a1eb6f6bf6050bf9d9d67667e569ea040ca5d4c41b26
BLAKE2b-256 checksum
How to use checksums
479138f06d1e52f9968053bfbe67fcb0fcfbe45ea9f37f2692c2f6d9e02142c1
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-win_arm64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-win_arm64.whl
Size 1.9 MB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
d30365d349ec444ca00eb89abd1fd45b1b0e6ce1c37e58a4ba3b106569ef34c4
BLAKE2b-256 checksum
How to use checksums
c6fafd738708ebd81b032963fc4d6c04296be0fdc41c977aa9d359875e03534c
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-win_amd64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-win_amd64.whl
Size 1.8 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
a8589bbf96f51de59be9a2b63fe770ce1ab7603a472f7f583225e7fae4313a12
BLAKE2b-256 checksum
How to use checksums
06754d124840853d8a7ae526b1083ff32d947ac8c17dc3ab8d5e91eb285e6b3a
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-win32.whl

Download URL shapely-2.2.0rc1-cp315-cp315-win32.whl
Size 1.7 MB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
d6d11efe1b2384572b53ae41baac992a778aa0ae0da8a397eeaab2ee20333e75
BLAKE2b-256 checksum
How to use checksums
b97472f32ec44d111f2e59bc8a634ab78a3925822dd6b502b4ecd176e3b79fa6
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
577f7c68275d988c5ba07293f87139183bd67fc4202165cb4a17d2a409547140
BLAKE2b-256 checksum
How to use checksums
5f82bd3b368037c3b583bbd1a9421f29d71ef3d1d398974a9e657914e47e10e1
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl
Size 3.2 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6da2a7695fad377eb0b68df3cd347b51c12b70c9100d4055aad25ad423d6c9b7
BLAKE2b-256 checksum
How to use checksums
09d67aaca18df8b3ceb631085d76d752646d81a93de4dc784634542141ef7d17
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.15 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f46a69edfa746f78d6ab7f2bb107399c005469cd2c1d66502ffa67673728593d
BLAKE2b-256 checksum
How to use checksums
e09f84f650fb25c1f7e95bb2804b591193a9017040fa167e29b76bad81e9cf28
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.15 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e82381348d4af7e62e8ac3578724958df508f29462a7b49fd9e784c9d8ffaee4
BLAKE2b-256 checksum
How to use checksums
4c4b240208ade02725da4bd5e1bbb443a2ddc791190a8e666e331c58e02512a4
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
91e48ed9e0a81c50e58c51154ef5272066f3f307e549fd3aea1c455b50710395
BLAKE2b-256 checksum
How to use checksums
bd6db2b1a52fde646f55677c2f50e135331c81d51e3d80070002faad77c47907
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp315-cp315-macosx_10_15_x86_64.whl

Download URL shapely-2.2.0rc1-cp315-cp315-macosx_10_15_x86_64.whl
Size 1.8 MB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
1a280e103800aae16ae69647345fe7c152c744f8b6ab1b331394cdf240d80c7f
BLAKE2b-256 checksum
How to use checksums
53ca38f035bf5a4e8fb756f31410d243762a9d70497f54f886d2a7555ec545df
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-win_arm64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-win_arm64.whl
Size 1.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
01f6016e8ae6137df4ac10659787a5cc21591961b0607319060bc3ea5d2965f8
BLAKE2b-256 checksum
How to use checksums
be19873bd161b518bc307bc5d12c61b2cb0aab388a065be733ad131e03ec0f99
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-win_amd64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-win_amd64.whl
Size 1.9 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ac6f45e95a2bcb1337839baf3fc7c8fc48bde4709017605d82d82d1f126d7c7c
BLAKE2b-256 checksum
How to use checksums
2a87113a5f4fbae67074bbb2a358d4f474fac18fc27d5ef8f22883244975efca
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-win32.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-win32.whl
Size 1.7 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
7e472a75eb69953d0981b44dcca504b629f65a40a576bb5f362262a379fde8d7
BLAKE2b-256 checksum
How to use checksums
39e1234fec680c83016958526da44614e4388df0dcbe443970161699e798c674
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
89a6b60b6ff22ddbf76d91bdc3ad9ceb1fb904c7ee4d1888593c5dad41dcbd4f
BLAKE2b-256 checksum
How to use checksums
5cf1e5f1c4b7efbd7345b7fd10012bc8ddc802e83add89b47dc559d3c0849876
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 3.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
790ee70caca4e79a948fa4e5b7c8664b90811fd10fb90ff384be5512a1dda2b1
BLAKE2b-256 checksum
How to use checksums
7648018dfe7d0a34c1defc62cf9624814b7de23d62cba3713e78a429f0c89bb8
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9a6f390ae1006812473b513423a25ee8a2d4f7ff88ebe5f3c011371d3686c22d
BLAKE2b-256 checksum
How to use checksums
1ab55061860423123b3d384d2d9edf1a4c86738e6af0ef50507188dd8d068194
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f3547cb442d54fa7189348209d29ef5be7b983f43621553171192e77657518c7
BLAKE2b-256 checksum
How to use checksums
2c48f42fadf25e1a6b7d93fe83441f49cdf883d4c7f252a0f87e270ff0590daf
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
761cb42f509f3e2e34122ef718aa737c546f584efe426237d2d05668301dbadc
BLAKE2b-256 checksum
How to use checksums
4c79e0ea5b1559197938f083ab146dd70ca3ff7999b7dca29bac1ee8b4e76480
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL shapely-2.2.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
88e735bb35c6e844a3734220330b7b0fecb13734178de2148b87a94062d20452
BLAKE2b-256 checksum
How to use checksums
50a3aaa1cdc3fd5525604720c3e7befdf7eee4800d2bef74525053b80678e2b7
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-win_arm64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-win_arm64.whl
Size 1.9 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
067cba55d19ab3596c47583f2553a1894f517fe1476bea795adb3d9fec2e2e28
BLAKE2b-256 checksum
How to use checksums
c34b87eba7dd343cd667df3da3dc48608a26535e4175329ef396f1c03875031d
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-win_amd64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-win_amd64.whl
Size 1.8 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
bb8f3c1f0bf939ad6aba782f807e285c1e66d577adfd8084fe7a8875700f756b
BLAKE2b-256 checksum
How to use checksums
683d4cd7449ed1eea9ec81b53da8c1c82450db23f0dc86fd489fc45970de256d
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-win32.whl

Download URL shapely-2.2.0rc1-cp314-cp314-win32.whl
Size 1.7 MB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
c0b0cb5c1e63abedf30d849e9c60ab19bbd305da9fdfd33eba6916ccfc555451
BLAKE2b-256 checksum
How to use checksums
07cf598316659114da979bc1acb19670aab25c4006a7b9c026f02d51152551e6
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b18ba8c7b0d4b5bba91770e1a05cbac36b5419b36bd74af7127abbd6667f8a8b
BLAKE2b-256 checksum
How to use checksums
f3532da04e251b080241a56e3cf4e9d8d711da6327f2053a9b3544fcdf77ab32
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 3.2 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
45c995e24b04f64e4206ded18258f8658b6b3d1ba141db107b2e450a1cbbe440
BLAKE2b-256 checksum
How to use checksums
717445a1c24a0b15b80b7b92da353b5647d262c1c7e06795e710442703c267be
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b3c6957d7392175cd632c9478dc92685ac48061a292a1505b0639205006d3c1e
BLAKE2b-256 checksum
How to use checksums
02f6a01392d43647fddc0ee3e5fea47afa9c3a4acf735b0d62c349688f993bf0
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d0456f60035b3b7aa9181d77e7a71a1c4b1b20c02af7112ef23b95b9e961c271
BLAKE2b-256 checksum
How to use checksums
a0c8fe5977925817c014cb55e0f7795289afe535428f1afbcba9816637739b48
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f3b1ad632bfc69b54f844cf14eed6601adff60d98154b5d398ceea1f2bbaf660
BLAKE2b-256 checksum
How to use checksums
00b621635450313833dcacd57fd63cdedeef322d8638c01f41a7a012c45cc33f
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL shapely-2.2.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Size 1.8 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
51760775c5a4fe98f872da224e620c74f906e8e77e0f63d85d37945eaa3a35e1
BLAKE2b-256 checksum
How to use checksums
9a834416ee41b83aeb1e5c21929b0748d263ac35c677eb673fe1299744ce16cf
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-win_arm64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-win_arm64.whl
Size 1.9 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
1e431d0b859e3b33e4d5cc483c22071bf744906936e0a547d5b0477e790f9fea
BLAKE2b-256 checksum
How to use checksums
e5746e34e0121048e600d7357f0c64d99cd5df4b5b682011dc3baa92d7dde6bf
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-win_amd64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-win_amd64.whl
Size 1.8 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
f4e67eb8328a88720e3a769cb74bb2626bf05dfd0265fbdc03c54bb4f7335b6c
BLAKE2b-256 checksum
How to use checksums
8d201845f366c565ec6076819a6b2ca74e785a21fdb401ae91f98fd2925dcfd9
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-win32.whl

Download URL shapely-2.2.0rc1-cp313-cp313-win32.whl
Size 1.6 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
fafe329fba32232f766c5b062aa879700bd5673431712513df283cbbccf7885d
BLAKE2b-256 checksum
How to use checksums
de6d2d27c0b5c8fc41846b5e5939e1c4af1aacf04fb3bd0359d0e558276d603d
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0b297b284dd0a29d52a9dd0a98c327df045666f1399e6321d0b93e40a0fbcad5
BLAKE2b-256 checksum
How to use checksums
746d8929704e06d4e4827d8d21761e77ecd1ed86dfa07d90ffdff76ccc7bff84
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 3.2 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7b130982163a0ecce19246bd8dc266a19bf3ed8528fba3b69293d3708315fbf4
BLAKE2b-256 checksum
How to use checksums
df70025d1fed1786f5102ca0604677fa33057547a1112041b4c4d17e5dc6998c
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
801214e74ff1b6ae39eca70400cedb798a89129a2fc6388977c4446567be535f
BLAKE2b-256 checksum
How to use checksums
40765a45c113ef144317c8ec3b9a8e7511c7982df2c6828dbb4125e57b874246
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a4df42cff65d976bea9fc87a9393e7d6198eb0f3def2e943e437bbce535796b8
BLAKE2b-256 checksum
How to use checksums
89755773d6247ddd8add2f96cc492cc1d1796660aef2289166f412b37445a547
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3c4f72744e350e6c274e9e294d638d2923c49746cc76aeb1b36cadc84fc92859
BLAKE2b-256 checksum
How to use checksums
d98a0026910a75dff0a272d8f62e65031030ba5109ad3aa210ba79a442386a85
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL shapely-2.2.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Size 1.8 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
4229ea41bfd7cc9de43e875e9ce2b699fc46050e8c6973409a38b456de18d2a7
BLAKE2b-256 checksum
How to use checksums
98800358140ba48a153d43646fd3e95e297c408a6ba0a50e70d8b5be98940cfa
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-win_arm64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-win_arm64.whl
Size 1.9 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
d8e5372e413a83b637fca3eebe1ced0d983f7a6e22391ae88a3de4845fceb9e6
BLAKE2b-256 checksum
How to use checksums
3cd96a1640e910fb92173f645db21efb90cb00fdf996b7aac65cb612378c05c5
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-win_amd64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-win_amd64.whl
Size 1.8 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7f9617d734939e7b1b7abe63170dbd052548cea7460a24b6913c1d4813899f52
BLAKE2b-256 checksum
How to use checksums
cb084c0e1dd126871faadbcede7cbae1a3902a906577b0046d324d0e4d87b5bb
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-win32.whl

Download URL shapely-2.2.0rc1-cp312-cp312-win32.whl
Size 1.6 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
1fe0ea4649c87358a2824420d6c93527eb01262edf185e59b2c1abc3eac88805
BLAKE2b-256 checksum
How to use checksums
1208f8e27a87a945ce637fd631909b18fd4d8437b6a61ca4ebe1b983a0337cef
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0426628f3ac6a8c4522d3c7af1c9196f1b5a514d39e2dd22449e96f6dc3de2a1
BLAKE2b-256 checksum
How to use checksums
79044e926f3792df6135f404d6e6dfd570aa7da5f478b226c35bb006e19544f4
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 3.2 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2af67199f20aeddd5430a825ee31568986c12775d67bbf31df58b039400cd81b
BLAKE2b-256 checksum
How to use checksums
21060a90c29d1556ffa249beb1a5dd79abd7b48353ca547f46f2d0eba694052f
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
023551adf11e557eaaa31f6db31d077024cd6dd1cede6b29c084958a8eb89dc7
BLAKE2b-256 checksum
How to use checksums
57937656f355bb77216b982c5c89e817bad12c7389f546af30407fc3331e05c2
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f1216fee175b1c590ab9e1af46c3d5aaa338cc39d3512791a25f28c887e3d45e
BLAKE2b-256 checksum
How to use checksums
a3b7267dcc3df2a427f981e98c98ac6ed252465db7c0b05383805cc0c3941177
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
87bc57dbfe3e3bede8be9d188b4612c1b53182b304bafb3eedaa2883622ea215
BLAKE2b-256 checksum
How to use checksums
d33ab69bccf7733d4683bc057a5c766a86d8221f651c0ddfabb1e21a9826a8fe
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL shapely-2.2.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Size 1.8 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
cb10897d8cd4322fb938eb8e5989619ee28bab672c2f96e2db33f2dc3a626cb1
BLAKE2b-256 checksum
How to use checksums
fd0bfddaa66c1b75bf46acb2c0eeef4e527e46c833583d8dcead9cb1d5faddf9
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-win_arm64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-win_arm64.whl
Size 1.9 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
291002d8e36ae737e3f3b20980b5d71426a60ceed114f3b0d283a9f025938b8b
BLAKE2b-256 checksum
How to use checksums
b489093653942d6a2a962d290409ce11d338ccf16f4fc3d29e94408c28461bfd
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-win_amd64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-win_amd64.whl
Size 1.8 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
bec6ebe4df07ae5b9d2296682b2c2cac06ff8d5e433589af8433ed2231da5ef1
BLAKE2b-256 checksum
How to use checksums
ab6255456a3eefbd4415cc7f6d873a242ee5559c84a21c66406bee6ecb76348c
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-win32.whl

Download URL shapely-2.2.0rc1-cp311-cp311-win32.whl
Size 1.6 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
f4243dd889022acc5a458c6a58cc64a1c5835c3d64e966a30ece6f10b8169d20
BLAKE2b-256 checksum
How to use checksums
7706084cd4354f88947d8d7d8170cf2fc12670adb31319a21e4fd56f5a1c289c
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0d4e36d628f97432b6b19a02d044a0c0bbc75a97597775d3c1a16f10711ff47f
BLAKE2b-256 checksum
How to use checksums
95e7844d2ae5d0bbed5b33b3666d5171e142eff92e69aa7f76c4f69030623098
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 3.3 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b7bb020127af4aa4520b9c9d7d02126ada96b986e33aafff616964e1ebe359ff
BLAKE2b-256 checksum
How to use checksums
72e4d0ab3d5ab691253167ece12acfec672e645081c5f558e7d049900055ba5a
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
808622d4e576a3cb5ef083f66790c45536db235d900676981202dcb93ce6755e
BLAKE2b-256 checksum
How to use checksums
b0362bf778de97b20e4d158caf9214d772cfd2e819d1f95187d6b12ab9d9cb21
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 2.2 MB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a473660a44a8fad22bc08fdce86487fa24e01feb698df12af0b472f35978db15
BLAKE2b-256 checksum
How to use checksums
684984593393e77843053ea727ffe3b2e992286c965e42af280cbafdaeeb101a
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-macosx_11_0_arm64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Size 1.6 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
079f4a902efe2c4c966153c128484fdb5a7ca8122d49ab6f89c53acc1d8c4119
BLAKE2b-256 checksum
How to use checksums
c9571d854f0c7274f26dab648f4406fc943ac411a6a4a666eb127a93146cf950
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 21, 2026.

Transparency log

Release files / shapely-2.2.0rc1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL shapely-2.2.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Size 1.8 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a7eac8b5ee6fbab8625fa7b121de34ff9c4c5277ce2b504f921a1d1dd56bc07d
BLAKE2b-256 checksum
How to use checksums
2eef7e5cc2feafd76375cf8a6abf5d23fc8d992eb98e722934bcaea57a7ed95b
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 21, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.2.0rc1 This release

64 release files

2.1.2

57 release files

2.1.1

41 release files

2.0.7

42 release files

2.0.6

42 release files

2.0.5

36 release files

2.0.4

41 release files

2.0.3

41 release files

2.0.2

41 release files

2.0.1

38 release files

2.0.0

38 release files

1.8.5

34 release files

1.8.4

34 release files

1.8.3

31 release files

1.8.1

26 release files

1.8.0

21 release files

1.7.1

23 release files

1.7.0

19 release files

1.6.4

10 release files

1.6.2

6 release files

1.6.1

6 release files

1.6.0

6 release files

1.5.17

4 release files

1.5.16

4 release files

1.5.15

4 release files

1.5.14

4 release files

1.5.13

4 release files

1.5.12

3 release files

1.5.11

3 release files

1.5.10

3 release files

1.5.9

3 release files

1.5.8

3 release files

1.5.7

3 release files

1.5.6

3 release files

1.5.5

3 release files

1.5.4

3 release files

1.5.3

3 release files

1.5.2

2 release files

1.5.1

1 release file

1.5.0

1 release file

1.4.4

1 release file

1.4.3

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.3.3

11 release files

1.3.2

5 release files

1.3.1

5 release files

1.3.0

5 release files

1.2.19

1 release file

1.2.18

9 release files

1.2.17

5 release files

1.2.16

1 release file

1.2.15

1 release file

1.2.10

8 release files

1.2.9

8 release files

1.2.8

8 release files

1.2.7

6 release files

1.2.6

3 release files

1.2.5

3 release files

1.2.4

1 release file

1.2.3

3 release files

1.2.2

3 release files

1.2.1

3 release files

1.2

3 release files

1.0.15

1 release file

1.0.13

1 release file

1.0.11

2 release files

1.0.8

1 release file

1.0.7

2 release files

1.0.6

2 release files

1.0.5

1 release file

1.0.4

2 release files

1.0.3

2 release files

1.0.2

2 release files

1.0.1

2 release files

1.0

3 release files

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