Skip to main content
Pre-release

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

wrapt

wrapt

PyPI Documentation

A Python module for decorators, wrappers and monkey patching.

Overview

The wrapt module provides a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions.

The wrapt module focuses very much on correctness. It goes way beyond existing mechanisms such as functools.wraps() to ensure that decorators preserve introspectability, signatures, type checking abilities etc. The decorators that can be constructed using this module will work in far more scenarios than typical decorators and provide more predictable and consistent behaviour.

To ensure that the overhead is as minimal as possible, a C extension module is used for performance critical components. An automatic fallback to a pure Python implementation is also provided where a target system does not have a compiler to allow the C extension to be compiled.

Key Features

  • Universal decorators that work with functions, methods, classmethods, staticmethods, and classes

  • Transparent object proxies for advanced wrapping scenarios

  • Monkey patching utilities for safe runtime modifications

  • C extension for optimal performance with Python fallback

  • Comprehensive introspection preservation (signatures, annotations, etc.)

  • Thread-safe decorator implementations

Installation

Install from PyPI using pip:

pip install wrapt

Supported Python Versions

  • Python 3.9+

  • CPython and PyPy implementations

Documentation

For comprehensive documentation, examples, and advanced usage patterns, visit:

Quick Start

To implement your decorator you need to first define a wrapper function. This will be called each time a decorated function is called. The wrapper function needs to take four positional arguments:

  • wrapped - The wrapped function which in turns needs to be called by your wrapper function.

  • instance - The object to which the wrapped function was bound when it was called.

  • args - The list of positional arguments supplied when the decorated function was called.

  • kwargs - The dictionary of keyword arguments supplied when the decorated function was called.

The wrapper function would do whatever it needs to, but would usually in turn call the wrapped function that is passed in via the wrapped argument.

The decorator @wrapt.decorator then needs to be applied to the wrapper function to convert it into a decorator which can in turn be applied to other functions.

import wrapt

@wrapt.decorator
def pass_through(wrapped, instance, args, kwargs):
    return wrapped(*args, **kwargs)

@pass_through
def function():
    pass

If you wish to implement a decorator which accepts arguments, then wrap the definition of the decorator in a function closure. Any arguments supplied to the outer function when the decorator is applied, will be available to the inner wrapper when the wrapped function is called.

import wrapt

def with_arguments(myarg1, myarg2):
    @wrapt.decorator
    def wrapper(wrapped, instance, args, kwargs):
        return wrapped(*args, **kwargs)
    return wrapper

@with_arguments(1, 2)
def function():
    pass

When applied to a normal function or static method, the wrapper function when called will be passed None as the instance argument.

When applied to an instance method, the wrapper function when called will be passed the instance of the class the method is being called on as the instance argument. This will be the case even when the instance method was called explicitly via the class and the instance passed as the first argument. That is, the instance will never be passed as part of args.

When applied to a class method, the wrapper function when called will be passed the class type as the instance argument.

When applied to a class, the wrapper function when called will be passed None as the instance argument. The wrapped argument in this case will be the class.

The above rules can be summarised with the following example.

import inspect

@wrapt.decorator
def universal(wrapped, instance, args, kwargs):
    if instance is None:
        if inspect.isclass(wrapped):
            # Decorator was applied to a class.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to a function or staticmethod.
            return wrapped(*args, **kwargs)
    else:
        if inspect.isclass(instance):
            # Decorator was applied to a classmethod.
            return wrapped(*args, **kwargs)
        else:
            # Decorator was applied to an instancemethod.
            return wrapped(*args, **kwargs)

Using these checks it is therefore possible to create a universal decorator that can be applied in all situations. It is no longer necessary to create different variants of decorators for normal functions and instance methods, or use additional wrappers to convert a function decorator into one that will work for instance methods.

In all cases, the wrapped function passed to the wrapper function is called in the same way, with args and kwargs being passed. The instance argument doesn’t need to be used in calling the wrapped function.

