Skip to main content
Pre-release

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

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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wrapt-2.4.0rc5.tar.gz (161.2 kB view details)

Uploaded Source

Built Distributions

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

wrapt-2.4.0rc5-py3-none-any.whl (73.8 kB view details)

Uploaded Python 3

wrapt-2.4.0rc5-cp315-cp315t-win_arm64.whl (96.1 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0rc5-cp315-cp315t-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0rc5-cp315-cp315t-win32.whl (93.8 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_x86_64.whl (264.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_riscv64.whl (248.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_aarch64.whl (275.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (250.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (281.5 kB view details)

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

wrapt-2.4.0rc5-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (269.5 kB view details)

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

wrapt-2.4.0rc5-cp315-cp315t-macosx_11_0_arm64.whl (100.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0rc5-cp315-cp315t-macosx_10_15_x86_64.whl (99.7 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0rc5-cp315-cp315-win_arm64.whl (93.7 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.0rc5-cp315-cp315-win_amd64.whl (96.5 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.0rc5-cp315-cp315-win32.whl (91.6 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_x86_64.whl (217.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_riscv64.whl (210.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_aarch64.whl (227.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (212.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.5 kB view details)

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

wrapt-2.4.0rc5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (229.3 kB view details)

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

wrapt-2.4.0rc5-cp315-cp315-macosx_11_0_arm64.whl (96.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp315-cp315-macosx_10_15_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.0rc5-cp314-cp314t-win_arm64.whl (96.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0rc5-cp314-cp314t-win_amd64.whl (99.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0rc5-cp314-cp314t-win32.whl (93.8 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_riscv64.whl (247.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (249.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (281.1 kB view details)

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

wrapt-2.4.0rc5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (269.4 kB view details)

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

wrapt-2.4.0rc5-cp314-cp314t-macosx_11_0_arm64.whl (100.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0rc5-cp314-cp314t-macosx_10_15_x86_64.whl (99.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0rc5-cp314-cp314-win_arm64.whl (93.7 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0rc5-cp314-cp314-win_amd64.whl (96.5 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0rc5-cp314-cp314-win32.whl (91.6 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_x86_64.whl (216.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_riscv64.whl (208.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_aarch64.whl (226.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (210.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.1 kB view details)

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

wrapt-2.4.0rc5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.8 kB view details)

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

wrapt-2.4.0rc5-cp314-cp314-macosx_11_0_arm64.whl (96.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp314-cp314-macosx_10_15_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0rc5-cp313-cp313-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0rc5-cp313-cp313-win_amd64.whl (96.2 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0rc5-cp313-cp313-win32.whl (91.2 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_riscv64.whl (205.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_aarch64.whl (223.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (206.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.7 kB view details)

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

wrapt-2.4.0rc5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (225.8 kB view details)

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

wrapt-2.4.0rc5-cp313-cp313-macosx_11_0_arm64.whl (96.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp313-cp313-macosx_10_13_x86_64.whl (96.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0rc5-cp312-cp312-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0rc5-cp312-cp312-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0rc5-cp312-cp312-win32.whl (91.2 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_x86_64.whl (216.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_riscv64.whl (207.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_aarch64.whl (225.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (209.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.1 kB view details)

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

wrapt-2.4.0rc5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (227.9 kB view details)

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

wrapt-2.4.0rc5-cp312-cp312-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp312-cp312-macosx_10_13_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0rc5-cp311-cp311-win_arm64.whl (92.9 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0rc5-cp311-cp311-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0rc5-cp311-cp311-win32.whl (91.3 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_x86_64.whl (207.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_riscv64.whl (203.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_aarch64.whl (217.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (205.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.9 kB view details)

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

wrapt-2.4.0rc5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (217.8 kB view details)

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

wrapt-2.4.0rc5-cp311-cp311-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp311-cp311-macosx_10_9_x86_64.whl (95.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0rc5-cp310-cp310-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0rc5-cp310-cp310-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0rc5-cp310-cp310-win32.whl (91.2 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_x86_64.whl (199.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_riscv64.whl (199.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_aarch64.whl (210.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.3 kB view details)

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

wrapt-2.4.0rc5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.6 kB view details)

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

wrapt-2.4.0rc5-cp310-cp310-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp310-cp310-macosx_10_9_x86_64.whl (95.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0rc5-cp39-cp39-win_arm64.whl (93.0 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0rc5-cp39-cp39-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0rc5-cp39-cp39-win32.whl (91.3 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_x86_64.whl (199.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_riscv64.whl (199.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_aarch64.whl (210.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

wrapt-2.4.0rc5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

wrapt-2.4.0rc5-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

wrapt-2.4.0rc5-cp39-cp39-macosx_11_0_arm64.whl (95.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0rc5-cp39-cp39-macosx_10_9_x86_64.whl (95.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.4.0rc5.tar.gz.

File metadata

  • Download URL: wrapt-2.4.0rc5.tar.gz
  • Upload date:
  • Size: 161.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5.tar.gz
Algorithm Hash digest
SHA256 aa7bafea8021862a3ead8103c3162af977c491a010e944f9930437af4022396f
MD5 5d1aad50071d06a9ba8bc435e4d4fce7
BLAKE2b-256 526358a7c74181c64ac3470ccdec3b65d400aed4f3e5bddb8da516622e68843a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5.tar.gz:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-py3-none-any.whl
  • Upload date:
  • Size: 73.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-py3-none-any.whl
Algorithm Hash digest
SHA256 e93a8532c2f27ca3b023caa530f1cdd2fa37fdf68c9bea78cda24f0ca54f243f
MD5 ff05b6f34f88ed7e5ef1d83da93f95af
BLAKE2b-256 550ee24b599515e8057cb8de825b55e1a56cebc696b547b76a984bc47017092b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-py3-none-any.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 3ed1760d1cdfc270fd433e52ad7fee491e1590bf2d671f02e06778f7cf4f8a5e
MD5 e0c42607e9a8d9cc3dd3204ffa615e9a
BLAKE2b-256 00be3bc0fca3ace1316ef0b85f8071ebad3225592c7014beabb6f1175a16874c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 99.9 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ec32779f268691e4f61ffa8e23ff9ea82933c806613f48f6b5a13daa5c94de0c
MD5 bd09f4d758aa47066e01b5aa0d496a9f
BLAKE2b-256 d548107365e473f3632536331a0173bf2cc0fa9e5a2a6e5bd7153047f8b32dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 c5edb7c4470f7b0b299c29ef339b5f1cee37a6ac0e35c2c20d956de407604567
MD5 237e44dcabb2bcfb8061e33d5ef22099
BLAKE2b-256 c8db43a58546f06877578d6cf8dce0c76f2a4a9b916192b594f0d9e3bfc6097f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84a07b39b4429df0d7f565d5ee92015e84db7905c5c3e2a1e74af24c150e4949
MD5 894621c1b93b20e9f63883156517c27f
BLAKE2b-256 6f2b80448b5dcc7feb012a915379e72a56460609e72bbdd45764ece18d63b4e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f5358d587f405e3f0ba767acb58e5227a95d0b1edc17f5336921d0b6f9664e2
MD5 5870d026b8d9b76e63787d88e828cd22
BLAKE2b-256 0954d1377c9f3f8373b2abfa2f71ebd9619e331d9d66c32dfe943268325b550e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdc0660558a55caac27cfa4c9a406c0410ff60ff922b5565ed8905005d05aab2
MD5 1b1be9faa68c60354d5cd25fb249148b
BLAKE2b-256 164c6bad932d5bc516e1bfef88a2ccf8cff3c5293c8bb8eab5a8eb38ea270adf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c795ca79269a3322fa771df388430488f10435a1d5c8fc0b20ac03fa2d5255d3
MD5 5aad6c6b4170b09ce059062c8fa63eed
BLAKE2b-256 6bb525fa3e55c202c5a00893ce394e97800de892678ed4ac7afc5192a987e822

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 299d4197de7a9f19e3252715b8fa668198a99c6e1bf01bd02b69f1e2bde89fd0
MD5 18510cc2b4206326f5f9c09084d4e91f
BLAKE2b-256 f48403bee95a395759b1ce3afacb3526fa262a6ed55ff37abd2cc20c17beb261

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a1aa15589d71514a24a026aeebd22697d66d4b9ddf462b15b8b1918f6d902dd0
MD5 be7b70898cc55640cd89bb4e5ea3abb3
BLAKE2b-256 18a4b4a59cb31c74bf91a19eb1450ff4d198df4e51b8406598d1b81e6b8aac66

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f4077ec3b3af1b7ee35a341aca24bda2bae7f475b39a8ee922155f8574e1eb8
MD5 4b19709d85868d7324536e3ba3682d1f
BLAKE2b-256 d606f73ccdada07c24f91a85b1f15b605b7190202fec9bb28ae65da8f4f8a40b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 006840484a12b92c005f05d469d66617cf6c994e029f8e821c7bfd3d664bde80
MD5 15d8e8228c3f775ba568f64890598a36
BLAKE2b-256 6784440165c59e3c7e48f278a65369897b22658aac2f0040b37c80bed0557346

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 93.7 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 01d8cb1a02d42cf622b2c3a2043d83fbc2b70e8dbe22458111591c63c4d298e5
MD5 508b48101731b37dd7a38abb69393391
BLAKE2b-256 f7aafbb4e1e67fd0c7b2be6a6aea8dc047969f517933d75eb881f90d0ab20b78

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 5db27aaec2e9f543f4b6cc57611820eb74677ac7fd22fc745b8156ed3030aa1d
MD5 6d6d05cc6bd458f009e79a1042041cda
BLAKE2b-256 3fa71018799684207163f2fdd1aeea099d23072f4d7a0bc2f9cfded76748ee1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp315-cp315-win32.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 34ad14074926fb819543d01e6b15268023ff434c69ca1b6ce7128dcd21c50506
MD5 0cce4a727449db44a169fdc24683f00d
BLAKE2b-256 f18a6b36f65aec45a8e5a279ab48bfdd3bb2782738a2d3735377ba94edc38d4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4162c85ab51ea46626d2be2f674f2ec66c890e9e1768c2c39b37b66df0f6fa35
MD5 f907f557668a15db991e7f59ef0b9eb5
BLAKE2b-256 e79ba2182a8b7fc9d531c939988b2b411acdeeec0674a5ebbea5814947c28fc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ce699919f1b1522a323ec77d53ebedd244e35fd53935106b93aa755a4e92008b
MD5 eb50503b91326d2a3f8cd39894349058
BLAKE2b-256 4f2cd16b953767d364ff696cfdad62d281c87fae7e8dca58444ad4c3478bca57

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fca6209a185e6da258ba72bd0ab670b488c5639c60b62fdd5546b3fd246130e
MD5 988103a33c9c116eef8a6edf3cde6fc1
BLAKE2b-256 ebc851a1518abced1d10692e35c5b04909c9ed1a7603466929580a437f28405c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 812d8fcad4055d860bd33a7dc177ba284d4d92588ac9f781a98271a515facf0c
MD5 6c9a00af99ba3230f503ffc05f0db4cc
BLAKE2b-256 fa5d9ff2dabd5f8127a5d6919038512f6cc315016b8edf063847486ac7b43342

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aaa370ea6fe0a683dd9647a21d21706e5ae81403f60bd60e79ba1b1167f0e6f5
MD5 0bc6e8af6be005406d08493780fce55b
BLAKE2b-256 987be40a50d0ed29622f1658449b2d1db52fbe90676b325b15b0934915911ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ec0de56b249da83dffd98339415fd6da8836c9eb595b9e7460e8cfd495ec0e96
MD5 ed7eb3ab8cf486b5ea4097df753134ca
BLAKE2b-256 b2534ac93dde61c9f5ee17c3fe5a8380f68337d8c4e42dddd043f24663cf3f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4bd6a235f399a2be69eabc0156c568ecb039fe0a59b18afd380993676338957
MD5 fdff92cd672ca3cc9aca4b1c2bac6b57
BLAKE2b-256 036e5045285aecf77617d6b9b7e78303f89323165d23e8694ec2c662a2cf4c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 73d3a0679b7eec4ec25603c9dfe18a41477fcaaf88182aef47b45cdb16073c0f
MD5 c7793ef8f889c00d9344e1cb08b01a29
BLAKE2b-256 fac627b7bad3e0d05cfa14758cb0161aa5d73e7b83dd8b55ed8dd3b7e85ae71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f254929ef195d4e30fbff6a7f19b8bab65c4ceb97793663cd6d0ba634701bbe8
MD5 c6c9a98a5403a82ef12614ba1f00a9e0
BLAKE2b-256 ab1220cc6c0cf90b61ef30a3e1bb1ae35fd11c53bafa8271e07183dbb6dc58be

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 99.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9f3bcb3221b0525b7c02143e5b66a9997c2205236a38efdf2c7886e3634e2956
MD5 3459ec27080929393a561c3ce4ef0179
BLAKE2b-256 48b4c97d818931a786859585a10f0f968d59b503091f2209e2b1f68af46e12e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 93.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dff7002dd4b120753d98c6e1ca9fc9ce05fd2a854773fae5215aac4eed202202
MD5 a7520e4829e862cd4485de36661489be
BLAKE2b-256 c5933e7ddc662beed2f8cf8e80f4aa678bacec2cac6f3229fee92dcbda26c02e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0610c5ffe8f72d7b632701ef830647a492c33f9359c41aa7ac081c1e82ffa8b
MD5 6e8747a9fbb427234277fde4440d0731
BLAKE2b-256 63bc5a3ce966d1303c7e22a36a43fdff507886963755d259328fb9e42fca61ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5d0a745c89cca91893a292f5427b1f276ee8000f234486e521ad47ac1848559f
MD5 acbd3338d1dbf9e93850588a5eace956
BLAKE2b-256 0ac124773760cd788de272ec6eac99fc13439aa8c1d8ded8e192903f7d287039

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e459509f85c471dc42d8dbf557aa511a6db468298e1aeccef708be89fd8ebace
MD5 1c06cf50f202f60b16dc8b69df75c260
BLAKE2b-256 ddfe3f920a8ea698ae2da4d054e768642bcc7c5c763c4c18bf0e4e17e870b72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d7764df2cb0f865192243508388b4a39b75628007c5e1a58b759c73b3a6095ab
MD5 ca94a8fee7993e7ac6392ee232b581e0
BLAKE2b-256 0ce899595ab5c96abb67f4555aeedb3a69622a19dcd1da4c80911e1ed3beafb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0632de4c66165c53a9b0520806c5d69f2a65b44074508b07fe5faa0dff9403da
MD5 50207df4326317bacd80df3cf340a8cf
BLAKE2b-256 af8944da8e509974007a8fd3587a97780191c0b8b24d85eafbd37b6069d9a098

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6353f32f526c10ffa88975e81d47dc38882ac84183557119b9388cad525aa1cb
MD5 98a3b684aa180cdc5241163aa22eb991
BLAKE2b-256 3a0c3342ff4a42b4675741f3c6eedc5eee762b89c7234957202deb5bb7424e55

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cde18c7c33d1a67ca3eaf9c5716ace5670a13e6e132932c1cfbbadc8aac1a3a6
MD5 0ece0953b90ba0c4a75fa25af942c233
BLAKE2b-256 39d8e5e4478272754cd833038491be6abb89fa0b40cc8fa75035a3e70708cd3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f5958a72dab97c9cb1fa221b56fcd3c58dd9b5b7975720dd519aa0b13045abb2
MD5 0ed12951344408c5f5de767013ff8f31
BLAKE2b-256 8cf78123397556828959a7006b3433fc338aca076595733b637de946ee84ed13

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 93.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 be4bd78d3bb4088a374b13d3a7167d4d15c47953a2894609587e2fde7e56a0f5
MD5 e640a6c96cc27cc28f394a41d410611c
BLAKE2b-256 374897908234a7ec7afd1f7ed0269254e068275fd914c7206c9b3197e91d4268

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3857257b5b01b9bf8e28812d16cdbc86204451e9b9f8c6a0032be169287e0fce
MD5 e1f020803e6153154b907152a27f172c
BLAKE2b-256 876339900b1bcd1b91188cfc89eea95ab365b251cfa16a5c1b8d3088ba92e710

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 91.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f15a95e4204323c2cf65680b47a7cd02eaa1c24b8f11ab62fde45fb5d6a6e0df
MD5 87b0b9bff7c1e3101daef7e47cedc4cf
BLAKE2b-256 31d58d7a6d25bd049d06993d6fda5a62d64c48b0b5f417fdcba1061edc27ac7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00e67a3a215ae2a8390df025345b490663a8cc2d7f003f33ba0d4a3763f58590
MD5 827dbc02b8e6301bd209a39388b2093e
BLAKE2b-256 f109393b113a74d4fb25f5697828628eb21f8edb11078730243127ffdd4c765b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3334639f32722a2cbc710d255b453820591b51affe0a2755c793c8a2ca51ad46
MD5 6ae7d452963803e4c91b3ed5ac1ad62d
BLAKE2b-256 35b969ae82a7e039ef8e381fb1d4a236a4437728cf178e88e1f0059c6aec962e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35871c36bb75796cdde7c35d01596eb36079463b84e993a66643e5cf4277298c
MD5 acc32f684762abbfc143dc98194d0e92
BLAKE2b-256 dcde5980191dbf2a1a7eaf7980c4cdf9ccc66eb58ce11b00e4f631be3abc9a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 62d74302b05a14afa042fb6e71f423eecfec1df3bea93cd82a0686b13d909d00
MD5 7911f780a4ecb06f953caf82e57d84e8
BLAKE2b-256 b281e03406c995edc51ce38a5e92f17f7b2e5c3aa46a291cba5918a178244d12

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca9d379e0fcd7c46be4cfc12142bbe0f4d4ab51b1c0842e8604296a1ac6b981e
MD5 692197687de7b9688f9cfffc3f3d06a2
BLAKE2b-256 c78a2a0c16fce7bf2a01b5e8f93499f14ff3013d37a1a0424a8020a62b190578

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c2107415429e190e9b63274d9abb72cb0f48c387a07c55728a461bafe8b2f32c
MD5 af77108de1297851d4ea69b54883cd30
BLAKE2b-256 ce69410ab20944bf050e52a6d6055f753e8a1e5f257f016e2b097e383de3b802

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fb7479c8db8ad883c4dd33cf5327157687dce6ab88ab3572f36d27f9d22fc27
MD5 4f0b61268429830a43ad819b726676bf
BLAKE2b-256 1c9ebba39b9b18e1f57e66641b29f2d224def95ead0d92d7ebbf19428f2c983c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e5e3577e7acc8d89cac84df930fcfc473d61b6873cba29ad7a28958b907e2253
MD5 9f88011374f069b369b09ee9d4a74b1a
BLAKE2b-256 4f20cb6d42d613525decda39e911fad663e45ae40489a4e096d0e36c2e62c6c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 467875d3f05e7bb6e073e5bf26cdf172fff23ef2093a8c4c1ebc2d01845d589a
MD5 625b58207bd2e983d88b6153ddf212ae
BLAKE2b-256 3e73e3eb4121c511f90c6d80617aa0d9a8c82d686a8de7bbea7bd55f56d8800e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e0c402fdfc2981512c6d6851df48960ba49f0e90e9ea8b69a0687968dd3a493
MD5 a2c420454214687afc1602141f5826e6
BLAKE2b-256 9ec4286c72a2f77055681281b8ed9c87a8b2c32dda0295ec12b10d5cdf5021d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3729183a2a5cdd3288e2be32dbb2702ed9edb9f8cf352e0928611ab183b63a46
MD5 0fc9e6833df5d448b60daf0e047405b9
BLAKE2b-256 dc7a140f09d5e7f2a826265dc24c2e1c873b2f7afd3819568ed47759f54fcf66

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffad8ae4ff590023ccd3ddefa04fc3ed922598b32832b4db48045e77cb3e1a35
MD5 35118a340b08438e972b2409bb162ef7
BLAKE2b-256 f9efdb645fc0c6d0896ea7df68d3b5401492a1abe5741f2e74845fc341db349f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 279305eabf8250e118713eb2d28db0d92c47ca92b5ef62312c76d631fe0ce6b6
MD5 9f2d488942baa9b7f75f7c7bf4be6678
BLAKE2b-256 ebb7693a5298a98929e7f28f7f61a7e50c2a2321689da43c4a348d7e24e745c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1701da43cd586e1bc46266829662d7695359643325d7410f2341006cd4916dd
MD5 0df94e4575795a971e73960f8dc9865b
BLAKE2b-256 2f1e010cfc4b36d6f1dd679d1782eb164966215382952c24a83cbc4f3507a7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 78de8fb736a3f38b8c205bbc2e7f66349f2d75d52eb73f7a1bdb3ff5a7e0de1c
MD5 5ab8192646f8cde76bab82b9a11898e3
BLAKE2b-256 16d8d25aee79d8db8c9b50e38c9f546bdcbea64d496d5100c0595419b72804de

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3a207633177da227c20314c57caeeaaad6951eb35eda5533a278bd606dc5996
MD5 44884be1c212328b06f51a07a80e53d4
BLAKE2b-256 1be0efd6f20386725c9634f88d49cff826f35cf036866abf4dfc833bbacf0406

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 85af06b1c0d8a3359c08278595462bbcb5560918dc651b6f0ce69c36db7b91c2
MD5 e7283c01cc9a1fbcfd5f027ce83c25b4
BLAKE2b-256 b925de446f5add2623af071120f998b647d521967e9cd672b84fa35c6c5dd7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c1fe31df3c85250104bf237779cd857785bb898c1f300d987a3187db73fd784
MD5 b5dcde6dffe626afa376b72ac1ecfcc2
BLAKE2b-256 31eb6636cea9ef4dcca7cf5045f98df25ccc90250bf0cc60b1f751fe087bf364

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c6f745f8114459831f158bd7c3bced69f124fa6ff7c13e4216968f8e012cdc33
MD5 53c92405e410dc9ed47560f27d83474f
BLAKE2b-256 b842e505aaf1503787773c893c6f9aee36fe3ddf561527e0ddc169fbcafb56dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 82a9ccc95f844f4150b784b1dcaf53a7fdaec41ff816ad3bd564973e985ee44f
MD5 2f3e617d89c2a2d8baeccc7b47884689
BLAKE2b-256 1dc62cc1d2e4bf8cb9bf3fb44974018ce04747fc187a3e3238bb93139a06c03a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 96.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1c00dda1b54b9148187b349062779224445a209722f4893f0f0f77e46b14589
MD5 5d14e399193a0bf60055473f9da788c4
BLAKE2b-256 677c6c138348df9fc83bb5d205af1b075bc9f69c84cd3756ec960b8947c0faa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 03a8ed82180d5cf4b0347b0e31a13b827ede6085158a355fff45105c6a0cd97d
MD5 f754faa4a64bc08bac714691bb7045ce
BLAKE2b-256 ed03515664b81d7815e1e09ea73b1feca30ba38e7ff4cf203176310368adfeff

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5462c73f867e4474f76bae9c2cec754b6f42e1497c3edd9185c5fe79bad1335
MD5 6292812b914c4de79d99577223713b75
BLAKE2b-256 b285d2e0a2de7758a5fd8c685b39d9e23255b264cfec9b2ddace062975472ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d6b0ed9d25a6b7b6458d48682801de44e7a4669ceadc1e5e91535d3f7faad81
MD5 a87cb21c6be6449ed2384fef8e540f78
BLAKE2b-256 42a996352fb6228bbdce731943d015115ee49f52a83ad00a9a2d74afa8c61c45

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 955f4e28e44a5456cb87d8533467e90da4d18faae3d7203ba06af46105f1945a
MD5 64623ee1e618a19232e14df33dea6bb1
BLAKE2b-256 fecc10825774b03169bddc84a6af00206ff5e3991ec0bda07c32b1171cbb8ac8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a95256074ac02954d9030a4469a585700d5b972f3249c23fd696fa04a9defb94
MD5 fd91cd72814497808b4f53359962439a
BLAKE2b-256 c147ef4e54a35a5aa9882c77fab46528863f10613fcc481fb9f4a143923322ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2e753e8285e594ef63a4f67f7be39f917986cd3d3909b2ba2326e5297301133
MD5 3ec9e01914e8811ee3461ed82f35e91b
BLAKE2b-256 a211e13af6aae7a8fc3e15b03c3ec1206b9a16253ae88a714ed88557e119e029

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 08b56c52eda083aaa0c03fd388b390455082a0345fa6659d07d0f264b47a12ee
MD5 8af46ae685bda811dddd753284592feb
BLAKE2b-256 f7e677acaabad59b9e0d7194203740e8d4d5467cfcd23b0e8d18728c57ee85ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 055fdab1a6bc1aa40104257f7732d545e8c6cdfd334c49a356c592a98c931002
MD5 89408869921073553d73fef0e90cbd45
BLAKE2b-256 b750fbf1888fa63c2e627f7a6853c6840e764bee1fa2407f890fa5dc9d012a6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 602fbe928c04b22c1b2116ef4851319b8f755a6bb98d6cdfb283cec85e44a5b7
MD5 7931d5352f97bdc7e4458156a45dd3b5
BLAKE2b-256 b4cfb13a978b2def85e4521628a4e1435492c320f68bceec6566f29e330e1ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1a8e935146390a40f65776182fdeee11f5d870a80fb9499e11b8ebdf94c857c8
MD5 20f2c29612c858181daaef2a54c863e5
BLAKE2b-256 17c614d2ff2b68abf78de6175005a173600f479c074a987b0e28428a8121e6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7492e137ca97fb18c7b07fe95d48024f0255876d0b0b741122380b97f98666fe
MD5 598ac69a1328d4d1c9fbae3fe07a5b8e
BLAKE2b-256 fb00dd8a546815af2c786648a93fda50fec809599e85c2994d8583ce11003872

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cb7e13fe76eaf75b084dd61e3a9f5b0e9e13fa915200b6c3777af6ae9447d999
MD5 d788b334f343b89be45637f629be4300
BLAKE2b-256 9d51375a91eba41860df5b14cc99b271c29b53913becb58a0550324afcc1c54f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8be76270b58502fe7f2ddde5394669edd530df92326b98340435b77e486226f
MD5 dd553dc28a72a0aa1989a50546791421
BLAKE2b-256 9a785b4c6f472f774330c3b75278512245216bf194846f877303f97b8956d795

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 82dc2976441055db83fb96c5297508731c684489548b50e05e8b13a2f412552d
MD5 46ecaee8b590256d06de21c03163abc3
BLAKE2b-256 2d3edf112c97f19ee5976e54e8e7dc4812970aeea56cfed3119bef3cbca6dd05

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76a49b9b80f0ba2cf6283b780883c8538f6e6af550e6e76061b6f6cd2a015adf
MD5 17a88a20761aeeeb1cb69a3fbb4e382e
BLAKE2b-256 44c31e04e2fd1d811c451dc8932f0abd7125c0f647b0bc58f0be93816d550dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e1877d5539977db49f08ac0f6ae10342edbe3cf711fcd885f187df8a4edda706
MD5 9cb683bad4f2fc6591a1e1d2276804cb
BLAKE2b-256 0b342ce90d0d266d3dcbbe08b85672c1b7c51023322d8c6524228c9c52968209

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fa824ccdd34d8975f611fb7b324e002f59adafdbd6378ab30b3d25a0590d07c
MD5 eec32c41b65a3c8a363661df30503ce0
BLAKE2b-256 0091a94a991d7be472f5fc727956594002f4f5453311377b3153608383043b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7af4fdcbcfbd172ed7560b39797c44d6b5b32678edfa77f802afb6ffac9ad2da
MD5 8d34265119a6c42bbee4e9ad34a2f235
BLAKE2b-256 79e8d87cd3ec34fd2b3bec839573efe25d0367de9a70e0dbd01a51cc7341a76a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67fd2c0768a122926648bbfda5dae2b603b8068c35afc80cbb478de3ed687043
MD5 dbdac1ecab3ef553b89228b8289ce842
BLAKE2b-256 a41be137c98d24af7b4c2ef5159b42f755d8739afd419492f2ef90acad2a54e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51a66ad469631d9452ae23a11b3b0b5017a242fef8ceea8ca41702d31241c44a
MD5 83c906906fa3fd37c3e8e04aae709915
BLAKE2b-256 65e9d2034040369c735f07b57b8c15b630c5f76e49c5e097458917feb149c8ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 158fc8aa38058852702c0ec6877ddf9ce48ca83acc37e21e8679c30655e666e0
MD5 2caa734c993e1fb453fedf68d020a286
BLAKE2b-256 3363e59db68afd2400c475e317d6dce80a63fa1c65a005c0329e788436554398

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e79b34f13afe3a5863178002726617140d3161bf1e89bd341866fe9a66daf7e7
MD5 eb5c041b65d8a9a821edfc9d1a3e0d3d
BLAKE2b-256 f156b716909001923ef25865f105725e33b4572c1dd28cc9e446b7014aa09e94

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 91.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e66318aa281bde392f4d9cdc046d55c59ac9d79c03603a999b17ed6690782f6c
MD5 8d4ee06c442a9a3825474fe140bb9d26
BLAKE2b-256 334795a6c1f21c0f46e570fdcbba146a3ab3d5647184dc6c3c25735e90dfbb37

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a681477572ae4fd451e59455b503bb197af070819bec410e8fb90f8224532ee3
MD5 104f6602fe0cfe309c781059013c8ae9
BLAKE2b-256 4662f7897807c234a2ce6ffa1d7273d31428c59fc4bcca510c6d965bc083de6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 284aec7e83c1d3d0bdff6f53aff532d68c4264688dfb5d26bc2bac34ad2c0543
MD5 8244bbbdad8889aa0d63442218b56a4c
BLAKE2b-256 93e876ee50bf3bc488e067679120a990e191a01f7ce1af1627dfa4eac5d863e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a27fc82bda900787f014c82070587f810b341753b89cbc5527e39eb5c3eeff09
MD5 4960fdb1ad49f21e1f8eedb3dc88ae81
BLAKE2b-256 48ab2b8ca96bd20961fd89aaa1e7c185549209c06996ed9cc92b998a8f8a6e6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f6e02e67e9fe97dbe7962a0c34ff0cf56796ab19e6f732a63d76e3b96cd13417
MD5 5b68250eb01fd92340487df1f19b7042
BLAKE2b-256 9bb7fe39452353b7fa8a9404abe28e0ba00ebae7e2d5b74bf7a616924823e8f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dec8bbf210a5d1d8f88e20b113a3a7c0a697d529f6b0ebdd0b20ee01df3e4457
MD5 a2b6477e25423cd9c7f836ef8348915f
BLAKE2b-256 0fb39f871efb5284661400c190a378de2485f7ed1850d23c21fe3daba5003fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4dbdf207d23f57c384419d8762f87ebcf96cb1b0484687fc5edf6e038fdfaf38
MD5 0acd1010de7d0989c9a64b54aac18c34
BLAKE2b-256 8a9bd269e710453884be01c0966ea73b3f71bdb67adadf311ceae3f52ed6f14a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd127b02804c8083f9097b00e65927de1dba586deb6bf3a4f0355ed6ca6c1743
MD5 3cd3d711c22b8cb28e6e28a0262ebf3b
BLAKE2b-256 b72484f670185d6bc944f25d93e7f0fb1e5e30c5a4dda7cfa52b69a9b7c1b0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05955ea5ffcb220e178bff62974613322f7b5bcaa8e94d9f5c17880103e0e36d
MD5 1818b667e061bee5fdc92f487cdca34a
BLAKE2b-256 9f063fb437ccaa583704d7c3919e22e132dd8b9bcaee716a6e4a56a663ba6413

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 e875381ad3f92b7aa399cc33b1faaeb63e10e970f2b8c397b6b2791da359e365
MD5 2b9168c33faec39e8f5f36b3b15e0366
BLAKE2b-256 55726185f1b77acd40b7394ed9d1bcc523cbfe9e123c2a103077053b42f99bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-win_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d96b180f94c06daf5b30b1a4efeb4cc81a12c81e5f5ea9d1f695a86fd556497f
MD5 55a4fba081310e4500bd5d6de439cb4f
BLAKE2b-256 676088c316917cad182a01aee9d68105ff0bc03c87b4fdeca34f3ad655ded3c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-win_amd64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0rc5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 91.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 646e14d8ad16a18fa3dfa86bf8c8f60095806af86aa420931613bb10a5d084f6
MD5 712334d2bf0521d91179e22abcec74c5
BLAKE2b-256 d584c94fdf614375053fa6fceef1b1f272a2ccac1335c1261bc6f49ff910f4bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-win32.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9493f33d9fbe69a41909252c863a2993b7c5ba23fd0f0cc44da4e67e2ad90b4c
MD5 a214e7cf68fe2720937b2d46024b045c
BLAKE2b-256 fc02cb799754e9c745229333f18fc0d95cd955b788d1b3d0dea06314f9f79d3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bbcf676fb7c7b6e975366cf4de78214404b2f72ca32558d6ef99a490c28730f2
MD5 6dfbab77af952355327017999abd9d7c
BLAKE2b-256 e5e07669e07676844f8ca6c8e2d719cda9b766b691bb295ca20c079a35f9c392

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9179f9776ba080fa626fa6d8891a50a474f3d555d58a0e824b73f3163bafadf
MD5 106f8b2fd5cfe3a61799b3d7715b6b6a
BLAKE2b-256 1b869d1c7a2dc067daff8749f7439d4ca39014262b788d01efd78e49817e3e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4b3a01565bc980970fa38c2807028645510cd56352aa4a40f524f91d79fafa91
MD5 8265b75f291bab80112fcae5d9f21061
BLAKE2b-256 a4e28fbc575442d57c6d7c1626f16c949bce098eb71070f3219620fc419c09c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52d7169537ccdcc7f92a1d3ac7220be19b78b79877b3a118c35ae9076d01d81a
MD5 898c662cfeb1866c071ee54d12e5edee
BLAKE2b-256 1b2c0c16e60a8b183280f8239e7e6736777dc7aa0bc2e21794e39c3191c7aa19

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6cc2fdabbf88b10c3726541e0f8d14bbf473b3df6330c1e061000238011854f6
MD5 bdd69009834df72d313e6b13292a583e
BLAKE2b-256 a883d455271f6bd8b1421a7ae73ab5808fe02d26c1007348a27d2f4065d5781c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 104c58b41544eef2d4c820433233bb36151382cfc69b151598b0f314969ee251
MD5 448213be1f95dc5be4ead4101852e1b7
BLAKE2b-256 1dd0526684fe84036a6e06af6f5aee16845058d69581a443c05942cf76aeeea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

File details

Details for the file wrapt-2.4.0rc5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0rc5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd892d439a7444201aa996cee737f17a7582202cc863d54f1d4b7bdb88afcc9f
MD5 1ec09ce28463628a4bdc3646bea51b48
BLAKE2b-256 3503d0d7ab94696a4d10cb37bf45243b595d49652ddf72802ebfed7392d875e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-test-release.yml on GrahamDumpleton/wrapt

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

Release history Release notifications | RSS feed

Supported by

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