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.0.dev3.tar.gz (137.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.0.dev3-py3-none-any.whl (64.2 kB view details)

Uploaded Python 3

wrapt-2.4.0.dev3-cp315-cp315t-win_arm64.whl (86.4 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0.dev3-cp315-cp315t-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0.dev3-cp315-cp315t-win32.whl (84.2 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0.dev3-cp315-cp315t-musllinux_1_2_x86_64.whl (255.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp315-cp315t-musllinux_1_2_riscv64.whl (239.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp315-cp315t-musllinux_1_2_aarch64.whl (266.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (240.9 kB view details)

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

wrapt-2.4.0.dev3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (271.9 kB view details)

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

wrapt-2.4.0.dev3-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (259.9 kB view details)

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

wrapt-2.4.0.dev3-cp315-cp315t-macosx_11_0_arm64.whl (90.6 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp315-cp315t-macosx_10_15_x86_64.whl (90.1 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0.dev3-cp315-cp315-win_arm64.whl (84.1 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.0.dev3-cp315-cp315-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.0.dev3-cp315-cp315-win32.whl (82.0 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.0.dev3-cp315-cp315-musllinux_1_2_x86_64.whl (207.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp315-cp315-musllinux_1_2_riscv64.whl (201.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp315-cp315-musllinux_1_2_aarch64.whl (217.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (203.1 kB view details)

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

wrapt-2.4.0.dev3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.9 kB view details)

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

wrapt-2.4.0.dev3-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.7 kB view details)

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

wrapt-2.4.0.dev3-cp315-cp315-macosx_11_0_arm64.whl (87.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp315-cp315-macosx_10_15_x86_64.whl (86.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.0.dev3-cp314-cp314t-win_arm64.whl (86.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0.dev3-cp314-cp314t-win_amd64.whl (90.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0.dev3-cp314-cp314t-win32.whl (84.2 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl (255.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp314-cp314t-musllinux_1_2_riscv64.whl (237.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp314-cp314t-musllinux_1_2_aarch64.whl (265.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (240.2 kB view details)

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

wrapt-2.4.0.dev3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (271.6 kB view details)

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

wrapt-2.4.0.dev3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (259.9 kB view details)

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

wrapt-2.4.0.dev3-cp314-cp314t-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp314-cp314t-macosx_10_15_x86_64.whl (90.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0.dev3-cp314-cp314-win_arm64.whl (84.0 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0.dev3-cp314-cp314-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0.dev3-cp314-cp314-win32.whl (82.0 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0.dev3-cp314-cp314-musllinux_1_2_x86_64.whl (207.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp314-cp314-musllinux_1_2_riscv64.whl (199.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp314-cp314-musllinux_1_2_aarch64.whl (217.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.0 kB view details)

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

wrapt-2.4.0.dev3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.5 kB view details)

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

wrapt-2.4.0.dev3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.3 kB view details)

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

wrapt-2.4.0.dev3-cp314-cp314-macosx_11_0_arm64.whl (87.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp314-cp314-macosx_10_15_x86_64.whl (86.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0.dev3-cp313-cp313-win_arm64.whl (83.4 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0.dev3-cp313-cp313-win_amd64.whl (86.6 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0.dev3-cp313-cp313-win32.whl (81.6 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0.dev3-cp313-cp313-musllinux_1_2_x86_64.whl (205.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp313-cp313-musllinux_1_2_riscv64.whl (195.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp313-cp313-musllinux_1_2_aarch64.whl (214.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (197.3 kB view details)

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

wrapt-2.4.0.dev3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (217.1 kB view details)

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

wrapt-2.4.0.dev3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.3 kB view details)

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

wrapt-2.4.0.dev3-cp313-cp313-macosx_11_0_arm64.whl (86.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp313-cp313-macosx_10_13_x86_64.whl (86.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0.dev3-cp312-cp312-win_arm64.whl (83.4 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0.dev3-cp312-cp312-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0.dev3-cp312-cp312-win32.whl (81.6 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0.dev3-cp312-cp312-musllinux_1_2_x86_64.whl (206.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp312-cp312-musllinux_1_2_riscv64.whl (197.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp312-cp312-musllinux_1_2_aarch64.whl (216.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (199.5 kB view details)

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

wrapt-2.4.0.dev3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.5 kB view details)

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

wrapt-2.4.0.dev3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (218.3 kB view details)

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

wrapt-2.4.0.dev3-cp312-cp312-macosx_11_0_arm64.whl (86.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp312-cp312-macosx_10_13_x86_64.whl (86.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0.dev3-cp311-cp311-win_arm64.whl (83.3 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0.dev3-cp311-cp311-win_amd64.whl (86.7 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0.dev3-cp311-cp311-win32.whl (81.7 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0.dev3-cp311-cp311-musllinux_1_2_x86_64.whl (197.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp311-cp311-musllinux_1_2_riscv64.whl (194.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp311-cp311-musllinux_1_2_aarch64.whl (208.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (196.4 kB view details)

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

wrapt-2.4.0.dev3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.4 kB view details)

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

wrapt-2.4.0.dev3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (208.3 kB view details)

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

wrapt-2.4.0.dev3-cp311-cp311-macosx_11_0_arm64.whl (86.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp311-cp311-macosx_10_9_x86_64.whl (86.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0.dev3-cp310-cp310-win_arm64.whl (83.4 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0.dev3-cp310-cp310-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0.dev3-cp310-cp310-win32.whl (81.6 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0.dev3-cp310-cp310-musllinux_1_2_x86_64.whl (190.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp310-cp310-musllinux_1_2_riscv64.whl (190.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp310-cp310-musllinux_1_2_aarch64.whl (201.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (192.2 kB view details)

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

wrapt-2.4.0.dev3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (202.8 kB view details)

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

wrapt-2.4.0.dev3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (200.1 kB view details)

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

wrapt-2.4.0.dev3-cp310-cp310-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp310-cp310-macosx_10_9_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0.dev3-cp39-cp39-win_arm64.whl (83.4 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0.dev3-cp39-cp39-win_amd64.whl (86.5 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0.dev3-cp39-cp39-win32.whl (81.6 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0.dev3-cp39-cp39-musllinux_1_2_x86_64.whl (190.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev3-cp39-cp39-musllinux_1_2_riscv64.whl (190.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev3-cp39-cp39-musllinux_1_2_aarch64.whl (201.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (192.1 kB view details)

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

wrapt-2.4.0.dev3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (202.6 kB view details)

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

wrapt-2.4.0.dev3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (199.9 kB view details)

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

wrapt-2.4.0.dev3-cp39-cp39-macosx_11_0_arm64.whl (86.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0.dev3-cp39-cp39-macosx_10_9_x86_64.whl (85.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.4.0.dev3.tar.gz
  • Upload date:
  • Size: 137.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.0.dev3.tar.gz
Algorithm Hash digest
SHA256 df54d0024515f64f2d44b9eee007d5cb8310bd1d337815b4e4eaaaeb4772e448
MD5 30f2828128a141f29c7ce7f086abb2d4
BLAKE2b-256 082c6c9f81b25f7597d98c9814825ba795f8858634eb08df05928f2e3b7abdc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3.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.0.dev3-py3-none-any.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-py3-none-any.whl
  • Upload date:
  • Size: 64.2 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.0.dev3-py3-none-any.whl
Algorithm Hash digest
SHA256 99389e28bac537b9fc77659ca6a1b5ed48f26e408058cddff93c00b5b236bae5
MD5 bd45203ab32d41b69b4703fe3f0a3909
BLAKE2b-256 4f63ef44c4293bf952fe5d5ab31a79657d83b18df293222c517db734e9b5a3a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-win_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 e8846e499c3d93c43c0c00e4ce52a79a2a6f2cdab96d225887a49b162dee7f71
MD5 c15efb409a39e34bab7f1773bd815c74
BLAKE2b-256 475c9f2c6f7a6f26538e5ab6d6fc2df4a61dc75bba472f03360c2ac57f107490

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 90.2 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.0.dev3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b2129d17c11c151ab070d2a0a33b816a5150c0d71d9205a2e36534c1009e17d1
MD5 dd3f410d13c29bf18f3bb6973bc277f5
BLAKE2b-256 7e10a0c5f4def90d1af91ad9f50fa7c5faba3b870a9c035d1ea161e503da80c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 84.2 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.0.dev3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 ca0795b0ec8cb711ba77257a52446b6a3714bc573436cfd53a23f835b520db33
MD5 4ed5bc1324d538a099051fa9df607d9b
BLAKE2b-256 12d1add3f5c0bcf659527f3fac9e197da8eca273213ca5a597e685ec1771c37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f4f80850b60a4ab591fa9aee897753cb1d548aea9e1fc4c150de42b64be0676
MD5 4726dcc17e5cb3d6a8376cba3dd0f16f
BLAKE2b-256 95f130c17dbe0698c947e3752af3eaacb8313cdb18eae9bd5b795603c3f71f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a3294d32bf8ea960b7f2a40db1b16f3bf41ef95ded39fc2f77da40be5f156e25
MD5 7d85a9a1dadc4b8f1310ce137fd15847
BLAKE2b-256 bd187b4cea9bc41bd3216ecaafec0a5daf72b914259f34f5d23b7a7ac674f6ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea9b81ff1bd67835074523978940509111fbf0f139d17791b89f2c00dde19883
MD5 0ef02f73772d9766b5608383314e68b9
BLAKE2b-256 4738ea99b7a0b6c3c800bcf6edc99a16380ca21a02c36f9d5b9448e8e2d78a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 80e4cc4633f48e2ad7af66c83f48f0e0f4d6cda8515e659208f30493690cd6ae
MD5 bf2ea178b1fb21c34a7dc488c37123ba
BLAKE2b-256 bab18525adffefc26b06388a655f123402f1c08bd86e4945246267b362b6bb1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d887e82fc9277c3075b4ce9aa0b6bced80d69afc74c518ae4a5a198ba5b05d3c
MD5 a6e685c5f614b01d0a9709a60cfee911
BLAKE2b-256 e7cd381de435c50faf548713c992f11c0636d452b841ed21dbfab4e8292b37f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 439879150815e03910869f1c0cb6e12d3245eedd31d20b4ac9a793dc8be94614
MD5 ab2f15a864b61f9461180e831375f868
BLAKE2b-256 4ba2d4c99c9c46f733a257a82f5b65a638911da0bf6e7acf71500e63ba913315

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaca260fbd4cf20898579c11b1ca19dc902bb6aa1886890379d132f9a4166b92
MD5 c9a876b489f7bdc0d408bc2f226cdeaa
BLAKE2b-256 a5599b3be01f58051bf5d9bebc50efb57b467f4a14750df448c49190c5410232

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1b35d5f4e272edc96b1e980e918019dec35c572aeba7acd44d0542301027383c
MD5 2b56ce5cf8e568e1afe6b06fbb9a420e
BLAKE2b-256 e9050b77d036a993113bac9d73fd4dfd028f4e253ecc5948773559b767a5fa38

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 84.1 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.0.dev3-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 b7317b2723afbccdef010dfb9cd3a0059e81c890bbccd21b3e076218703e4881
MD5 06d2438a38494a8b94a751b67596d44b
BLAKE2b-256 38e7d6433fc79ef63f19e0f38062da8f914b5bbb5eaebcb7a4e7592f76b9240b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 86.9 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.0.dev3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 ea8d0a9a3f98d179cd93f2c29824dfdec9190fe13501632163be9e41b630c68d
MD5 ea788c273ff68b48f3a26af9cc2e6c78
BLAKE2b-256 3b9d1b69187d767601ba35475a9f70455eb9658318b79e60e29ed2c100bc24fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp315-cp315-win32.whl
  • Upload date:
  • Size: 82.0 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.0.dev3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 5b9ccaa5c3d7a5408ceda7e7776fc69ad8fc949906edec1a10f437642ccb57be
MD5 6df27dc2c43c41dd5a15ee613f21b4b9
BLAKE2b-256 82dde08edc13ecd1f867e8a1e31c0d0e3c2e60be5673b8deb99a6dbef6325141

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c15c240686028076ca076a9f21a83968a2f6d42b9886a66bdeb2a7a659d98e94
MD5 b7f0e978345a27ffa500097abc61a925
BLAKE2b-256 41258fd5538275b7387d11f97e1490d605b8d6b77cead58071f91db6bb673534

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b5a2e84110c468c7bda852c66c53cde6fa39ec81ba288012c53a117e849e51b7
MD5 145d66cf66c1e3fe252ae33a743a8d9d
BLAKE2b-256 2d4f7643fa14c9891b9ce3b8e8875a4cf6fbec87545475e97b76923df64c0744

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71a99cd6c78854f3d30ac1106d5bc3122093b7746abf68d0466004c439d11ab8
MD5 0dc8d9c4faef30e2e69b7cb54ef01ece
BLAKE2b-256 2f2608a3c8d557509b224e34e4f2ab825fb8eaf0a48e4aa09119b26f14642d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a5e6120f4a92b4aa26b2f00d8536800fda1b9cb6159d99cc8682941005633afc
MD5 2a5278569e5b84a7e43732ea59f00188
BLAKE2b-256 b2c43897c2dc215d1745e9b7f5ffe433e052733803a8bb008c4005d061a86c8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c53c1259b572b593adcbe519001d823aea6226b2d20b14077bca600b0996c396
MD5 1519c38a453a194a820815c877aa360d
BLAKE2b-256 955c0ff472da912433ca47c84d197484deb89294edc883f861d62c0c21a56a3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 413627c40936d9fc1a2be2ccb1abc351a5dbf027eafcd16ee038bcff6af022b7
MD5 950c02c8f1ddaed9b8bcae4e3e1efe02
BLAKE2b-256 b54d3a57ba8677b1ff9f7e3045c492c68c9dfcbe46a9c8b8800d5ad6fa9133c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cca771195b509ab258535e6c65da51efc82c90088178a482031c377b6307958a
MD5 0cfc5b09beaffda9bc97ef158447db9e
BLAKE2b-256 0f8aa319adc8a807284b2106d58d9736a8aa2b93f4926417f125fd05048a0aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 28aa40d12c7d2101be9e9a937649f095617cef80e0f5de963f5f50dd01a948fc
MD5 adec376c010ca86291123d59d9d957fc
BLAKE2b-256 01a104fd503f1b26f54f47d6322fb47e690997a355156c7ba528188a9f4af8ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fb38f521940aceea6d1c143e99a93c1a1dc8d05922fa41af2417e0568c2f2b34
MD5 93c1ba69dc471befa9fd18bf28416d50
BLAKE2b-256 5dd1bc6048082836850cd46e1c5b0373414951086f4672a0e5ef98f3cfa60a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 90.2 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.0.dev3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 83534d5dd2bd7e743dec573dbf995e394657dfb552bf5d87f8b270843f4ecf0c
MD5 4ae81da4a59c8ef8d9f6d20c7df2580c
BLAKE2b-256 99b28452ff90591b7021556217f7c15a36aa42fb3dd09d7673f4eef3998e6e5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 84.2 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.0.dev3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 650b3495763798c1c4b491c19660537305a0bc77d28ef7b272093177f82d9c59
MD5 41bc53af17c1309373d10ef31aabcc62
BLAKE2b-256 755292ea15afbfd75589b68e84a2f2dcccf6017d52e1001779a3ef280b7a81e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 50517d76a74dadf8f652b12e25f3151970a0adb3eb17314ca294a4070ac346f9
MD5 2851cf40ce75522efc508092675a6982
BLAKE2b-256 2227f77a9a33035615aa807b53a4e1aa098b9c5ef957a62028911257460c4da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a431b5dd866564122d41b34f73aa097fe7209f7231dcf110c8b2b4d04188fd34
MD5 24fdbbcefd7d5f2e2de407ebc86e6d91
BLAKE2b-256 6c884552e6492d6094c5772389706027dcfccca85c891004baa39ccdd3f179f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba57b4f9203d32c04d5d6755389ea10649bf0a7aa8947507c8e89814ae8605a8
MD5 a52e9eb15323a6bef9a46c1df749b5e9
BLAKE2b-256 b18799bdc82b6691ead19e8f12c5def0a6bb13bd3021d417e6424a03c21078df

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c3b08993c74c8716d4e1a7d6d8873e8539cb87e441383213a7b9cf005dc495a4
MD5 1360b4745bf2f303b6f02b2211d17735
BLAKE2b-256 34d0c520e9674740bb5d3b1f3549ac3cb9ff4153c76d57da1813569181f8be1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5d89bb17f9dea425e9a4bd59f1a56d78a135b049933dc0082ff88c08e32fac2
MD5 e7520daa4253d41a3acd4c227af1c50b
BLAKE2b-256 36c3b2ccd2b1a7d47696f40de81c98e7334d33cac74a913654c32beef37ef8cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4b3499161cacb7f5576927b25ebab953299611d8835112a96924eb6d398005fb
MD5 1fe3adff8ee7d0aa2df3e29187166fb9
BLAKE2b-256 f5015a3e53974958157bb2550f6ce751d2e9ac38d31e343f977a5d1b51bad240

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbde9e303bb895ef5f90295ec102402ddf23133a2fa9db912176b9c64f6697ec
MD5 aa866fdf1cd53d42fa8c91b5f4903162
BLAKE2b-256 c49502a65c05d79525a8f651e18665088a955da3dd98d8315c82f8c619700ddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e913ea60da9785225cf95b243403e3084d08c2322a5d57a1b8df7e445f53aea7
MD5 74164f190828b8f324e5a5ea474f97e3
BLAKE2b-256 5d4d0906ec0096ac7e8f6a1db264cdcd53ee0e0c39d7d164f8268139c71efa6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 84.0 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.0.dev3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 500ac25552e3a1ab007618125e58e0700e8a5223c83003c74dda2947dc4109c3
MD5 705c5b68f0741473a4fadfaccc0210b4
BLAKE2b-256 c8b8df5c7351c141ef5a2ab16af7daf0c3a3f9c50a348ba15af91f280e906c53

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 86.9 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.0.dev3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e29755b0fc27c5102bd3111e7d79560b1eb837f3a29f7c91514a92dbee69191
MD5 adf307f0d300405d1bfbbf88d1659f37
BLAKE2b-256 9596edda1593555fadbe622c764ebc75368a4a7f8d22be3acec36774f6e49b16

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 82.0 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.0.dev3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 db9201b4d5609e26661e42b5dbcb8d42464acc1ab2ed2c4fe67d95c2986cdc96
MD5 25bc8cff7b007ba7e85701187bdff013
BLAKE2b-256 7b6662e0a098dc5386cde0526a66abe8c9a5f705b35466ac419ab1d8cd4fd47b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a8925dc4da5daa7c98f4040dc308fbe6d8b37b9368b88f2ffd44c18e09e6999
MD5 e33ff6d8640d7d0313863556d77c9e8d
BLAKE2b-256 da3c2a4fe559fec3ce7093819e18f86fed6f68e089fd6da87f8e72665b04fa77

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0e8fc1dd76b0731e8beb6dbb8454ca34e7435c4d671f1714627a53a535259e6b
MD5 3da3b087567f31a1eeb0250cb07744ca
BLAKE2b-256 a19573dc89cb44538b3e2730cccef16c9d0270a3f292b5bf877c5b423c725093

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac6285e780c379ae139f6359c3d9b467efbae4c650633a475682f4130fed2f0d
MD5 23d81d93420dc4ac0d7246d1d877e400
BLAKE2b-256 dea6c874539eb000d058998b57d2b0b3ca44f9bba8216de42a034448add442c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 abdafa19fd5b809c6b6d51e086390af4634a421b1eb2ab8a34228c0aefcb2f83
MD5 231acf1592a1819a3288eb5c04d8cd62
BLAKE2b-256 9d7e4de9e88aecc63342548a89aa4094bff26f8af3f0e898b777ac244744e47c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6225e67393e07156aeec1795fa0e86f5d0a50cde47b4a33507219a3402f6e96
MD5 40bde6b7f09c65dc761740dba39180fb
BLAKE2b-256 239ee9427c31b0bcda4714975bf853a4543f5a5658dc6178ed7fc698827fc18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0d7e2eff173df84de43b62503f3254fe89e3e2cbe439e6981aab3d371189adb4
MD5 40f855d2bd4e980cafa1bc35378fc459
BLAKE2b-256 1df29521c49ddce4bd3d94d9adabb554301732b0ec4e616848f00b6d6a3aa396

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf80947ac58150106a3d1933e9783831da97edef7b3e25e7330f59ba6592b811
MD5 ba2f5fcd7993baa63b4f3262d55b75a9
BLAKE2b-256 4cbe7f70135f3b2584efcf90fbbe7ac6cd4f94e020e72005a280d1389085b068

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 832c6a5d3f06532218740104dca45be77538acb99078e70f237df14e3b5bb62d
MD5 e1e3ea270241c20f233b443e8dfc8cb5
BLAKE2b-256 9430a4da9d8571bdf8133c0e3325a47f00ca421e6ccf6ffa7920bc57befcaa3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 83.4 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.0.dev3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d8a1ce512eea5f0686896a2aad1cdf385011998d43026d8692edc834e1f79218
MD5 bd80b6b5c977bccd348b70fcb6877c37
BLAKE2b-256 7a19db31714e308bf990de82159deace9d6ea565faa89d0b4c773b3f66c05dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 86.6 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.0.dev3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b8fddf7ef86f6f0282b37f43d1b1f85e292f7b2a875bdb155c4e72a5cd62b381
MD5 c30ad52651029718362965328ad4031c
BLAKE2b-256 17b3cbe201ea37a8dded2f6d2d12aedecf0a78d5cb76c77759a861273741df93

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 81.6 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.0.dev3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bf2d361e2b19432d84b4037f7aedba98f9c626075025b2b02333d40aecbe16f8
MD5 38eb29d4d8b71360f68a4a039660a6f9
BLAKE2b-256 3c112fcf3471a22564c3f1d1759959237f12fb009b95506973c5acee5f7311c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 979495ada143101cacb3af22d11dbaafdfca38544af5f2d4de3adc3d2c565ffd
MD5 c3d28714b16a2083d16fa7c75f27dd06
BLAKE2b-256 67e75c1afde71baed222a88e14a4a3111ca7981cda69fc340340aa7705b3f024

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 36de6e2a0d4cabd9be4c856035c53e3e30d7e6ce932de701881adca74a66ddb9
MD5 89f11fac4fca65245f992dc37dd03163
BLAKE2b-256 e81251c560e463ac7b9b60d5927c47236cb5ea2e3296f9e7b1683c48a3a217f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df2930ace1f36b8648d06fe7dd89618cf85b30286249f7b15187f1de3b8aba79
MD5 5bfe13720837f2770b88989e7860b43e
BLAKE2b-256 87864393b7e0e094564288b83415d7515a86c1aa1829eeeacb83e37762b0bfb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9a5dfe3b1efb80a859d9547f6469e60510e24ff5890a48c03b66d5b52b415a0b
MD5 453045ad1e2bb1d981b14f23ace3f334
BLAKE2b-256 5d8d0d1a31602fc70b1bf7f2e4dfbd2bb9679714f47653bbd8d35b90f333b076

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b9f92872f8c7990bb592a6bf7b956ecfc20743def153e7328e38df4a27fedb7
MD5 6510771edfee7b7d743e5f96c2dd95e4
BLAKE2b-256 98400e43f2a5d736d244ae36e9bdd5f9cac90074dd3c362c2f3b6c65f70044c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 86d14eaf7be6de68c74a3e96ba1c40ff46b53b532e327b01e0a2437cd80f84ba
MD5 484f3e3a99ef528522750686e773fe80
BLAKE2b-256 557d70fdf6ce601ba5d7c9ba6e32ddbacacbfed5e69e91a8b603951dd6e0938c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70475711c01476829d8364b9397fd9b6294c10acda83aadf36fdf7adcddb0af6
MD5 0b08183b1cc6fc20d626c77d215151ba
BLAKE2b-256 70fb12ee4c101e5ef9778b1e919efb7b674c38e18ddbb3096414633e55cd7e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56ae9ba12ebcdf2bb5898a33b1d84689b17ef4c6e178b61764bb62b3fbd4df22
MD5 ec4deef28db73fd50b4e0c840b52da14
BLAKE2b-256 2151cd458c9ccfc986c010f530a52ae0021e775867d56612152a14f7e65eb714

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 83.4 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.0.dev3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 76efbab8a226767e52ded946523dff3a9f8b148c6e6f1335714e6f6cf11c4d72
MD5 fa9d9484f15f45c72a953863869206f4
BLAKE2b-256 cd92dd0d918f222c433c306a0da5d2c9d4ae3fabfdce6f0ff6db5b8422d3ce4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 86.8 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.0.dev3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 649ab3807001e843949889fda3aca6db7fbe0f2fe64d024d30b514967ca2d832
MD5 4f58303e27ec2d7fbbda750f52b72be4
BLAKE2b-256 aeb8e836c0d61988666c34ae3f00bbbc37de4439b24e343731b6c8c33a83e508

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 81.6 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.0.dev3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5f00548042f63be4c288186ec8f4b296967ce7059b8704ca007444c751f86476
MD5 4021219a652ded6576983fc4af9a50ad
BLAKE2b-256 22440ccb9bdab4f7639720d5ec8d3468d2e7993a2356a5b25ec5da682568271f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e151fc08a47571e27da9f61fe36072fad381bde1e66f36153e2beee981643858
MD5 5ddf37462206935a4b35efc20a813c69
BLAKE2b-256 0bc845f689b5daca3fde1985ef0c38c94daa82b28ed0fda06a6e3193c4b9e0ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0fc9d1671f94170b20d51bc7fb86d383721501089eb928286532363bb722942d
MD5 4b9c90a128531abe68d2536feb369724
BLAKE2b-256 a2e348ea5554b174e04d1a2ef4781b10dcd214bc26917d13240bd0c727e61306

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5f75c06dc3115dad3901fafe186681a3d5914b7ebdebe4401f1054f6b841a54
MD5 a7e4684921dae922dc9815fd89a44a12
BLAKE2b-256 6e782af1e0e546fbdf7afee9a51cfced8c5dddd1bad5dc64a7f8cf5ec11757ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5cfd67ca99f66f945df47af95cd4e62c6352b569b744bf6f9b05d9de813bf8d4
MD5 77e40a694b4a9d33022c2483640dcdb3
BLAKE2b-256 1b50afab653963e1bc943b6f60b8b8554947d7b64d0d6fff6bab72780bffec25

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea1a2c7a01e4be02b906074a2d25012950b1cd4fa15a7c87d0c116dcbc874f2f
MD5 ea53acb0eecab496464b88bb620b39f6
BLAKE2b-256 26f52fee803a24a608d575e221b3062d4c23a3f7b86aafd91803f4c40f5a9d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e3dfbc256a02a3f146bfd67324fe925c22fdebb32cdfe5ca8b0cfbd8a681866e
MD5 ddd2ff1909dce7cabcf3948c8146e17a
BLAKE2b-256 a5086ba0611a9fb42c9d41b2b3e1f3e41106cb2ee27fada7c8413f1ef3e19ebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53a53c75a088d0839bc98246f7a561fdb1416e8fc7eca900d83b68271d0e9841
MD5 ea0e8fcde820c701d9a9d0135ae4093a
BLAKE2b-256 d1b08dd5af16fe029dfa0b1de62684ed5cb10258d02916bee5cbc9ef00f5a60b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 afd9bc75b6a277d3ab2e7070f813bbd451b692cfbab7edbd13886cc7077e4899
MD5 51c4b5eed23945025c7254796b76b481
BLAKE2b-256 ffef745904d4c0c857bd67f1280b4737b697a5eaeee982480cde9513a809bca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 83.3 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.0.dev3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 cf9b05cefce054ddee6244365b9d24d33af97fdcf3341053a85e990f18401272
MD5 1ecda748b4f5007c02c80a85efe9e869
BLAKE2b-256 2159788484173dc4ef88885f90ff66f9359257500e0d64e91a7f4e494a79964e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.7 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.0.dev3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a489416113b5614817951368a32f3631fca1e98b347aadd4257046531ddce075
MD5 ae454b9e5ac18b4ee8db2fc378620cdc
BLAKE2b-256 a31bfb6016b3a566803b459d1c1a07f56dc43e571a8aae034d1dea6264514789

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 81.7 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.0.dev3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e1718fd18e6fe6d43c36641bebd25da49c5461e297c189a1dd01c73e61f20d82
MD5 abf2bc4c9ae5232d2493e64934a0f326
BLAKE2b-256 f2265f6c1ab88350ca63730a4833a672768e2fe846410235d69c3bc4a4cd6ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8c92a951bf4f3fe21ef16f73cf8e134ab40c1a969fd36f8d7449520e31a2f6f
MD5 bed94ed35236d9a848b0d105e901bf23
BLAKE2b-256 19e95b0120605e17944c1058358f41577181be37187e95fec9dfeb2c7957bbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b355649970c177a87b0a7ee0fab3e293837fb4a8f7bb752b75d1e04a1047d183
MD5 b526059e358eb26f92f97144df8cf4bb
BLAKE2b-256 5678da080f1190869b2ecb6b2e7df1a44afb7615c69889727a7c8973d27008c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd6ed288508cbe8c18892be38fb9d810d198966da7142c5c62da7d4d5c8abb55
MD5 926c04e2806488c15f75a7132836fdb1
BLAKE2b-256 ba466cd68b3b38f82045e6554b8b08cad20c8b160e7ae088dcd516c98f54b2e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aae03b42d9a9460eabe1d66083c3ee5d12c4971914c05dda9390202b05fd6049
MD5 eb4811aea248d3718b5410d7b819f3c9
BLAKE2b-256 8d0794d2e80ea191512e2ed875f27d3bffa330d9e050e3b56ea4eb81db0e2a63

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b556f7f3cea44fb17dad467170f8639da063765c293bb9b1ad0b57db6313831
MD5 aa2880121e3761188ce48bbe433696bc
BLAKE2b-256 11dac6697b9f24655b14d4cf5bd3e546912783da207e4bddeeb915b652e58e86

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 439c19157ebea573f2842ebd816beb5cea2b2106a4c779101d1c38e9470016cb
MD5 cac1e837ed6cb29ed45e1e33c021fcaa
BLAKE2b-256 f99946426baa95d1dfbfa884445b4eca959dc47ee9be665c9fa9b81eca946d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bf74ea00067adc2289330bca8f1f299e51b180ae1b85abb06881a3fdcc97c86
MD5 cc65a7f6ba9ef35057621496568aa09a
BLAKE2b-256 0bf06c09e3573e8a25e64d29173c80b409fe7c26c04435478ebe31f64975e4a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3f6531dde5183fe9ba7b07dd0d4e95aa99737d8ddedf1073440cabb4c08eeee
MD5 0f3e0c01015cc756f9627ad8b39c1325
BLAKE2b-256 1389cb1a6293555a9b00d143e103937a40801079eafc683ca01d430502555fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 83.4 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.0.dev3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bfd8a57141e399c95d9c54597956f0ab204043d993a9660348eddaabbb120633
MD5 1d4b9319d8de8e1e504dfe5073f922fc
BLAKE2b-256 aeb3968b23d3a4e7013947d3a3521eccea27ae19f8c1e1d3992373256593d52a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8147cc5c92be49331b42f423f66671f8cea17acee80ce2566bfc754f25247917
MD5 e8b33f2d86035b721460f00480eef86c
BLAKE2b-256 8a9a8be87bc895cabcf0c60075174a1c904bc9eeac8b979b49559a6a4956aac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 81.6 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.0.dev3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0498be9139017b7f347117f9c05077d2c2329d4276a49ee5f0824cf2a8a71407
MD5 18e32c04e25758a56e8ecda48b1356ad
BLAKE2b-256 3093116a4d6ebfb21b2d530985cbade5b88390704fd95ded439ac93f66477866

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2898abed1531bb7041767e778ff49e4053e3bac5dfa9f5a842c8b3bb7eca806
MD5 29b66215047baf317b4a5a1089fc1b71
BLAKE2b-256 5583e98a61bedb7495285c88b4a01d3e96370fdb73ebb986fae7ef2ba432e0fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 08946b497d255483916ee9deb3361fe6b41732acb9def728e72d0ded5985a405
MD5 2b24d72386cab255aac7b65fe25a379a
BLAKE2b-256 359ffbb5a88e31e1c3de71d4d7f8618f4418f94d62f8d6ea0256434a7da99502

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 477de0bfd2ca54d3c792d63a3b0bb72044e82ae3c9d8792c873d521de15324c7
MD5 4916911cc50cff95f76b5eb84a328930
BLAKE2b-256 7f3d284009ffd0eb3e68e7941422b69f532856aecc42036cfc90f62795d72b57

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 628b961f369200e6f60166f4f8a2527f9d3476786265d73523162fdafa1cda6a
MD5 0e9083af4b09d3a0a06c18dd51d351e0
BLAKE2b-256 c3ed32ad656d98c3f2ff1959a416eb0c4f6f382acb1946784b5504c17506629c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9f4ef6bdb33f85cbe1c3fa9ce86634b570a188a648cdc5d99c1ec8c1b31685e
MD5 0f1f8a142c5754379396143145f3c73b
BLAKE2b-256 d009035b0b2b1426b825c162fb3505238205b977fbe4d3d3bd9221347e23f804

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8ec6544ae03983c05be030e6c0861a37ccb727700902f05d5b1b3d7cd88d07ae
MD5 096b7d9dc9296b5df533a350a8db243b
BLAKE2b-256 6ea2d47ea2a7eced6d6c4fb9e6882f8acf1d3d670d44fe31a76872f42d3089e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4549d251a2b065429e21d6858a10b74c413a83b34687059ff27a70301c2e08e
MD5 2f8083a98121ffd7151320589ac4af31
BLAKE2b-256 155153549718f88a0ad8cf848994ae7412945fca114c2596d142c03d77fd0c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b92c4599ec21865d93199ecb5805f3b93156f1418a9630496786c3729955a1d4
MD5 71670d0114a8927800a219425d15c63c
BLAKE2b-256 c01494ae16756c189f10cde48e5823ba3da6d643d700371b23970abec4f93e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 83.4 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.0.dev3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 dcb225c3983925018633e6d08f93e58d30bef9a49abb81e5848823e690998514
MD5 36db66791b339f52c50db75be4ddb97a
BLAKE2b-256 895163c3157464ef677f140f3c7a0400b86ecb51fcc17f0e5b926afb4e594996

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 86.5 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.0.dev3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 39ac69071a06fa1aa3fab4b9deb333b1a2227f6744b50cf9b68c051e9dcd6352
MD5 00555b35219727b506b2024174ca8b94
BLAKE2b-256 88bcff84e2315675c45ea5ee38ac4aecc9f5cae47f2ab3c49f9285bb2f16f3a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-win32.whl.

File metadata

  • Download URL: wrapt-2.4.0.dev3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 81.6 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.0.dev3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c983553f1d67f918b23645e5818341f30270cc701c5c2e2ad415bca202da4bd3
MD5 a03205897b2acd56d3a0badbbbd50602
BLAKE2b-256 a5c5b852c9614a90f433ce08a571ce207f314fd08c81de66f21598d9ccfd24e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27f0873b6da8ddcff0759bdac9da10b0987f139b3f30ec7899cc048b256c16e7
MD5 94b171ff695f81b6dfec07e02a88c40d
BLAKE2b-256 b2421ad62baf2fd0d5278de26ec87f2c9b35d30b9f2e4ea0c45377b4c39f9a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8b909a6aa8c88ba8f6b54b1d0a986d911dd022535a5d3c34bc58b03a5618034c
MD5 a120882e939ac8a05e5425a27c286dda
BLAKE2b-256 6de8cc062fa448142868adf8dfaa324ef09102212ce6d08cb02372103393fa84

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b022466a2822add72dad4c53f6f1491f275a9a6810ed7ac051e0112c8aaf21e
MD5 45e6df87c2d7ee4aa90c8e4f8e3e06b8
BLAKE2b-256 327a7f0fe189784f923df675f2709a13c3f6e528d50238cf4406e7c6817c81c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 da9ea988894e129359968fb8384b0a97348ff138a959191ef6cacd7a4fe8d798
MD5 1bde48b3ad1c91ce90a7628fa2a95725
BLAKE2b-256 cdccfd585bda6d38c2bf547623f17c0d0a2ba5a96616006e0e7f58ff1202813a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74a1311dd82986754b75ee28de5fd25cad348254b80e4903de048a4563c39796
MD5 1050f26df920ad53cd054a798c2ab3b8
BLAKE2b-256 4616c99a7b2c38c1e11bdf504d7c4134c33841ef151c69fc379636753701569e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-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.0.dev3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 54a120b82ec3bd49ec4d65607f0504c0ba59ac03d602a1bb75ee85ad6465e3db
MD5 d1607be2434880c203486ee00acfe7b3
BLAKE2b-256 1cae3c2e156cd36a8d32ea96468b8c7a63163856fbbe7813602e8a0fe8518f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7732c309562ebbad496e4672f5b8d76344a6fa803121beff63f6a0149aff4b63
MD5 b2d72716c5fdf08933534e9cf37000ef
BLAKE2b-256 51b405cef939a5e9b126d9c686a3437e8604ce6f3521a8e6ebdac76d3d153d81

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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.0.dev3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.4.0.dev3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc889d898c1124e8a8ad5a2d2b69060b81f0f6b066d612bf5416e3764e16eed1
MD5 4816a1f093aee76f3e79527234a8fa2c
BLAKE2b-256 7a9d3c09017f65d1c32f969f45d938e108adced68190d6cbe61c572ed123423b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev3-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 Pingdom Monitoring Sentry Error logging StatusPage Status page