Release files for wrapt 2.5.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 wrapt 2.5.0rc1
File Size Uploaded
wrapt-2.5.0rc1.tar.gz 183.3 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for wrapt 2.5.0rc1
File
wrapt-2.5.0rc1-py3-none-any.whl Python 3 none any Details
wrapt-2.5.0rc1-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
wrapt-2.5.0rc1-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
wrapt-2.5.0rc1-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.5.0rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.5.0rc1-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
wrapt-2.5.0rc1-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
wrapt-2.5.0rc1-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
wrapt-2.5.0rc1-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.15 CPython 3.15 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
wrapt-2.5.0rc1-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
wrapt-2.5.0rc1-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
wrapt-2.5.0rc1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
wrapt-2.5.0rc1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.39+ RISC-V 64, Linux glibc 2.31+ RISC-V 64 Details
wrapt-2.5.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.5.0rc1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
wrapt-2.5.0rc1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
wrapt-2.5.0rc1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
wrapt-2.5.0rc1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.14 CPython 3.14 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.5.0rc1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
wrapt-2.5.0rc1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
wrapt-2.5.0rc1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
wrapt-2.5.0rc1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.13 CPython 3.13 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
wrapt-2.5.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.5.0rc1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
wrapt-2.5.0rc1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
wrapt-2.5.0rc1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
wrapt-2.5.0rc1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.12 CPython 3.12 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
wrapt-2.5.0rc1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
wrapt-2.5.0rc1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
wrapt-2.5.0rc1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
wrapt-2.5.0rc1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.11 CPython 3.11 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.5.0rc1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
wrapt-2.5.0rc1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
wrapt-2.5.0rc1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
wrapt-2.5.0rc1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.10 CPython 3.10 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
wrapt-2.5.0rc1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
wrapt-2.5.0rc1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
wrapt-2.5.0rc1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
wrapt-2.5.0rc1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ RISC-V 64 Details
wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
wrapt-2.5.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl CPython 3.9 CPython 3.9 Linux glibc 2.31+ RISC-V 64, Linux glibc 2.39+ RISC-V 64 Details
wrapt-2.5.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
wrapt-2.5.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
wrapt-2.5.0rc1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
wrapt-2.5.0rc1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 18.2 MB

Release files / wrapt-2.5.0rc1.tar.gz

Download URL wrapt-2.5.0rc1.tar.gz
Size 183.3 kB
Tags Source
SHA-256 checksum
How to use checksums
a48ecc347bd90f09775275ee4a18e85a5f2265772cb3128e3722414fd126d26b
BLAKE2b-256 checksum
How to use checksums
37b13c471a6210fe31343c654669d795a1cef0c8dcbbbaedf622d70aa8034c05
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-py3-none-any.whl

