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.dev2.tar.gz (132.6 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.dev2-py3-none-any.whl (63.0 kB view details)

Uploaded Python 3

wrapt-2.4.0.dev2-cp315-cp315t-win_arm64.whl (83.0 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0.dev2-cp315-cp315t-win_amd64.whl (84.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0.dev2-cp315-cp315t-win32.whl (81.1 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0.dev2-cp315-cp315t-musllinux_1_2_x86_64.whl (207.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp315-cp315t-musllinux_1_2_riscv64.whl (200.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp315-cp315t-musllinux_1_2_aarch64.whl (212.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (202.9 kB view details)

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

wrapt-2.4.0.dev2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.8 kB view details)

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

wrapt-2.4.0.dev2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (210.7 kB view details)

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

wrapt-2.4.0.dev2-cp315-cp315t-macosx_11_0_arm64.whl (85.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp315-cp315t-macosx_10_15_x86_64.whl (85.5 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0.dev2-cp315-cp315-win_arm64.whl (81.7 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.0.dev2-cp315-cp315-win_amd64.whl (82.7 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.0.dev2-cp315-cp315-win32.whl (79.8 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.0.dev2-cp315-cp315-musllinux_1_2_x86_64.whl (170.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp315-cp315-musllinux_1_2_riscv64.whl (161.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp315-cp315-musllinux_1_2_aarch64.whl (170.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (163.8 kB view details)

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

wrapt-2.4.0.dev2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.0 kB view details)

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

wrapt-2.4.0.dev2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (171.3 kB view details)

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

wrapt-2.4.0.dev2-cp315-cp315-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp315-cp315-macosx_10_15_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.0.dev2-cp314-cp314t-win_arm64.whl (83.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0.dev2-cp314-cp314t-win_amd64.whl (84.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0.dev2-cp314-cp314t-win32.whl (81.1 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0.dev2-cp314-cp314t-musllinux_1_2_x86_64.whl (206.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp314-cp314t-musllinux_1_2_riscv64.whl (198.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp314-cp314t-musllinux_1_2_aarch64.whl (212.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.1 kB view details)

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

wrapt-2.4.0.dev2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

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

wrapt-2.4.0.dev2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.5 kB view details)

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

wrapt-2.4.0.dev2-cp314-cp314t-macosx_11_0_arm64.whl (85.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp314-cp314t-macosx_10_15_x86_64.whl (85.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0.dev2-cp314-cp314-win_arm64.whl (81.7 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0.dev2-cp314-cp314-win_amd64.whl (82.7 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0.dev2-cp314-cp314-win32.whl (79.8 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0.dev2-cp314-cp314-musllinux_1_2_x86_64.whl (170.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp314-cp314-musllinux_1_2_riscv64.whl (160.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp314-cp314-musllinux_1_2_aarch64.whl (170.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (162.1 kB view details)

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

wrapt-2.4.0.dev2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (170.7 kB view details)

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

wrapt-2.4.0.dev2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (171.5 kB view details)

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

wrapt-2.4.0.dev2-cp314-cp314-macosx_11_0_arm64.whl (83.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp314-cp314-macosx_10_15_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0.dev2-cp313-cp313-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0.dev2-cp313-cp313-win_amd64.whl (82.4 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0.dev2-cp313-cp313-win32.whl (79.4 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0.dev2-cp313-cp313-musllinux_1_2_x86_64.whl (170.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp313-cp313-musllinux_1_2_riscv64.whl (160.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp313-cp313-musllinux_1_2_aarch64.whl (169.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (162.3 kB view details)

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

wrapt-2.4.0.dev2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.3 kB view details)

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

wrapt-2.4.0.dev2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (171.8 kB view details)

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

wrapt-2.4.0.dev2-cp313-cp313-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp313-cp313-macosx_10_13_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0.dev2-cp312-cp312-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0.dev2-cp312-cp312-win_amd64.whl (82.4 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0.dev2-cp312-cp312-win32.whl (79.4 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0.dev2-cp312-cp312-musllinux_1_2_x86_64.whl (171.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp312-cp312-musllinux_1_2_riscv64.whl (162.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp312-cp312-musllinux_1_2_aarch64.whl (173.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (164.2 kB view details)

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

wrapt-2.4.0.dev2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (175.4 kB view details)

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

wrapt-2.4.0.dev2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (173.8 kB view details)

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

wrapt-2.4.0.dev2-cp312-cp312-macosx_11_0_arm64.whl (84.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp312-cp312-macosx_10_13_x86_64.whl (83.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0.dev2-cp311-cp311-win_arm64.whl (81.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0.dev2-cp311-cp311-win_amd64.whl (82.2 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0.dev2-cp311-cp311-win32.whl (79.2 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0.dev2-cp311-cp311-musllinux_1_2_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp311-cp311-musllinux_1_2_riscv64.whl (156.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp311-cp311-musllinux_1_2_aarch64.whl (163.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (157.3 kB view details)

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

wrapt-2.4.0.dev2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (164.2 kB view details)

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

wrapt-2.4.0.dev2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (162.9 kB view details)

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

wrapt-2.4.0.dev2-cp311-cp311-macosx_11_0_arm64.whl (83.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp311-cp311-macosx_10_9_x86_64.whl (82.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0.dev2-cp310-cp310-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0.dev2-cp310-cp310-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0.dev2-cp310-cp310-win32.whl (79.0 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0.dev2-cp310-cp310-musllinux_1_2_x86_64.whl (155.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp310-cp310-musllinux_1_2_riscv64.whl (152.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp310-cp310-musllinux_1_2_aarch64.whl (157.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (152.8 kB view details)

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

wrapt-2.4.0.dev2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (158.4 kB view details)

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

wrapt-2.4.0.dev2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (156.5 kB view details)

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

wrapt-2.4.0.dev2-cp310-cp310-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp310-cp310-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0.dev2-cp39-cp39-win_arm64.whl (81.3 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0.dev2-cp39-cp39-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0.dev2-cp39-cp39-win32.whl (79.1 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0.dev2-cp39-cp39-musllinux_1_2_x86_64.whl (155.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0.dev2-cp39-cp39-musllinux_1_2_riscv64.whl (152.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0.dev2-cp39-cp39-musllinux_1_2_aarch64.whl (157.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0.dev2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (152.8 kB view details)

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

wrapt-2.4.0.dev2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (158.4 kB view details)

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

wrapt-2.4.0.dev2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (156.2 kB view details)

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

wrapt-2.4.0.dev2-cp39-cp39-macosx_11_0_arm64.whl (83.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0.dev2-cp39-cp39-macosx_10_9_x86_64.whl (82.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.4.0.dev2.tar.gz
  • Upload date:
  • Size: 132.6 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.dev2.tar.gz
Algorithm Hash digest
SHA256 c29e528384bd417399b403a543a4f18b5accd1c4c1a2e725a5a4e64207942175
MD5 22d3e8f0ae568f5e92453bf480668a9a
BLAKE2b-256 34cb6d7e8ae87890334405dfcb147f6039bfd63a602824ca42fbdcaa6796b9df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-py3-none-any.whl
  • Upload date:
  • Size: 63.0 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.dev2-py3-none-any.whl
Algorithm Hash digest
SHA256 60c156badbfc6c57b3597bb1a08023dd61063a22269b8f27b78f24d922f4ccca
MD5 510e722385e69125d5fea7c6fd2f3497
BLAKE2b-256 718f173e9e2b8900b4e9ef5400e8e07ae5383c5e9ca930e1a2ba89753e6ca013

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 495718ae90d658d76396a97cb3af47e1fddf62b4b3346e10311efce56f016d37
MD5 60daaa289e7ec63db8e345ea936cf30c
BLAKE2b-256 b5522dcd59e810eab31c316a5eb74681cdb0c3440824e7692666131b1d8c9b47

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 84.5 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.dev2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 3cd0310ac61d24a5488318844de0d96939dd573e77cae9cec89dfdf44f1298a2
MD5 22c50ab455cf52c5886bb3ea6c777f28
BLAKE2b-256 d9f4a6ee2fb60f25cd0870799e6f09402b64670c92b1a4bcdf46f54bc01c1c4f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 81.1 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.dev2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 d19cddb5c9ad1115a58d4cd533b259a7a3b701c61d69a4181891b06f64647ab0
MD5 ce34a9f11fd8c9c7e20b38138f9646a7
BLAKE2b-256 36a0cebc9b516406609c9e1d027c74e1f45b710c3c433b2248fa2e13b2079cad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad788d84b1981ad73bc380c86a36cbb94176c62f306f052cdb7dda8a8b1ba75f
MD5 40923ef3928fa226f576edb50e8dabf1
BLAKE2b-256 ae2a06bc59a03eeeb850ed72035c74b5e269dfd31fa3db088beb5de014f031ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9968f6500f8afdfeb378a9ca22524d397088a9fb46dbb01aabde723a31402e03
MD5 65bbe5823abb78431e003213aca4d9de
BLAKE2b-256 921ff51c74326c53470c2f999e6481765b37d4e78b7e010b72fe936872565977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 452d1de32a5a2bfe2ff4c86c70aaf0af5dc087bbf2f634e0a72b17b14cc5cbe8
MD5 b3afcb09bf39d64ad2154431be32d765
BLAKE2b-256 6bf3c807787cfd99bf3f9a5b634f7da9689990e202a7e396251fee8e5fdea6b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 83474f3e14caa1376ab4a630041f28cf8aa97417e682003311e10b6ea67d15b1
MD5 74faa97903f9c36c7e9b6aa6a83bafa9
BLAKE2b-256 b08250505788508459064bcbbfb32aa3a42e4f74aa34d5289b1027cbd3593eee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a53c5f420bd52a99fc43ed5759c07ec2528226e82e563e3e5f5377e4c74accf
MD5 00c27030334205c76fa561ce7f5cd270
BLAKE2b-256 0165eadce095d6393b87c99cbe8ac7aa396ae26ca5b3d7b9a9df388c950567fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eb38850b93a21e14986a7ad2f798dc6488b9ed26742acfbb6e9d894bf5a0c775
MD5 6637ab36ec0ad619fc4a098100bf769e
BLAKE2b-256 27bfb9959e28c4873a60e29239ad72d679bdeb4f2bfda285970826fd519cdc24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 475e0669acaa7b6ae27732412d6c2eeace080f157f349c231b4ccf4fe573e86a
MD5 10db324e0d583e16aefa34fe9a9296c4
BLAKE2b-256 6eaa8b17d634c2ec03b6bb9319482a211cac57b272cee7581d81d7ba72c2b686

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bfd84acea33ac258336feae70b6d063ec1adb11a8dfb2ff888b4f6d7c4ea1b7e
MD5 0d1290d98e68a3a4c80b75e9de06103a
BLAKE2b-256 c7a6745fdf1f93508b1a0858e0020d7e6c5190b49a846dedc53a774dfaf346a3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 733116df95f6a079911a9374d67428c3f89fe5e97b2749ba110004d2854701d1
MD5 6238ed3c9dc59973cf6d3d7a1770f188
BLAKE2b-256 9a2c437c1189048b87f0e7dd1d4750f3ed02b62e39356787ad248b55b8b38dd1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 82.7 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.dev2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 75f40dd7e7b15c390b9bef48f2c562ccf72b46726b5b04bef482797472daa290
MD5 bf9d4edf5115af14288c73b9cce210d6
BLAKE2b-256 bcd8f950342fc2c0a75bc6522891cf82cccfead205f0172b14458c57855211ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 79.8 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.dev2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 163da181ca07b4dd7f3884378bd8033e6d19c4b0407319ad940ce543f9889ee8
MD5 2499dfbe8505db5deff67f8fc388e37d
BLAKE2b-256 6540ac52c284b0f0902691b8f2f74ac3e9f5f3a4c5995c89d7d031b11a3c8d84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f85b8366c99df9371ed149d9d1b388712904d95aada7535da28309cfebc97673
MD5 4a18989ecf149e994c9ade3e38f10e83
BLAKE2b-256 907a58a0ea1f3063094c9e16fe00f311be5addaa098a23b97aeaf587fdfa612c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c1051efd8c00eea4b5cad21400a0293775bff72d75c157dfa7bc1a7c3c13bf0a
MD5 56db2192dee05372cc44c60c0f9e39c4
BLAKE2b-256 c6ce6cf89a3909ee5a1de1a8b19ab32749484ea427f754dc67f53f4d33cca2ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca9ac24284af29c6dbd61af833d3699f7cd0847dfea49c37f0e2a556e271e50d
MD5 e6aa6dbc975722efbe7b1177e342c954
BLAKE2b-256 554f49cdf2891799486bcd39044c298fed73c86f8de97c0177dd310d0e928bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 08e91c888b3c36171692953c62ca0d172d06a8f5e4002412a9e2aae92d9aac79
MD5 99a48ff52d6d1b915f1f5f4ed04b10fb
BLAKE2b-256 b9aa266ae987ac6decdaf751c551081feffb8f1a2e545888eee117d8ffc2725b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e2ff7ca8fd898147f96b9f51896c7f0498c3cfcdcecde385e68dee09a96931c
MD5 626d8305b0e69061315b7989ede10dd1
BLAKE2b-256 4aac8239a439ab0524999452ce2af025cc05283b567230c257f8fb328c3d65d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e1aad483c2511168b484d2c4deee580c07879dd7f17252571f32500e4dffaaa7
MD5 28f76c4e17d8c456d848c799f924d526
BLAKE2b-256 46edfe8998fd84ea3bcfbe92b55d63320b7ce160419b667290f8fc2e4496abac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d04ee503043b52794c86456dbd52bbc5d73a1dd8657d70fd309cbb3836e35860
MD5 4c7262ce055d7e2cc6e4062857db5a42
BLAKE2b-256 d2ac83e9a37d4802c203aaac5bd75efb41fa6f50b7204f04896e18bc5c50d1d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 019a1d9fbb57306d93736771dc45b93e733ce674d21e2c86b0d7e6246b6da6d3
MD5 88ddc65cad8f2377877199f026bd60ed
BLAKE2b-256 35ec55af4ddef892602ded8705b3ae35f5446bdb2ac5fe25aad398f4ba9fa0e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2472c568d9c3a3b675e0d92cba3c7992efce347a4146a86ce63a515901f6bf1d
MD5 4b32363101473f7516368159247d9ef5
BLAKE2b-256 df06a761dc85ac546dffdfa5feefc8e12ee8659b40d139722a0a2cae2f609c4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 84.5 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.dev2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 193fa042f225a82d7e3115b663ed6faa94ebbeeb0b08c9e534809fe7364d3d8e
MD5 5fae6c0bc2afd4140844fd46b40be058
BLAKE2b-256 37e5f9e49984bede0fb2dd06a3768f299dc7a9c05f05cf786a5b24ad33a8d360

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 81.1 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.dev2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a8806a6c6e4e57918174e6b85ad75c19816087fb8c415a5ca36723591aabe82f
MD5 c74c07a63182df905bbd7c90aafad1a7
BLAKE2b-256 9b75cdae174770b8539b4eaf858dffb81f6556520d1d573232624faaed9656d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39b2c670bad1fa325c36f3612fd6e477fbdef55cd5ebfe69828c93b63dc03742
MD5 d5245a20471d3a5a415a13654acba74e
BLAKE2b-256 06730ef60b45bf45fc66fda176db583f75370a5a43eb3222c2a27b5cd1630304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a292958926c3a405ed71046a67af53307ddda20fda7a16348963c71f4d575dcd
MD5 29a8712d53e27ba42ef8714267e57248
BLAKE2b-256 e89ec60ec6194301f57301010e6ca38a7b79a344e46b9424170086c62e981a5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02a69ecaa9886967e048ab01d03e68d7795a375e505566176bf1459a4d4a0199
MD5 9570f4c3a3a57d99ebc271414cc8d240
BLAKE2b-256 13d023292378b1f74fdea00dd17ec935d10ae704d9c2c5fa335056eab0e43666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7c152546044bae540bcec4d12341b80b63b9af88b682abb5bfe8ad3ae101afb1
MD5 08ac2995f3fa0ddba48a98abad77e6ce
BLAKE2b-256 64281936d8b56e19a6b775ee64f17ce68c49cecbb918ce238e79cf8557f0d16b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e242d443f8b9e203def07b2f4eb15e2a528ab1705b8e4dad96a1db642391c09
MD5 b2999e21e7ea258aead6828edc601d66
BLAKE2b-256 4c6323cda129e5392a9b68c950371330951512ddc75e4fb668e9dccec927f916

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b036aa5ef8d24951c609571ac5dcfe81c0ce002751365361c8df3965d4b4ade7
MD5 d5bb3ee69531ceab46aa13bb69a1042c
BLAKE2b-256 3e17f8ed04e9a4946d4b06fc97a3a7a3b162b1c888fd2a5f47c31f5afe541208

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd4077a93aa17acab75dd7cf7f2b98048ebb7b6796d312d77b81a939615f017c
MD5 199e14321e0cdec45d1b59d5272f3aa6
BLAKE2b-256 026289929ba003f7efc56853aebea0bf705e6c52f83e5f5e85d11bbd02a71832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 692208908a79962aaab32169ff338752317a45e14304db61f5c88be3a7bebc30
MD5 c22882def717515776f5ec96a5a22680
BLAKE2b-256 1fb2a15b6168e8d464f9f5f1f9b5bd9fb68320f63d0dc29fa6099b7d2a9ac1f8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2d418210cb6e3b2b7d5a1f120eb74b42055efdaec2d7ef13a2e46e0bfbdf72d7
MD5 a735469ba3a05b2f93a302416d890678
BLAKE2b-256 2227938aeba186041863e654edc1ae25f3646b53bc3747f84719438388c5c9ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 82.7 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.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eae27b1238838af4b149dc68dc98013575eb5b9444bab47086e346cd2c872727
MD5 d709963660d8eea587355012a3e345d8
BLAKE2b-256 22d9a0342bdd71b11b78dad820a677871498b67a9bcf4e51eb6bac84289f3637

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 79.8 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.dev2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1ca19e54a4f0051781d5ef3bee4f71c025498cea9c41a19469d021a6f2871e8c
MD5 52eaf8b97da7fcf7a08c7fc3ecaf4d68
BLAKE2b-256 2cb9285c1373deb3458f48291d6f3eec077c668d92ed7caa3ccdc794dace757e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f25a18d12fd08cf4a90384f0ec5f8849c85a385837bfefe439e7b5149631c70
MD5 78abb96f36d04f3b1baace7cedec4bee
BLAKE2b-256 a3e9ae5a559ba5a792b00d7997a1c8905ee3155536a536c74a51a2ae7aaab9a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b2f1cf4d77d75695ba575c8fe1ab23e4ab94341486ceb6dd8791c7fb12770fc7
MD5 b4ce9c7d99063aa114381d15b92476ba
BLAKE2b-256 8658b525bf1a6be1f9f0f8634e9d63c65592351eac2bdce846ed8ff28a3bdf70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d2ec0ffa40f3ac971563ade62814f1a15c2da043e35b602379672765c9e74fd
MD5 4a62d90524be14192559cebcbe496fcc
BLAKE2b-256 5feeefc020a80298a04f2aef0af7f47433e267a743af5b4dec1f96f17f8f5035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fa95363a11c03986490bc67df336754ce7fbe8fdc488f547d39f898f46741d00
MD5 f804902216bdfd656c65282ddea197e0
BLAKE2b-256 d9667e9c4a50775cf430975f59dbd1aa424ae9dee1e82f6b8b88bb51f799ac89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 290b2ea2442b17bbee524971b2099d75213d694fbfa9b99caff41d8068a669b5
MD5 a883cab67c5178446b0b74f8df5dda08
BLAKE2b-256 f25759ca2fbcbc043f4e639de5ab8583e74dfaefe114eed4a5f80aaa0fc8ccc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a7d042d7a90133da95934e68d154ae9f33381fcd2257d95713634473250a428b
MD5 05a2c69d1f1cb96f25f235b5d5648a76
BLAKE2b-256 f248a6dd78def39e3f06b748389b7bc95ab6193338b8d26895105dd28b2eebb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2817a329da147d13a5550eb3dcbb87abf4237876813a152aa4718d8fa78883d
MD5 8023202649174773946ab7170cc12616
BLAKE2b-256 ebf74c3afcb21bc4e4820b3e5965cf77029068462ebf1c8229c539fdc6dd7f8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cab0ad9664f5138e9233e705f1fd36603624174dca1f92782c2d765008ddeea4
MD5 a105134c3ae74cc1f0962327df939cb5
BLAKE2b-256 45ff909e21e9cb761de33963685575f3cc822b21cf27f390954cad06223f5fce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 81.3 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.dev2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 97790d53fb3ed9b8598b47615829776b907a74ae416f21492be4c3ff73ef8e0b
MD5 73030f52828718a446909aa9aca9be69
BLAKE2b-256 461a1b8c828a428fa77bd5eb92cb78e7349232b982ccf5bb539336c95fbce27a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 82.4 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.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 58a973b164f675edacbe69360e15579d0a8f0c3b2193375cec63bd9f1715dc90
MD5 da82e2cd01939a50dddae74f2e6f3574
BLAKE2b-256 2b5fe925aa44c5c1704f0b34114e805afa014b72836a5940364692bdf82dd849

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 79.4 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.dev2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f0d8a47a80bdcf36eb2942df092b3e4d1c8c07aa0d9b621558be8fd21375aae5
MD5 f2f4311db336f4ed648a9e81f0d8199e
BLAKE2b-256 c730cc88b2bf5f6746cd2f5ffe9e9095d3907b0b4b7274db6f6bc6c4e9d33d35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c4bc88998bc96c8e92d36beb12625aad12ff093df717aa00ce763eff8216ae9
MD5 3832c97f0d6b74aff4337444b035ada0
BLAKE2b-256 ba16c35f18a9478b8a5c15ff35bd5c7cbf48a564d649a9d5347726caeec8303c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8d48bfcccd026e74ed5dc761b1c050b913622682b85bce7a5bd368ff92299f89
MD5 9bf42c92c1d891940579e8d8cf1c7594
BLAKE2b-256 4e741f7691ffa67af7401af1cd836f05032e550e1dd728f4b1fc6b59adcda49f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 700eaf3bf7dc6562188a62fb7f9cf28c87f4999f4f5e2458624e5b3976ca0eed
MD5 c10f489f61b9d6d8255963841ad0be40
BLAKE2b-256 b3a0f934f609612a5dabbaf94cf0061f7f21c71f44e6b4ab1d6b115d3fa1b39a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0f3402fbebe88ed615c9bd0a0a4ca66865b035c5fda0fb3d2dc4eb0b66ff89d8
MD5 b48117b2107445245d7e5a4150ca2e67
BLAKE2b-256 b28fca326fad2d9ba761819b7d962c8872c56697cf452aa43a7f13f17b57504f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3b5ebbb3e138317e71601230ae1ba3d081528205ec9675cf5ccc9fa8472a0b2
MD5 b41b6a23b2b0f99c4faaaef933f4d780
BLAKE2b-256 2736ac891e0c72a73f2f05af28b3023efafc60bdc5ed38b360cb09f0400e1c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 622cf8e28488932970ca2cff4f3410fe8c94e9ab4ec9aa3e70537089797879e7
MD5 4f30bf4087a2508c53d8b7a9aa51f53e
BLAKE2b-256 6cb3b9f9d9c6f885139a93f636b56f3d84e1874f155605423236c4063865f11b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f05c65f657948f513ace93781920c37fe6dc4641343910c2edbb5887ca70b3c2
MD5 af6aa469d6e1cbc66d3ce04202754fed
BLAKE2b-256 c9e8db1c81dfb7f395db3894fe5a9c5d3a61d0f3139ccbd30562179b09770b53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 396bc664a025dd41c2b6855f8b4ee1a4442ae15f5d7326295516e73fb2710135
MD5 dba2e600a36d7d645adb08e13dd01fbf
BLAKE2b-256 c29fee6bf59ac728215a24115d3c89bff9f2b53c09524c3b016f11185d48e762

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 81.2 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.dev2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2571bc567201c671d1efbdc64ec0417d5752d003a0fa72132b4a1ad648ff7f0c
MD5 aa63b7381c35bca7f66bde11bb9db9cc
BLAKE2b-256 43e3f099561fa5c378db17c1f68d2806489c59f708368c1d7c2b472308536149

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 769bdb59e9df57265b2c045f554c732499ed2cd861c928e515e75502efe222f5
MD5 c881bfad6a6cc40abcabd0b90a1e0b94
BLAKE2b-256 821de337affb14299618b0ae4368196985220faeb34141978670b40399a5eebc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 79.4 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.dev2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1f6154e59100ee27aa741e9db10844749be8808138c27053b4710c9c052b5a7d
MD5 11cf4da63dd063371bb19aa605d2687f
BLAKE2b-256 63d3b65c3f63f8ceac6f49650ff663c33a3c804e5c5fe27a6cd0dedad3546430

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03df13875c0e8ba802221c51597d27a2dc4474fcde32fe57d3cd7673613de32e
MD5 078f1caa998d850f0772090b76be26dd
BLAKE2b-256 0b21b56b1c3043ab11e3154aff3a7a04268ea3a20c9a1824cc4d0e0b7e32e133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fe88f20b44c936d46dcf50c829183a91ea196d9c5e680565dd47bc65563369ff
MD5 69ef083e893cc1bef6205cbf20b28649
BLAKE2b-256 0112b4683a6bf933e8877f6520617abcd3e9526217c1d755dad8b9deea558bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0176a6422b415559218ae1c0d02af47e0b4381415a3f5a30881b8d081d11b08f
MD5 c9749061fd522d9d2b7cafb949bf95bf
BLAKE2b-256 b1ee260d53bc88f754663e573ff4d8903e92af9ebd230bda2d6e8e881557720a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3c2f9d842f2a54b64359528038fe3ca8cbfcdc02b9eef2404a242cfe20f85948
MD5 27feba12816bf279889c9a5b3d727745
BLAKE2b-256 321794c730a2da54270606a4cf9d6bca1c1e7d19f0c0554533a912d410042f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc862c291340415e66aae994a34614a9d966decc9bb977c65054b79e0928776f
MD5 49310f3ec4a3af00affc337812c4b9ce
BLAKE2b-256 0623f337fc1d1ab9e3ec99ad4b2db2b780bc515491218b0e1f96b5d034638602

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2f1f921868794a06287046d29d95cb28ea9a969e5750fbde8d09d425a15df1fd
MD5 4c5a7e4a76ca0a8e06640575353f2a43
BLAKE2b-256 7bd2d45597abc0a10964d4f020ebf3e6fa0d5582f36e9fd28209565f543d42cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc35b50828566fd7b8938027f21e046d10633bebe7118b9ddfda1443a8971f89
MD5 943adf78e515424f92165d1f3d070b1f
BLAKE2b-256 2157a3840caa9a8f1648a1f3e946076bc9eb437fb9f9aaedd8b832987289c602

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93957b4cd7ee5c13a70b538dc7d5efecff880db0fe07b6710890aefb696e3751
MD5 974ea83864761487c5d544bca64f98ca
BLAKE2b-256 48a879af2d26584f87ea262220a90356a8a96cedfd92860c4ddaf16ec42106d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 81.1 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.dev2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0428a046a4b6e9f81f7f60d8b0de4e375d27ac11e015eaeae386d9a9cf36f32c
MD5 138dbfd3c558f9db5935c63be19128c4
BLAKE2b-256 405337891ae28cb168bd206f83bac2e3c87df9827a495b8e780793605a9cc0de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 82.2 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.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c513db0a2fec960cacb9fade1f62fbf05818aa5b5be33b96a2f9d4bb9f8d45ce
MD5 03cc9c5d9c4d1ff34241e9a5342958b7
BLAKE2b-256 fed41a74198f3fa71506fd640fd976c2bde073f47b232d0f11af13344299993f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 79.2 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.dev2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6bd45a71af38d151125e95258aff7213a1ba8d5647b52c4a6751f3f44c912fc5
MD5 abef088de6b853dd32ca4b4957e374bd
BLAKE2b-256 9b22d3ba02c1d8b023ebdf7db976f81825ae890689cb50a8574e560d80c897cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76df4ef1dbd64a9b2187e1c34154a2ba4fd74bc986ebc7cbd96728c27dd1eced
MD5 412b110789097b0ddf291851438464e0
BLAKE2b-256 2d3a9d73d1b63aad5978aaae0785be71d3da970bfd61d494c2eba83e9898b45f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ecf0f1a5abb93e675395912dc25a5977404e16473b5da3875b091f979ec4c8fc
MD5 bbe6931d02d0e7ed8b872b4ef6048243
BLAKE2b-256 390f9504772de038a65c48ebccdd8f89c39abd93e92c36cc35ef12cde3e90776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37729f0fcc4c34950ff1aee24e3ef73c550e9db56eba6ca2909a10e0523baf57
MD5 286033d2feefb955e4ba39b8743231fb
BLAKE2b-256 e72b8eba4df18a2b438d30e3b4a34dbde6cdcf8937a11df2a82a8e4eaa2ac7b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f1244da71043121377142423d07d5064d40320d901ff7d8f2bc0d4cc4e07ad23
MD5 a3e64f02ba3def3862018087365a7ca8
BLAKE2b-256 637db7c994677b86339c508fd881ab8e8bf51ce90c8c4fd827878c2b7a83d9c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79517023d2021e627af71d576aef6a86b708788b6774f67c4d1ca65f0f01f6b5
MD5 3ddf6c36d560d59d9b9c1be22c34642b
BLAKE2b-256 d4f2a2048d103fc0a69c67c4c8237195f7b6ec652be3945a5d8b6e193e392882

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 98443071b69303fd74ebd4747b0e62c102c916d3dcac05cdbbe99125ffde5684
MD5 ff12303ec6b21f9e9f2fde8c97c54779
BLAKE2b-256 699a0d5ff153dcb251cd814503904fd917af03e5011050d6ef456d4bde779e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c839365d9fcdaa5b1899d10031992e29eee1bde05e96ccfe3cc7e809542c969
MD5 e0f4795485cd7961c9b67cbef08f235a
BLAKE2b-256 c6a5ed0caae7f125bc467b08b5f3bf7c4658b889fd5331d2dc8b067138b860db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84f3418208ce8d323d9808d9242cb738df5cd6186b384a1f9539fa23ad895c52
MD5 1afedc32236eb6f04442b97e32d62969
BLAKE2b-256 03af4727fccfd6a60071608837e5a0e4e3e87a640e7de3e8414acf9ea521c8f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 81.3 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.dev2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f0f462bc6fc67688f3abd983085feb9c5afc41e323864ec1deac7f2356bc9583
MD5 e4d269d8730ea38a023fcb85795d7ac7
BLAKE2b-256 40b77c28c647fa590cfbf929114ece1cc0c9608adec416fa264cb63897882d32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 82.0 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.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da2d0777943577c91981fad5ad6949ed656993293c2d6abd6dfa4bc1e40ed5be
MD5 9a708e3d48fe06eca54a0280ab9b76e0
BLAKE2b-256 ba1ba6424fcb098cc3a82f97f54f6fce171d45f8cd56554a327bfda9c4d71588

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 79.0 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.dev2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e2bb8bf9d9880fb80cd91bf330322b511322c6a2e09fdd64912b6c7d2f37ca37
MD5 2fffa8a7c85f3a1e09ff84e75baf2154
BLAKE2b-256 27c0afd1860e814bd5d3e767fb93e61304d6915831099759948e52acd096cc6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 685d7e89bf6f73c980164af655d5964f9b8b0dd93e8298f6b1cd6809a5468cef
MD5 b8a1d72cf15882fe093684dbea8de5fc
BLAKE2b-256 6c7cf7315e4611861cda2f7ac110a1f527a3ece4cd30684d18dc0b2b4a5c149d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ce23502cb806f05303683fca8fc0f2e2d62d9cc4f59b840e3251e0852b42169b
MD5 42fd9354465cfddcec43208f01cbfa32
BLAKE2b-256 fb2cecc69bffe390e04b09717c5e83e3b0a8ff94857a4475faa20eca45a68854

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0af3caefa11e2b5829e2f3a5b791922f4ad2a6e484195dc542ee9830daaacea2
MD5 52d932abb64080ade049fcce72340075
BLAKE2b-256 6b06da46a80a437444e84c29bb96637b4a14c29b0a45d5be15fcc59cda7ca8a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 63ae8348caeb6044ea2696c55f7da923851e0b213ed9398610bae71caa23f5fe
MD5 9c54b2d26cd59504a4948d2173187a70
BLAKE2b-256 4d5b983e1aec29fd0aae90a7d2cb9abdcac1aa39d5a9403ad287c0619e8d72ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2001327c377c33a6c1fd52e3ce7fbbbd718d8181c67dfdfab9f5526134c9e60
MD5 0832d9ccaf9105f270c8a09bcf19f3d0
BLAKE2b-256 242f374fc9b18c9bebd395e1f12053ddcbec76d02ca51b32ccd2751b7dd230e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4c04048e50dd6c19ac8229ada79438d151e5451d084904ca0fe54fea92d4d92e
MD5 6104452c661187b1d5b97551bcb4218e
BLAKE2b-256 5dc29936aef0c821ba8a772c6eb6b666e28c0acf81c817313fd6fb261a14ff80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d689e58bb179c076782cb78c38329555c858a45105a5196561f337d05605cd
MD5 819137d716332443d6f6e16494d241e0
BLAKE2b-256 61e242c7faaaf25ff64505bdfe4b23eac3e9f0a78a25b386ce6a5d96c4beac8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b387b4e3f56bd087d98f8e272bbb76b4e41d635107194ca17e22579afd3dc34
MD5 e27803a79239ad7a7adef7e15c4ddda5
BLAKE2b-256 c7c0fec7ad2399ca1bf0984f7ab350c8d4f0c0ca79ddcf93a30af17330bee07b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 81.3 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.dev2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1dee3c92e72d5910fa4327e1293ec1ec95f9b85426975eabbb2bf709cfa1e6c3
MD5 cc0486d5a23d6ef1cf293d0e40af9410
BLAKE2b-256 7dccc86241a53775e41c9bdc7311f4a1333bc00f1c6de5d12feb62ad8cc36a78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 82.0 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.dev2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 545aa0dbaf8554fb5f6127739f20018d7af3c1af57105848c32cd65d459e35ed
MD5 714146a099b4405c4057a9fa070e3527
BLAKE2b-256 d15ae486a156a94a300db078563255bde2b376732e71353a7ba27c132fa67fdc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0.dev2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 79.1 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.dev2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8e5e56f8538f8fee7b9dd0b019d8becefbe6ac9037b6cd79f693aab7a0200ecd
MD5 74ff623f85e2ea4e862e19d498a8b1ca
BLAKE2b-256 ddb5b2df77dc84021cbafecd01408a7d7f0c3c4779ce09ef30f966585b49dace

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e15a8286df59ee23e84a537496fc05a6719dd5cbc9ec7fb6221cc773ecfe3be
MD5 20da47bd65182480e5319defb3c43ea2
BLAKE2b-256 91928568cc746049d9fc1b28c9087493ed723bc253944c2459b22d7586a0fe3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dcdebb2deb73376ee127e89008f9387ea15e9bf3a515f3e6cc26f004d6b92e35
MD5 05279b17cb6ec19e33066308ab68612c
BLAKE2b-256 9178550be512d14a08255aad900bba5db90fb07c7d36c87b02f3c86d7f02c7ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37b0e0ee44e1f57651c77850ed8d3a27ca6868378502e793bde7e06f7f79c68e
MD5 700bf2361ce3c988cebc13966b2e3c25
BLAKE2b-256 72adb74115848819332dbfb05c7143bb00323252a27cc07166284464f23cfacd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8ed98423a96223a12ebe2704b54298c7c21603aa1ad400bfa45e8872e625185c
MD5 3334e19c5576092ebcc798b14b75b676
BLAKE2b-256 5ecc48676ab4c72e65b1bc77e73220bf53431968f2e44b7ef4e5c3d329cef245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19c44f966ad4201f86c5ef31d1f043bbd2952a5631e9050a420e1420294468b4
MD5 605159f91fe6ecadafb6507968f8c975
BLAKE2b-256 e93c5c2b285f1a6cbf85b6a461d7922867d2dd64573ea02774a7af55024deca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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.dev2-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.dev2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1509431db15461cecbbf898ea66b8b0abea2f4ff3c79c17245132cf335a1f9b7
MD5 717c0533ce508bcb1d5a0f8982ceb24f
BLAKE2b-256 137d4c9833baf574c95a32e88089eb6041f32552115740685ed8489a4557eaec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21b6caa018200d5f9ec9c0c1d5468cb2bcade50ffc5e78aeaf58c580dad67602
MD5 938b081749ba9e514751e1051897e867
BLAKE2b-256 41d3fc41e20e10730e4610773e15ffc1ea00193dac62a01a309764eaa252bacb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0.dev2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4064b4959b3fa5bba11fca71106465ec959e68ef4841756567a95386fbb995cb
MD5 b0460d4a0bc6125a5598f282d1206d41
BLAKE2b-256 0e47973a0e1f3f69f82c9a395e4912c526275449e56e0fd82fa87eee85875073

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0.dev2-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