Download URL wrapt-2.5.0rc1-py3-none-any.whl
Size 81.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
34dbbe1a056d400b70a27e050f4ff188079c4616994cd2799bbd433c13db690f
BLAKE2b-256 checksum
How to use checksums
413daa1bdcee505814ed87d2025184ad100875c0bdac8d838fa33ef3e9886ca1
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-win_arm64.whl
Size 105.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
a8efea71fa4cb9f24315fd36394a9d24ec74a1aaf442775c1b04109ce47d3f6e
BLAKE2b-256 checksum
How to use checksums
27f45e2dd671990f8cf5cf174b87832a76d361f04aa8fa0b567017b201fa23a8
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-win_amd64.whl
Size 109.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
a48614d9f6c5750ed93ead9056686c4d572b2c70ee7e6566767689b6629f6282
BLAKE2b-256 checksum
How to use checksums
25a6ae0f74a551ee1899cf6397174149c40514334a6935d34ba0b3b312214d01
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-win32.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-win32.whl
Size 103.2 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
6688143663edf8c4ba5df2b379a41bbca6a78d0e4549b8d332168373c5b798cc
BLAKE2b-256 checksum
How to use checksums
f181f5880e97bc953f1289c95b5f2f3c47687e91528e4f84fd7a9f6592a3cce5
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 279.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
dd02c80c6b0337a6c7108a958c993d56e172ac771df5e3684f7feb16177edce9
BLAKE2b-256 checksum
How to use checksums
d99502d6d135baca219fda15e917a6b451f87742fc5aa994590fdafcfb2d0b9a
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl
Size 262.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
f9ee9e217bcfba353ade4ccae0115903b8a018e1d4fc5847244e89c764e30f23
BLAKE2b-256 checksum
How to use checksums
3d9c4cd0e289e5d348030491ea5dcc635df51016f2a243d91914fde4137497a7
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 290.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2fe59809b84fb8e024cb968abd266c9d383538897cac92cc44769215fc0e5c8c
BLAKE2b-256 checksum
How to use checksums
38470e1019f827fa76ae5f56f8ee6312cf4ea80de4dba0ba4cd2751b62e418e0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 264.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
1dbc530c884be811e5a0757e73e6455c811911c1c6c606fed3c7498488966364
BLAKE2b-256 checksum
How to use checksums
43ff089922a619c01fd9b21fc4d3717ed501ad132bd6b565135b91b64bcc5bb7
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 294.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
27d0718f35b408e76f04c6f20538322602e30eb871cfa93a902aa7aca96b0cb4
BLAKE2b-256 checksum
How to use checksums
174b1d5ba1b1b0c21b22bd05cd21fd03facc0c2a44ab6af284f7a5150576903a
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 284.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
1b195dc9c6c4e690b9cb2aadac7d8636c3862faab308f62b32053edf2a171963
BLAKE2b-256 checksum
How to use checksums
4569b64fadc885b48629c43823c4dccb1b9f7f4acaf18b2db30b812b76143349
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-macosx_11_0_arm64.whl
Size 109.7 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
67e2aa08ff89004950ae93bb7be05b6b75ac948ffef05573c8be70ea97557dd4
BLAKE2b-256 checksum
How to use checksums
37c9f99efd0b990b9b174ace2a3f0e73b1aa7b2acdabfe18d9c86939d6a2e64d
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl
Size 109.3 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
518c0e38b0ef7334b18814f06b4a0322cb16e56aa67611ddee93d2a05faac190
BLAKE2b-256 checksum
How to use checksums
030492fbd77fadfadd360305741daac85ae7b433bb7b421e333739e9edeff638
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-win_arm64.whl
Size 103.2 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
47acc8e80da19178b1a642ef19bc71fe6859919246f866e8c5f763a506172408
BLAKE2b-256 checksum
How to use checksums
24bddd7e1858a99b3211f7e50e6c583ccdec8710f614bf135cc9df58679045de
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-win_amd64.whl
Size 106.0 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
78cf26f3f8a5f3497c0f7e835f7db18e64f04672cddf8a930a4cb9f30ba649be
BLAKE2b-256 checksum
How to use checksums
1bd068083e10a227dcfad6afc08ec21657fb6297d425047c28bd9879555665c1
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-win32.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-win32.whl
Size 100.7 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
0cce497df46603151a5033808834a41d9736d99d9aa8ddba3bb5073cae06b7c8
BLAKE2b-256 checksum
How to use checksums
893714e86b18e42d3e3adf9d7db792ccca314e991c40b4bb8c34be4416fd3c77
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl
Size 239.4 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
db92ccc4f91bb7924d02f3f61af770cc707c9108d1db6ce3d0e66d963923acf3
BLAKE2b-256 checksum
How to use checksums
bdfbf709b465ef8fe7c901f0b1f5c9d76137e00d38df463f269c9ba63d584233
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl
Size 229.6 kB
Tags CPython 3.15 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
986d35918021841260b6142caadfeb85b449486b90648162870b19807d6ce09b
BLAKE2b-256 checksum
How to use checksums
f1e684bf2b77c07197452cefed1ac68a7f9f6aa80a577d72a2c23fccbcda7756
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl
Size 248.1 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
39e8179249d84b492c9325bd9e7e8f555afcd6685afa58628c8757b29aaf8cd7
BLAKE2b-256 checksum
How to use checksums
94010d4078cfa70ed01b21da3417fbfab64ed16cf8e02e811b4e93d24eba2305
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 232.7 kB
Tags CPython 3.15 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
0149bc84d18f081dda6c2ba72949bd79f1fdb377d49019904eac645a4b55858b
BLAKE2b-256 checksum
How to use checksums
9c873c35a0949e59a6112948a68ffa6ba7fe1a7468c3e73d17363e5bf1bc9d4f
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 250.8 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
dc914524ff0c7fbb3ca8105f81071ec0536fef5eca82c6e1c1f2279873057df8
BLAKE2b-256 checksum
How to use checksums
ee151b911c2d56418f9e0de617cd2b6df748921403e674307781ffc6bb1c92c3
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 251.8 kB
Tags CPython 3.15 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f0a025f08c220083c9fbbd19179649bbe7c645f57374f56f4fb6d7f4ef17d0b1
BLAKE2b-256 checksum
How to use checksums
645c0c4c3773072969b85a8c19365156f65b36d88013ecc951fb8f3dc59fffbd
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-macosx_11_0_arm64.whl
Size 106.2 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ed5a83c46b1905a4ae082fc88c231ce2c6b55eba1ea44d3a8173bf7b1358df94
BLAKE2b-256 checksum
How to use checksums
6157daec7fe0c833bd6820a08b830254b22a9fac755e0008f171e889dd39e886
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp315-cp315-macosx_10_15_x86_64.whl

Download URL wrapt-2.5.0rc1-cp315-cp315-macosx_10_15_x86_64.whl
Size 106.2 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
d85eafab76010c2adb609627183930aece54566048fd697be1018fe0f69317b5
BLAKE2b-256 checksum
How to use checksums
691490fe41031a9d635a30faddbc80f3f58c50d98360304808686dc116954151
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-win_arm64.whl
Size 105.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
3b046387a895679efc6fea924243e88dbe4841fee832ac4f60b7d587b21f7045
BLAKE2b-256 checksum
How to use checksums
75e43f27ed2662d61132aa0d371b88b79191ead161cff324b79bb55ba58669d5
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-win_amd64.whl
Size 109.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
b2d7599922d01e9b1de2b06df1379821035aca5a2f96c6e2c48cf63d113d82e8
BLAKE2b-256 checksum
How to use checksums
93252a1da2c8b496385ebd7ba57248015aa38529a4934b2a65d6e2b0affed3c0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-win32.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-win32.whl
Size 103.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
24c3c16857f016caa0b7ea6c3dcac4f9675f563a77325599ccc767ae048469e6
BLAKE2b-256 checksum
How to use checksums
5d57ce7bbd9cbcb2fc2e7a742648129eabe26af8e0185ec89fc8617b145353b8
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 278.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4d9dcc693dc07c66463620d462a8c6e4b712d9e4c78735bf6d5398966e11d7c0
BLAKE2b-256 checksum
How to use checksums
1f8b77809fc0cfa3a85347ea76656db531c3f2630f995c4d601f85147cc2b350
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Size 260.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
32f3e40642bdcbd2df5d7ab13a4670ddc11cf0d2b81475076b3c84f23b2d5483
BLAKE2b-256 checksum
How to use checksums
614b342c66ca20bb3dcd8443b187ddfde1fc27b6362f86d0a046d7207f614c75
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 288.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
49b2fe66d7ecee02c95c22d43f58f04e6c7e20ebae8d487c0e168737ffa832a6
BLAKE2b-256 checksum
How to use checksums
ab83cb265e4fe694e3034ec9a6e177a19d442e3bbd0f0d82f38550e4b58e0dee
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 262.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
151d41240deae2400d34ecc059ffb88098be36112d2bd4c366829b9efee17b25
BLAKE2b-256 checksum
How to use checksums
3763068b95a779591a753b51ebb0cf6da5b09ab25ef6fd3f0db72d9566502aa0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 293.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0cbcfe742b4b76833885a784777406615122c34fa998f3897a248c8fc83a69b3
BLAKE2b-256 checksum
How to use checksums
ed6c7f563f5ccc9a82193b0ab0f5a5e326997f68cbbe4c6e241e81a6ce39dc1a
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 283.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
51783caeaa2b539136be2cdc192ac188a0967d30065501e3710c3a6206342a3e
BLAKE2b-256 checksum
How to use checksums
86386f51566b08d626f770e11545778015d7e605ff91a3f64f9bbf5c54d22f96
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Size 109.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7801b996f0e8904f8be22d07c483ee8dd95ad68b8f3e3e9c96d7b742e6798c90
BLAKE2b-256 checksum
How to use checksums
d144fa8dc25ab83afa3ce154b3f947a54a810a185a7da728663b51620c0f5c70
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 109.3 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
332332bcf12346b08d202798b5407463c27a48d9b691a2a8ba26d2b902bd4ed3
BLAKE2b-256 checksum
How to use checksums
e2ca3e0d2d85f3c684c36cb874b62ef12f1ee63841a1d4c6975ac9123a3996f4
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-win_arm64.whl
Size 103.2 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
13cdc9947f592eb6fb854223d9f4ce3f30801c1eb9a31d7bfe4278d6351d13b1
BLAKE2b-256 checksum
How to use checksums
60bc72590aa6e899f75ce574eee96ee75118471237843718e4a611c809f032e0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-win_amd64.whl
Size 106.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
e3498de9ab2cd5bd02a7d185e0f753ea6bca88d2edefe070828415747f0d0a8b
BLAKE2b-256 checksum
How to use checksums
6cd348323e446b3ca02759f862f6315143eb122b282ba80697a11af4200eb67e
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-win32.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-win32.whl
Size 100.7 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
b6bf5ead8510a17b4542e699446515e1b182f4d611568b61ef78f6c5463c181c
BLAKE2b-256 checksum
How to use checksums
22d29277995e17e1fa227c25112fb9681027936553378489c194547f3c51d319
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 238.9 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3ac1efd9ce54f6e2a1701a9fd1b40d724abc31b21ff4c8d88eaa09e5df4f8046
BLAKE2b-256 checksum
How to use checksums
7d27cf7f6e16a323c9a94549c3d72f93ae7e572ca38ced81adaff5b2fda9a248
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Size 228.6 kB
Tags CPython 3.14 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
3a6a22faf55f3853ed70b5237902bb4d26c0210a426bb50d1c4663bac7ed6436
BLAKE2b-256 checksum
How to use checksums
a0d48078ae5e0a6d4ffe6923c1b467d4bd63a799db9195c1a93cd007f23f5aed
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 247.8 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0beebe1ff7be4ee8d1731df137473b58e1843661eb3cd5291489f21ba0c66e3d
BLAKE2b-256 checksum
How to use checksums
8fee8f053c33af10b8a43925c5ff26f069e187063c7ebf69a632c213cdf44280
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 231.4 kB
Tags CPython 3.14 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
dc3d644673f4bf45c4f4912a378e134a24365b0129584f3a682531a89e3b18d6
BLAKE2b-256 checksum
How to use checksums
9c3b843ed376dd4ddd420c17b85ce79eb055ce5486097e8c9589ff6f0377d3f6
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 250.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
08aa4ec1e6630f53f8d41e57c10576c2164f2dc5384163535435137ccfa82ec3
BLAKE2b-256 checksum
How to use checksums
d545f974d03a459574f0a8371e780a55639ca315a06d4bd033939f2dc8fa5623
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 251.3 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
5d3dd034d472b606fc9530b0b789abc8ba56dc93869bc6a670489fab2a560c5b
BLAKE2b-256 checksum
How to use checksums
fa7bee303d229b1a24f1ee9b826227b3e0394debc95d928ddfc0e26bcdb9cf12
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Size 106.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0d83b329041aa9132bfe378649c638fb42adc83468ae336eb2e3c5ae22dcd205
BLAKE2b-256 checksum
How to use checksums
8b80376308d7cef300b255b159de3d9bed3ed22bafcc37e5230820535c4912e2
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp314-cp314-macosx_10_15_x86_64.whl

Download URL wrapt-2.5.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Size 106.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
842ede52bc20d200dccd4e9abada39a77e06f669b45322510ae49cd6e5d36ede
BLAKE2b-256 checksum
How to use checksums
2b6b2f67dfd287b470986d3b2f85a99f82972bc52bea4d8d779e20bbe71f12e5
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-win_arm64.whl
Size 102.3 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
f267883d68a39387917c369ec40700885b1474f9dc21cbe979f86a6218880f85
BLAKE2b-256 checksum
How to use checksums
ae869a2bc0f3906f8239fc66208715e083fc78a8e1ee902de0645d964ec3a021
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-win_amd64.whl
Size 105.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ec04b3a71e7bc480dad19308e7b93caa0d37b6dd82ed869c8c184adcc353e172
BLAKE2b-256 checksum
How to use checksums
7a5af541f6a736556e5073a33fd1ee189dd0b4f2772580c4c9a486e6041b87d3
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-win32.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-win32.whl
Size 100.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
2d1d1c39ad01d25b1df5087cbd6e888470aacc255a516ff99b5d51858b88ef9b
BLAKE2b-256 checksum
How to use checksums
9f9c533ce401fce57b86b8f8f0232ff6bd1d6a6e75588215aaf111ede5a6f7c9
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 236.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
5235c015d1b249183e76315dfc0dbbd072cf20e2f44e8b46874d3f9f41994a70
BLAKE2b-256 checksum
How to use checksums
ad35c08132e3306183b9f1b9efbe8a7dae40b57b4c015571ede35775ae9ce36d
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Size 225.1 kB
Tags CPython 3.13 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
c3a05d51f57b3bf3cd153806266d50e3fa17674dca90bcbd781e17b617863a75
BLAKE2b-256 checksum
How to use checksums
325ea59b830576fb97c9793089f375a2c74e8dd5feedfed0b2abc1f606257aa9
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 244.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
579d534f290a02735e47487c3f712267d8c3eb374ccd3ed637daf9b627df8bb0
BLAKE2b-256 checksum
How to use checksums
3c19569214ff631264b4ccc95a484f994293b9304d216d095dee65b4248a3861
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 227.2 kB
Tags CPython 3.13 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
cb422ae1828daeb8035496722f580167fd7a3b2e7e61cf3d00ee62961d49e08a
BLAKE2b-256 checksum
How to use checksums
de869221dbd4fb60ae85d885e0298aeafff9d24c219949af80a9c16dcabe5f04
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 248.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fe3bd74c1b84fcda5e9a71491bdc39ddcf8e9508c3125d4557aa1f58f38859f3
BLAKE2b-256 checksum
How to use checksums
4ec580c1c394f8df62a98867bbd333c94c1abee81da8fd9e49587eeff998355d
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 248.3 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c4f7e8a2d7f75062fe0b574a9ecd682972e8814ae118bfae5f4bd28763515e9e
BLAKE2b-256 checksum
How to use checksums
9cc6e14c00c31cc5357d5017783dec026d03e453692645eaa3094435649a0dce
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Size 106.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1985b43a8c121f12cb5d31b1b8a1ce2b24ec8659f3c8bd5e5e1332bd340acc0d
BLAKE2b-256 checksum
How to use checksums
a3519736b402f6a46206f2b0c412df56039b2f7a43a46ebbc02220bff42e9376
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL wrapt-2.5.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Size 105.9 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
957b685f9b68b26e573f7141a5f50cdd443138b321272411217f8082578a14bc
BLAKE2b-256 checksum
How to use checksums
1996f949b6e93d280b21e0129d951990c2597dbf41e46e97f207aefed3e73ab1
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-win_arm64.whl
Size 102.4 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
990c0cac4e1d35c0566d8ba9170fd091d30b3e84232811c9f7a54296ddbcaa90
BLAKE2b-256 checksum
How to use checksums
e49a1a0ff466550181161ca05dd31412b9e223c1ae806dd2b181acd95ccb67f5
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-win_amd64.whl
Size 105.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
a9e00e93016fc4e17f921efc7eff8f6834e7c58d612655a96b42a355a4a7774f
BLAKE2b-256 checksum
How to use checksums
000a8bc1dee885d9dbc805069de134830b4afe6199affd35f26f852b9316bebc
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-win32.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-win32.whl
Size 100.3 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
7a07aa97329b1651e0b61bf14c602de40d8ca81352b85b9e117cebefa0b2300e
BLAKE2b-256 checksum
How to use checksums
c031d982ae9d7d678a4e365817b636ce451ad637cd5e6ae6b18dc17d98c92a1c
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 238.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
0d5977d5f1bb8ce11e62490389bf3b82390cb4d875dfac7315b0ea066a0e0e30
BLAKE2b-256 checksum
How to use checksums
517d7c334f0d73e04c17d19ad93f29e4eb276c75390c8a755094bc910b67f9e2
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Size 226.5 kB
Tags CPython 3.12 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
5e495e0a14b71c6592e291fcb83cce0817e3f717aef618a45bb4036fd6a665ad
BLAKE2b-256 checksum
How to use checksums
c0a4d2e9398c78c6eb1a2859e7a1b7c4b765f008300918b97f054150dad080fe
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 246.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6c10236ebe1be21f23581a60cf8d51c909ef69e30a09b9ab37cbb6accf9156f1
BLAKE2b-256 checksum
How to use checksums
593ecd4dd6fc47962ec27f54005886e91d6d790f93735a9a58de86fe0e782ccb
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 229.7 kB
Tags CPython 3.12 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
0187b8383fbff01a876cccc1b4af21442339448533d56d3fc113b5702f71099c
BLAKE2b-256 checksum
How to use checksums
83f4488ebd97ce45c993063b13260ec2079e5844acbdddaa220b0ba38702d046
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 250.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fb295b9a4d0847c0360929f3d7d849266066ec8c2f1613db65be33b9d41d072c
BLAKE2b-256 checksum
How to use checksums
98ce0927427469f08364e072f14234ce41f0a7ced369b91f91179a9426b79565
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 250.2 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6d7a734988f758ecf4c085d4bd73a6d33b8ac39e139450c82a455e15154fedb2
BLAKE2b-256 checksum
How to use checksums
1a6bde9d445267b72e75ad7d226b21ebb556849ea9fa21fcaa662fb0b5777dac
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Size 105.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9b0c8161ed9d9565cb73be6ade48c61d5fcd64be82a206f800a797df183cc4d5
BLAKE2b-256 checksum
How to use checksums
46751a0a85485c8610dcab86295905f91c835651b582dde39f887547f47f78bc
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp312-cp312-macosx_10_13_x86_64.whl

Download URL wrapt-2.5.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Size 106.2 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
a540fddbe1cd96ecbb9f61ddeea3947c49d6f1e119d98e6a0c2e905fb6de7200
BLAKE2b-256 checksum
How to use checksums
8ee7ae9736a252ea83a14f5bb03c050c19151a7127c949f6c494309fa31ebf3f
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-win_arm64.whl
Size 102.1 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
843f0a52c463b74fc824032151de6453652b25b613fbc6ffd0f8f76033b20f5e
BLAKE2b-256 checksum
How to use checksums
b6f05787607b6418de2b9014fe8281159c932c209068b1e86b33abdecfdcafea
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-win_amd64.whl
Size 105.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
683ea06efe78960d42b1a87328a41978bbcb22a8524ee15ba4192b86994991ac
BLAKE2b-256 checksum
How to use checksums
b7496eb762a1a1a54139cfbf02f965ddd0fb2e81a10575f27c68b007fcad3921
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-win32.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-win32.whl
Size 100.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
965b9b41aa99b05c9db8f72fc93b89ef4b59189154971860cdd3500234c40236
BLAKE2b-256 checksum
How to use checksums
51c0bd667396c6eb3f2f4ed6d9ef397c59f5abd177d1d53bfcd17d6ee6436e6c
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 229.2 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d1eb72872e1a9c8d242b74acb983e35807096a405487d24679c7d8b228c7b282
BLAKE2b-256 checksum
How to use checksums
daa098c3a21b4344ec824fac02cd27b06e3d7d2107e0c09dd92b92e0a7bfb8cf
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Size 223.7 kB
Tags CPython 3.11 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
0896b63cb0c6af7cddd10b0091b5077dae5351be8ef91fa3484dfcf280cc9563
BLAKE2b-256 checksum
How to use checksums
569ebfd5a507f0825f412e63cdf7dfcb7715217551f962c9a3471763fa93d3dc
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 239.1 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0fb502cd4d992fc32f9007aab98d452033b4306dce5c18d30e700303deab28cd
BLAKE2b-256 checksum
How to use checksums
ecf9af3877c93cd6cecbb2d8ec78a146d2d298a594d89b3e8b98e595874e5ab0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 226.4 kB
Tags CPython 3.11 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
e9df0dd570ae874b4ce85333c4e1acbd0c33bcd6183ced7eab6a47791f24fea0
BLAKE2b-256 checksum
How to use checksums
2e3406dfe3e5ca4e2b4bf01450395be6ddc961e13b974214e83cf7fbf4281090
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 241.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0c2d4728923d0466d0831fa5f561c6b11a67e84c3d01650b082a6fdc4d7e42d3
BLAKE2b-256 checksum
How to use checksums
b8e08e45d3945ea07480f4e7cdba8d674a7c42abc285fc8b5340820fe8b9ee1b
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 239.9 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b669f60466826d51efd2eac194bd0b4a1e349f48ae362af67927ba879bc9a6ba
BLAKE2b-256 checksum
How to use checksums
e4f4a87315bfab638a9495cf0a581f24f95964fc4d29d099d3b0f43f53bae518
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Size 105.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ee9d1849d0fe5fea7d4536a315c0dfe94fe2f2c5c189c2fdf9c2599370203c05
BLAKE2b-256 checksum
How to use checksums
e145f6badd23f43fe6c9b6139071b0d9ea276ead1cca31bcbbdb1dc9ba8c3a7f
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL wrapt-2.5.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Size 105.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c3fa8cd7fa38d7226c487ec25597a2859cdcc4fcbbed17b6dec5f7dd110f2e77
BLAKE2b-256 checksum
How to use checksums
81a69836f47ade16535a21be3c6134bbd83df579a9be9993ec40f48a42a839a7
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-win_arm64.whl
Size 102.2 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
6f6bd536268c2dcd455693b574ae2a7221499a39056b89c28545afb739dea8ec
BLAKE2b-256 checksum
How to use checksums
b639f5ae9a6f14fa34ac70939c50f990eeb77c1e99b419bfdd820b9e63153e95
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-win_amd64.whl
Size 105.4 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
be91d5ef7758d81d180398a32abb22278de8ae79f299ff84f6b1a51b7c3fa3f0
BLAKE2b-256 checksum
How to use checksums
12af96bd96296925a8f60b9aeee01d4c59a493bf49df199fb1d90b9e7f490cdc
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-win32.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-win32.whl
Size 100.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
d9ec1b2ca78573b6cb888729f1d201a6bc24cdf613298c87e04ec43d11254b7f
BLAKE2b-256 checksum
How to use checksums
e3ea33ac375541fde1d1dc7c99886c04c5e171af123ee36a2f82079abc4f36a8
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 220.6 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7e09a22293e6c0899e14ee50eed98165313de1f1c5c4a050f80dff03a1a22e32
BLAKE2b-256 checksum
How to use checksums
268b0002e08529377e27c4338b73cddeec59bb3a46171a010ab3112701da061b
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Size 218.5 kB
Tags CPython 3.10 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
8e2385d1b0914ac3f8ea72d31fdf67bdb4ddeab45624c2c3a9d8ab81327f2104
BLAKE2b-256 checksum
How to use checksums
f7b1479680da7ff5146b79107ce360c65d85494d99f20bd3cbade67d5c2f41de
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 230.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4adb4b3c8dcd97216fc39c8a7f199fa6b70de55d08f4f5605089f438db10283e
BLAKE2b-256 checksum
How to use checksums
82df30dee3ae9ed93212bf129de3f5ffb336485e97ecaffe3ecec2f056fed7af
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 221.2 kB
Tags CPython 3.10 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
45b84534fedea92e3894020baeaa58338a186ea1b812e20a273f58be77883989
BLAKE2b-256 checksum
How to use checksums
8b960208335adcb166651542f882d91440b13dd3a9304a6c3be2d25aabbff8f7
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 232.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
cc470b9800bbf10eed32ee813eb3c55138de3f02f779c30cb609d68778ea099e
BLAKE2b-256 checksum
How to use checksums
009dc01025efcf5f6223def619009ba673c064742ffd8dfbf593e678cedea0e8
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 231.1 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d075c8363218d8a05fbab3d8bf7cbab669f98f3f40959749fafba1791e9653f3
BLAKE2b-256 checksum
How to use checksums
5550b2eea44387e71fd0c84d3493652b8a2957922d1bfc51fa63443c8e2ff9d7
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Size 105.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d97ccebc51a9832361bbb078ffa899392c337e5ee38d1b25cc2c2698da097446
BLAKE2b-256 checksum
How to use checksums
797fb09e56c3e608521df2d4aa8cd136c7dc273fbaf5bfecb71c9526262ce127
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL wrapt-2.5.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Size 105.0 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c567f432abdafb87c4d9494eab514e6856f516e1cf083ec04a702b97c8533030
BLAKE2b-256 checksum
How to use checksums
2a5507d9fe65fea8a7829e6074f1d53e261854666393a7a727fc9293c5516572
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-win_arm64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-win_arm64.whl
Size 102.2 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
76705956ff93875305ea8b86fd1e5ed2d21db68580fa8529d8da6d9d2271c18b
BLAKE2b-256 checksum
How to use checksums
8ccef7f78c36079d864948c4190be8cc7a1d2783d5002b584340d6430ebd8283
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-win_amd64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-win_amd64.whl
Size 105.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
ca0b5d51d1f9e88f59c117f55ec44fc17e745efc60bcc2fc88dac05438bc0025
BLAKE2b-256 checksum
How to use checksums
234b1fe88975183249746e72d9bb2b83b8fa45c2720f8be80607a967b1b58f51
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-win32.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-win32.whl
Size 100.3 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
2d53751b162d7fee69c805db98c792046faeecfdd573c6f90c6d35942f66b1ec
BLAKE2b-256 checksum
How to use checksums
0bdb1ce8a63c577557763c91aa332dad942375c6fa695960de3ca6bf3e0b82b0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 220.5 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
addc1dbec24b88d34fa50b19d3a8a58f83cf3db18b8bc29f4b8553c2b32d3530
BLAKE2b-256 checksum
How to use checksums
ca4128ece9855cb10ee764514b32a0dfe03be164ef2ce204f9d026244edffa8b
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Size 218.4 kB
Tags CPython 3.9 Linux musl 1.2+ RISC-V 64
SHA-256 checksum
How to use checksums
67290ada47b416247f3eea8be39e3723bed43c62188ce600b21237f826867d2f
BLAKE2b-256 checksum
How to use checksums
c318d160ecd606c3517aa04a3193c8a473fb5095be64f473a78d77ea95c7c9fe
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 230.5 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
b4e7d3036157cdaaa3c5fe6a6f50e32a056d29a8c48770c187aa4f08a3870cd3
BLAKE2b-256 checksum
How to use checksums
fe9fd09eb582dad00e202fc7d363f2abf311ee2d03e580d87fad54812649856d
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Size 220.8 kB
Tags CPython 3.9 Linux glibc 2.31+ RISC-V 64 Linux glibc 2.39+ RISC-V 64
SHA-256 checksum
How to use checksums
c071890387fb2b56f83f7ab43567665dad031d21449598d93763e8682b5ae1a1
BLAKE2b-256 checksum
How to use checksums
975fa84d1030085669184514746b40aac5b16d392e092c8f3df606c5f17768c0
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 232.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
75fbcb177bac736773be2ce5f492b392726fa15574c26847ff8cf2e9f979b852
BLAKE2b-256 checksum
How to use checksums
f99ac79f6d8a4ca72da135bb449c105dfb15a5d496da6b861e3df162630f1c19
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 231.0 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7330a697dba2cfd876c65c32f22b1707de50d681e9ce2b91dd23a856b28aabc0
BLAKE2b-256 checksum
How to use checksums
0c8e8f77c16c56dd9a5f90b9b78f5a620e94ae141cbfaf5057c45c9b05aa5a4a
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-macosx_11_0_arm64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Size 105.5 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4ce72b47e30f98cd1d7cc8208a85de2c30ddbaf10194015a576158fda44d08b8
BLAKE2b-256 checksum
How to use checksums
06feed567572a511fbbad68c390d31b3e22e6911c25843a4720d502ef520d0ca
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 24, 2026.

Transparency log

Release files / wrapt-2.5.0rc1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL wrapt-2.5.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Size 105.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
82b2ea275b1887daf96aa2e46be20d0d1a0c7f03a860846d8428093015a93f54
BLAKE2b-256 checksum
How to use checksums
1bf61435c65e439b03bf5b8048a86e39a940937f500f9a8a666f56355fa2ec52
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 24, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.5.0rc1 This release

101 release files

2.3.0

90 release files

2.2.2

90 release files

2.2.1

90 release files

2.2.0

90 release files

2.1.0

74 release files

1.12.1

1 release file

1.12.0

1 release file

1.11.2

1 release file

1.11.1

1 release file

1.11.0

1 release file

1.10.11

1 release file

1.10.10

1 release file

1.10.9

1 release file

1.10.8

1 release file

1.10.7

1 release file

1.10.6

1 release file

1.10.5

1 release file

1.10.4

1 release file

1.10.3

1.10.2

1 release file

1.10.1

1 release file

1.10.0

1 release file

1.9.0

1 release file

1.8.0

1 release file

1.7.0

1 release file

1.6.0

1 release file

1.5.1

1 release file

1.5.0

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.4.0

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.4

1 release file

1.1.3

1 release file

1.1.2

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.0

1 release file

0.0.0

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