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.0rc3.tar.gz (159.3 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.0rc3-py3-none-any.whl (72.8 kB view details)

Uploaded Python 3

wrapt-2.4.0rc3-cp315-cp315t-win_arm64.whl (95.1 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0rc3-cp315-cp315t-win_amd64.whl (98.9 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0rc3-cp315-cp315t-win32.whl (92.8 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0rc3-cp315-cp315t-musllinux_1_2_x86_64.whl (263.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp315-cp315t-musllinux_1_2_riscv64.whl (247.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp315-cp315t-musllinux_1_2_aarch64.whl (274.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (249.5 kB view details)

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

wrapt-2.4.0rc3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (280.6 kB view details)

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

wrapt-2.4.0rc3-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (268.6 kB view details)

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

wrapt-2.4.0rc3-cp315-cp315t-macosx_11_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0rc3-cp315-cp315t-macosx_10_15_x86_64.whl (98.7 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0rc3-cp315-cp315-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.0rc3-cp315-cp315-win_amd64.whl (95.6 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.0rc3-cp315-cp315-win32.whl (90.7 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.0rc3-cp315-cp315-musllinux_1_2_x86_64.whl (216.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp315-cp315-musllinux_1_2_riscv64.whl (209.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp315-cp315-musllinux_1_2_aarch64.whl (226.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (211.6 kB view details)

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

wrapt-2.4.0rc3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.6 kB view details)

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

wrapt-2.4.0rc3-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.4 kB view details)

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

wrapt-2.4.0rc3-cp315-cp315-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp315-cp315-macosx_10_15_x86_64.whl (95.5 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.0rc3-cp314-cp314t-win_arm64.whl (95.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0rc3-cp314-cp314t-win_amd64.whl (99.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0rc3-cp314-cp314t-win32.whl (92.9 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0rc3-cp314-cp314t-musllinux_1_2_x86_64.whl (263.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp314-cp314t-musllinux_1_2_riscv64.whl (246.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp314-cp314t-musllinux_1_2_aarch64.whl (274.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (248.8 kB view details)

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

wrapt-2.4.0rc3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (280.2 kB view details)

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

wrapt-2.4.0rc3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (268.5 kB view details)

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

wrapt-2.4.0rc3-cp314-cp314t-macosx_11_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0rc3-cp314-cp314t-macosx_10_15_x86_64.whl (98.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0rc3-cp314-cp314-win_arm64.whl (92.7 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0rc3-cp314-cp314-win_amd64.whl (95.6 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0rc3-cp314-cp314-win32.whl (90.7 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0rc3-cp314-cp314-musllinux_1_2_x86_64.whl (215.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp314-cp314-musllinux_1_2_riscv64.whl (208.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp314-cp314-musllinux_1_2_aarch64.whl (225.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (209.6 kB view details)

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

wrapt-2.4.0rc3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.2 kB view details)

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

wrapt-2.4.0rc3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (227.9 kB view details)

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

wrapt-2.4.0rc3-cp314-cp314-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp314-cp314-macosx_10_15_x86_64.whl (95.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0rc3-cp313-cp313-win_arm64.whl (92.1 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0rc3-cp313-cp313-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0rc3-cp313-cp313-win32.whl (90.3 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0rc3-cp313-cp313-musllinux_1_2_x86_64.whl (213.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp313-cp313-musllinux_1_2_riscv64.whl (204.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl (222.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (205.9 kB view details)

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

wrapt-2.4.0rc3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (225.8 kB view details)

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

wrapt-2.4.0rc3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.9 kB view details)

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

wrapt-2.4.0rc3-cp313-cp313-macosx_11_0_arm64.whl (95.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp313-cp313-macosx_10_13_x86_64.whl (95.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0rc3-cp312-cp312-win_arm64.whl (92.1 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0rc3-cp312-cp312-win_amd64.whl (95.5 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0rc3-cp312-cp312-win32.whl (90.3 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0rc3-cp312-cp312-musllinux_1_2_x86_64.whl (215.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp312-cp312-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl (224.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (208.1 kB view details)

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

wrapt-2.4.0rc3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.1 kB view details)

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

wrapt-2.4.0rc3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (226.9 kB view details)

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

wrapt-2.4.0rc3-cp312-cp312-macosx_11_0_arm64.whl (95.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp312-cp312-macosx_10_13_x86_64.whl (95.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0rc3-cp311-cp311-win_arm64.whl (92.0 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0rc3-cp311-cp311-win_amd64.whl (95.4 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0rc3-cp311-cp311-win32.whl (90.4 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl (206.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp311-cp311-musllinux_1_2_riscv64.whl (203.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp311-cp311-musllinux_1_2_aarch64.whl (216.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (204.9 kB view details)

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

wrapt-2.4.0rc3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.0 kB view details)

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

wrapt-2.4.0rc3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.9 kB view details)

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

wrapt-2.4.0rc3-cp311-cp311-macosx_11_0_arm64.whl (94.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp311-cp311-macosx_10_9_x86_64.whl (94.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0rc3-cp310-cp310-win_arm64.whl (92.1 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0rc3-cp310-cp310-win_amd64.whl (95.2 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0rc3-cp310-cp310-win32.whl (90.3 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0rc3-cp310-cp310-musllinux_1_2_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp310-cp310-musllinux_1_2_riscv64.whl (198.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl (209.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (200.7 kB view details)

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

wrapt-2.4.0rc3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (211.4 kB view details)

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

wrapt-2.4.0rc3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (208.7 kB view details)

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

wrapt-2.4.0rc3-cp310-cp310-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp310-cp310-macosx_10_9_x86_64.whl (94.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0rc3-cp39-cp39-win_arm64.whl (92.1 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0rc3-cp39-cp39-win_amd64.whl (95.2 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0rc3-cp39-cp39-win32.whl (90.3 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0rc3-cp39-cp39-musllinux_1_2_x86_64.whl (198.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc3-cp39-cp39-musllinux_1_2_riscv64.whl (198.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl (209.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (200.6 kB view details)

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

wrapt-2.4.0rc3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (211.3 kB view details)

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

wrapt-2.4.0rc3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (208.5 kB view details)

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

wrapt-2.4.0rc3-cp39-cp39-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0rc3-cp39-cp39-macosx_10_9_x86_64.whl (94.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.4.0rc3.tar.gz
  • Upload date:
  • Size: 159.3 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.0rc3.tar.gz
Algorithm Hash digest
SHA256 5d35ca3defc63f8cb70e6136aa4859b3af92f0760de140e8113dc1236c9ade66
MD5 7cc67496d09d506e31e04cecdcf6c998
BLAKE2b-256 8d3895fbd977880507e634a85b7c64349a92c8a782fd28a1ea851a82cfeeb507

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc3-py3-none-any.whl
Algorithm Hash digest
SHA256 cabec983624b6980d36dfc032904d815a6cacd050dcde33d529eb2a2fd6709f8
MD5 eb1efcc06a453aa2c86b96c76d085815
BLAKE2b-256 3228871db2661ad0c1694f234d09bfa3344c55d3d706fb1c0d08f657d591dcb5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 43508915dfd291093dc1893403e50556a750a401cd54a288a2e85151dadb4e3a
MD5 8693f7817118676f7a7e7f9a0ce92ccd
BLAKE2b-256 71063bfc5b76fe70377fd1c350e4df9d206c3103abf701f973b1e5179ee7156f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 5539179233ca3e627e2bffeafeaa25e511ef45853da81dd1570068763df4edd7
MD5 fd38eef144ef919c81d9f35b6f4f7dfd
BLAKE2b-256 12643cf34acbd58ae5f9988264b8be71aa97cdae4bfb359b2974f30af1a3c7f2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 134b9fc364273bdcd2977867c69c7e0b7cfa37387fb15f27cda992cd3486e791
MD5 d640bbce94d3d90e5bf97d94a3dd3dc9
BLAKE2b-256 2961c7ed27008f1f18a9d8b0bee1e51bb508fa6c82330798a846902e4543f529

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ab8e0cf3c1ddb0633c3f8b6662f0ce23e86fbadbc5dcdc211103cd99700fdfd
MD5 ba52e4b1df88d059610be47af4910947
BLAKE2b-256 e4c94c96a6d49adb3948618bd67a8a9668e12ef98df181935928bf1b64c2172a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d58332c47dff58ca5de3f0240330608f98fb299aea1f453cd8acfb6efd934c0f
MD5 83c2e19ddc47ac1c8e1324a4a7e4d476
BLAKE2b-256 6fbf5bd9fc0d3a9202cf18844a068435d20595a1e149e2d9514695a0a4bc2029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ace96984ff4a77c0b953c43fc4120235477093a8e6e13bdf5fedbb0e99d91ef
MD5 b5db236ab68a57c53fc888274321f8f8
BLAKE2b-256 efda8f8ca5136cda5caa4fe1f4f863999447ac7ce1121253f64ecefd2d2d4d72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 29d5778c2780c63f2a3f715551b9e8aaafafa12d7a29587994072126e6c97a05
MD5 f28175d71ac6e6e8913d5a8f24aa9629
BLAKE2b-256 97dd5e5ced166db2adedb0ae37cce7bdbde90f9b8b12b52af1b7945405155e3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29495ba426d53cdcdbc9f5211b38dcae43eb2a192815727540b962934045688a
MD5 c457f70be01c356fb589a62698a257da
BLAKE2b-256 3e07d9f2bd7cec239ec0339e57fa9d3f6d282b183d73135bfb6c8fb180278b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 519de0d558aeaa974930bce030847d790ed3ff93fcd35f27e447704b0b03d93b
MD5 2930f77a681b090082d055c09e568dba
BLAKE2b-256 dded6d1cd5baede41c630b8ab3567cdd9c138493be455c97264dc147b19b1f4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e208a56bf0f88deb7699d4cdbc10604082310c445034a414ad45e7221d39163
MD5 2b4548f3d24ca6972ef9bd863b8a2314
BLAKE2b-256 6a45c6cad34e31ec5dd12dbd65097c36ddcf35e3ac82ef19a9df0e4c677779cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d6688abd05ff2a67b1b239d014fd01ad154110b31a162f9d8a50e9b0e98eb478
MD5 17c32afe3b2737b1fc7d0478daaa2ca8
BLAKE2b-256 5aa68690a0cae64ea80f4a7e69747df2ba4e3fb8b02d50d02f210e9519388f1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 92.8 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.0rc3-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 0211adcb808599c8e955d6eabab3f019f9794ac6ea5e3fc46cd0edd35701cc1f
MD5 44915e1a360cf67cc46558fcbfb0ebff
BLAKE2b-256 e7570074f2b6c34b16eaf7ad596b5ad27e873f6de97c96fe93f0d7ec1a927779

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 95.6 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.0rc3-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9158f864085ed29c8e179089ef1c8c6dc22fb7eb1c74f4fa98434652d5aceb8d
MD5 29fbc218bcd08d46faf1753184617a68
BLAKE2b-256 4b326c69bd74475a79a34d7c321d13cf9ca302d5a783c31e20261a02f0913a3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp315-cp315-win32.whl
  • Upload date:
  • Size: 90.7 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.0rc3-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 d88a9aa379f5451dd378ce3e343600b3999702b03cf49c169d5f284bebb11e30
MD5 ce6ba6c72bb40b3908862bb603dd5684
BLAKE2b-256 26e37f6ae22aa31df3fb97a8404f2ea8cab40d3c120e7e3309775ed8b3cfb1c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 634b04535ea032b7722ae6b3fe437b84ca756b675f9205ce29b3c92fe856e936
MD5 1828b546d9e60de22b1e74a268217620
BLAKE2b-256 465d51c66a9ca9d01dd03fbb35e51bfd84fc99bfea83498aa8231e83bacaab64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 760a04b296e9063769eb3ab8fb1c09e955ccfc6e670bb54b1a896daf41e3e13a
MD5 2144eaefe7dcda51c62aacdbbbd019cc
BLAKE2b-256 b4180a1b060c991a315f8bfa7219dd4b87fc7ee0800f6ef71b2e42785f712718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9eb7b34eb445479ada1c1dd8775d6d1e96b495e6774bb72fce07ed9959d01ed
MD5 4d13a29fff3297d0397f6364a52485ea
BLAKE2b-256 cb3b5860b6fa83a9aba4a562d11293218822ce35ab41c90457046ef19e9956a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 56af384248395f6f45a623751df400f6e291b949d2b112cd178056ef6d6ec227
MD5 8efe4031e7fee8f58ae60b9e1f058c18
BLAKE2b-256 92b7c26b0b92ef5bae1d32b0497eb6a2e272773630d695d900d368c4e712883a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f875fe60c6e3d66922191568cfca917c227eb05b173999cbc485dfbad20b80c1
MD5 09fd27ce5e1f02b4f0dcb8d5c6f88bce
BLAKE2b-256 81b5e722f9bb22f5a00bbfb8ce8dd44523ab720963e93fcc42e51f13bf1c7765

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 64bf5a34cdf9777bfb9228ebe37f59b7efc926613e6bea969f808df0af9ec009
MD5 2e53701b2c3d531553443998156bf59b
BLAKE2b-256 391f8a4067cc3ecb828a1d6217a7fee9e9e8272a33d70993a321dc8afe816282

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57a2bcb3ad29b41134d8173cee5e38037c645866f60b95ca26b2f7b380ae71e3
MD5 052717899a3a76a2e43e730295c907e1
BLAKE2b-256 623cf8cc5a2ac18ec4db90a9a35283ce300863d67e4e69a96bb63aa8adcd1464

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c7585ceff07235abe59eb86b572b8a420f6fd24745f426023baceb5aa603b79
MD5 68d546e11cd421d65bdb9e6164c95bea
BLAKE2b-256 1766731a1764d8d886546591a8b013a184ef41671e7e1ad456910d4d0d436127

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7a24e772755ac31e1480c36d29c3cb78ea94962051b71d8d08133c37ddb2d53c
MD5 dcd611e42652c1c279ab7426cf961ef3
BLAKE2b-256 0e4ded005bfb0f3a1f1d83ec2644853c88cb6dd8e9fef4f92ae7a39dfef8389a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 99.0 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.0rc3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 87944a3529c6426f1cb777f8c75d9c8f73ca882c6968d2ffdad3ad82729d5542
MD5 18fa882113d3536fa6f2018133cc53d5
BLAKE2b-256 1aa77fac5eeb972e7f58cb49d745bb1f2abc991f292d81e3d81823b5cc778162

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 92.9 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.0rc3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8158e1be58fb16fc7f4cbd6154314af8c9e6808911c9e8e8f3e7696087e532d5
MD5 17572296a9b4251994d27e9ddb242147
BLAKE2b-256 fd3988be276c96c977aea78ebcdc4f74b1d493080d728236603c42e2fd8c64f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fb42ce76a24cf9804b07f3cb6a8fb55ad6e7241c6e0d8efa40074fc7e5b3d42
MD5 d972ea00eb7fe15a03a548b0290d3e4f
BLAKE2b-256 26d058bdb82f504af35d1cb69a26e4f309d8b64e9209bc960a3a593fd8d52026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7f0472210f8bd6370ed875f632fcbe05d2615752295f62d7b55eb11217f903db
MD5 459062c6b04547e62891a383274578b2
BLAKE2b-256 68ff2980d548bbcdf7a0ce191fe3fc651b4aa4b9131ac2301d604ee19c1bf153

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5f5b92d8e9308b9a4a54998079c80a59b74b416c0b7b3eaba88a6c909b6ad40
MD5 739b14d8624430fccc110a67123798a3
BLAKE2b-256 edb5e63b7474d095ba30a36d16376f504b60dba730f41efc0fc69dc182231084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4abca528fa9d61cf3e36dec0511997ee26c11766dc887eef53a64dd42c70ed35
MD5 5eadb1f6e68fb1e84d7d2828a96f538d
BLAKE2b-256 4f7a42471862ce50c4d0f00f89b0130ca1313571bf36e85b59aed9909635a40b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0fe3d90492ebbb290b4d3c4b7759bdfc4a31e1e3ee0134028e4216072257fba
MD5 740af7e14ed5e9df0fa2ccba817d2e66
BLAKE2b-256 9bd25c95d99c5160a46eaa1398394c7934e46a6fec8330dfa60d5974f4b6f58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b85f0981f773d2ef2f790fd5d121a3ba0002549ebb2f961262226de94498fd4f
MD5 c271e2224e669c2dd8cba22f8aa274fa
BLAKE2b-256 b529431b5260a8fe82abec8f0adf64ed321f1eb4b1601d0eb16068821613accb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f84bdf914046a0a67b058e9d6378dac2d39bc9b8b93d495e446061fd0885a3b
MD5 85eb8f2caf4e28692f1d0a1c4d7029d0
BLAKE2b-256 0aaa54152237cede409d4dd366aa0add289c57c6a0b8b62ea84bdf155950fb84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 aa70aec0ff4ed2917d229d261d1717d17d203f4626a2e51bfbd870e0dc15e695
MD5 af7d067ea2045c0f8d6054ee3f92683e
BLAKE2b-256 4cfb0d852beaae8991a7617b01c3e79bcc80c8ca58bcb01fa455b861945e3c63

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 92.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.0rc3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1a44eff9d6b5fbe1697ac7f669c550834db103aa7cb44235a498b772b681acb5
MD5 19ceeb955e9b517ce1777714e2214ee3
BLAKE2b-256 b12482213c78d28c202e8dddb70c6a637b309b19141e637a839cd0cec2f06c50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 95.6 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.0rc3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4da17e0d0edf809144bdacdd179bf7c9c71f57eefc3c82d35a4c0e64f6bc48f0
MD5 a1cc9b0cfd5ad1719c565b2815b4fe94
BLAKE2b-256 f1ee1a58d2b0508187ba526cd4e20f11b7aaedda02c5ed4cf4ddc7d14a076180

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 90.7 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.0rc3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 282e5384fb349de5094676d1b031735df109af0879bf3c360c334a28f2ca21c4
MD5 98a34ebc755e99a21c90f4d93c27dd50
BLAKE2b-256 440f2f5d2cdeab3f207b57043a880a05590a262335ce66bf17ef5cdfc6d15a91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f9ed2e2a96a33453d73100768b8d168f22e9ccc54163c529e9f774bbfebbb77
MD5 49941fa1974e10e8a4d06fc4826c88ce
BLAKE2b-256 b0a96440f7914ac2c5e7880929a21ef67d6139243825a6432a17ffc2339543aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8f05acb1182d38b18876e3e00750c6b1e3e2fd917b482e1e248c2dbf8c07ecf6
MD5 8c16ca1ab7f1842883c48c0012df820d
BLAKE2b-256 f07e9ee3232d1a10d16f9db78adc952ed0edc2037e3d7bb303bde046c5b1f09d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a817e3b05096408a2536c1195f10927b1a6192b78bd9c0ab6522b8b560f0dfdd
MD5 bfec9f3476b3850373a57b7610ed7324
BLAKE2b-256 d2097e8468403f42cf69718cf9edf785bfa225fc5d6d08a1fb8459b5e3e96bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9c2bb9184cc446b993390b7e64825dbed942cac1a45442b9a077650a2b31cf82
MD5 ddeb195294ff11a4e248c5318dc72e23
BLAKE2b-256 8c9484cf6dcce933d37e5b86fe7dae1a59a882e26ebb51685a95628c6c47ae90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73d6d9cd61ae5904f33d78e87e4838ec97e971b7948c94900d1a3ca3ce8130e9
MD5 d73af3465a62768dd46af7bfd9f38d7d
BLAKE2b-256 6673dd45772b378859efba41647c3fd34a4fc44387cb73de9783682f40397e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b3429d7c88fdef51e1397464ae3409681289f77488627baf1b8062e923d6aa06
MD5 a54ecc5c598d17b5992a383fddae0efe
BLAKE2b-256 27f349d9d566c537f5014beb67463c949f1b2a0c3022618213e214f6574cfa03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70a59fd66367e232a8b3e185ce2325ddf7dc91a4bc0a26e12cfb1001e056aea5
MD5 d718f622329667c7f8b7dd9aed590d4e
BLAKE2b-256 a4ddc493880fde58a69d071eaa4c811d953e97921f5518446533529ee3e49d1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5490efb747a725565fb828a1b4a6b9e2eb488152d8d3d4838a063745363279f9
MD5 7af0a08b7a5ec63b54c86fa09212d66f
BLAKE2b-256 4b65172fbcb622a133b2a8b4ecbad914edeef60a8aa85293c86175afb90f28b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 92.1 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.0rc3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a4e8d651c5b9c81492431b7ea877b4715fbdb8e1caf8beb22981b482ec8eac32
MD5 9201e663b4d31b67bc20ebeac831c9cd
BLAKE2b-256 34ee08cdec9b71e6c1c16d909da1bcc3472e572cd7dde909043b565c4f3af032

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 95.3 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.0rc3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2c17f371efb449ea4b780bc6c2384f2911c4a7df70b46b44ae20629ae8080514
MD5 61c9621258832cca12803c7f3a88645b
BLAKE2b-256 d54aa2365d8b34e1f355180a5e6d556f7d0867fad3acfe44438dd405010030c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 90.3 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.0rc3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6d6ceb364e0c000d0ecf33908e364544525eeb96cfb18f4d24506253faf2e791
MD5 d1e1d75baba57024f141ccee16d1a581
BLAKE2b-256 c291fcf88eac58b3a2bceac9f755d147870676e45ece729e65e98b8be48ba04d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38afd6ce36fe3e089e12c33f9a18c3d96de46e2d633fb4d8f97f2299b2f87c61
MD5 53a116580e5b7eeace19e3f71f4c3f84
BLAKE2b-256 aa122257e057fcc8457bf38aeb62eca3acbd417b09d8fc6825e5aa8d4a83ea0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a0ae57022359182b7218a9be1c9955d9cad3605f412e792e5be367335c9d68ba
MD5 1e16d6d81c84f44010ad78e50247f83f
BLAKE2b-256 3a4ca84da27a2d46fa7c8ec08060489718bde451e01110f97d08efe3ae8a3005

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3fe6402b666d25dfac15ddca4d3ecf00c9a3d2a3b3d66a00d577c709b498d14
MD5 9394d22b65878aa14a62d5501651d2af
BLAKE2b-256 98f8a6efa772883a76acd5add360d833777e2aab3268ae30a5461b87c920dfcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8391eb253255d2c68bd216ac31c3b359e540cc73bdf83c7e243aa286aaa19201
MD5 5b27f8a6aff71ae0b091f2e481428bf0
BLAKE2b-256 d05b6a2b5bf6d0165bae679bfe5ba1066e9d20eff9f5c061d20655c5b94ecfeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 580d199b0df4750935f95a47c439c6d84cf1bec7155d184fc2d2eaa0a142ec34
MD5 7304deaabc198637afbb80316f266c1d
BLAKE2b-256 73648241f7606fb13b31996716712c5e6afc580c27c246039a95a531126ac920

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bcc830f91c477747de8522d3f28b3eb9eea529469c1f746cf4c26e5fe8fede91
MD5 91173aba2b5fa2522c059d27fe0c04f6
BLAKE2b-256 72b3b6e9e4b2779843fe0baed84bc2487c00958bec35e66e849a336e8c746d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 708e8e593fd3538656794a1f183872206faa5b5b0ee498057ed4dacd0abaf40e
MD5 001b50dc202b1af13bef9ae959574828
BLAKE2b-256 4de7a2ed00040913ad0b4498f4a182822978fb990d0fda4bd163e40e62fa4974

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6a57ccfad43035f6348067ac0897aa6192ed90584a89d9e57d4498893b9c9e66
MD5 c40b6eed2605fe3bba95a3ae6bd5cc41
BLAKE2b-256 e0a522a768bb5a87c77f155cc1b9a3c58e70d9cc1f577fddefeb146bbda9ae70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 92.1 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.0rc3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8a2a70bd5dd5545682aa35256f8ed46d2d654635ac4b182c595a74e9d33b6cb1
MD5 4be601dfaf68a1dbe37c7fbc38f2b5bb
BLAKE2b-256 92491ce9484c3e6071bd6568029102da67395369d03079c3606d636a2c4f8bcc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 95.5 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.0rc3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe25d9f9f5bba02e5f9001d71712de4c2b62b10d3d9a9f34380ab8b0ad200d55
MD5 89790c3c328578ea2fec4347ec4f8a7a
BLAKE2b-256 b0c6e821eb77d74d692f6b6e168f615a6c72dbd8a8106ac2c7d26fc79324a636

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 90.3 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.0rc3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ede6de78251b83f0531b578108ca2a6382010c426cedbf5d6f8410389d375430
MD5 fcc0c252b93c5a7c0a7aa68e1f9dc7ec
BLAKE2b-256 0a50d9251501f6fb064eaa114bbb1fec24bd12170f96c6af947c73ac1b02574c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f141fa0c9ccd17494f52ed054d13213ae6f15a49d1d8511278cabd1f886d7b8
MD5 1f8678b4f308a2c02cb93521caad7820
BLAKE2b-256 addc3af5a1aa71ecac2185af0a35277e0efba28a4e9284713a787f29d5dc4d1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a91e753b38c959a291b064e744ff69af38291c707180eb3446f3fe4bdb47559f
MD5 3a98b132cce44f94e0d481c55ee881ab
BLAKE2b-256 08eb165e61abdb75d78d4b32bf76ffca8313839ac4d8ac2e566bc432aba63bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9083cf51090041c1459a73c74f1d04319899a9a7083ec282b2b6521d4d4ef101
MD5 6cd8e53d4774f314b71bbc2dd7995737
BLAKE2b-256 095d99f18b35f63857680c796a44ae5d99e40ee28006f2a748f170609888ef58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 09ff1da6d02aec1fe1b735b431a0cb03b204002625474857fe3f8b478f0531ce
MD5 75705cf2e980cf62245d852ce29c89c9
BLAKE2b-256 41ee0ad3cf055fa824c50d6d72a23a08f05352fd0246f215a480d15421325532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7468652ba99497794a335270a9b83f973ea33bafa02f753e177cd9c19652d67
MD5 4b8b4359ea25c035c84a21be22abd933
BLAKE2b-256 0d76a89bd5be6a941f8d8675c2340dcfce9a1e46bdaf148702e996e476780208

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 db6433986823138182f348a4aa4ef01d323bbbc54a2707c9a1e2b7eaf38e24fd
MD5 ba2b8c87f76d4c12c49050f84b28160d
BLAKE2b-256 ad9932b6b3dea468c8db3da824caaa54119a2a28b726e0d36eda79483865127b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6221a5df93753297d58d9c608c43c7f363edd032bb4db0cf60aff21219f609bc
MD5 5e52b46ec466cf21356560dc1663191d
BLAKE2b-256 2be812fd9041b5342f063381c3b7a471b06bc673258d21d3446b4a079b4cd2c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ad73d124fe90e99784faf4d5919ead2dee0cebe7fa28bb89285b9dbdc35811f8
MD5 ac01e5f57d1414fadb5b59c4f82a6d13
BLAKE2b-256 6d60b2b1068e20a64864a3b491f74d7396520931ca070fb9e3e98b9add93ed94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 92.0 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.0rc3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 793f76bcc5e80abf1c48937e780a367a2a24e81b14e86055553edf7e26f7ebf0
MD5 fee2d9a1a99b8ae71d245dd74cd8d441
BLAKE2b-256 79e0e930db4ce2ca20634bbc4e719799f37a7f9e35283ea3f071b36fc05ac0bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 95.4 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.0rc3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b644d85405bbdc5c48680d416ce939042cdbae177a9167e8d51a124a0a310fef
MD5 bdf88a101976542265cfbba3fc37ac5c
BLAKE2b-256 4062c05fac91b286ccf54cafd446f9a349c4bca429fe49bcda1f06b94b57b6cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 90.4 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.0rc3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 55c8baf87a8e5ef9cd44d941c58b9911515a1035a5e5b23434800091e1e8f10e
MD5 b1a6c783c5fca5928fca26804edf8551
BLAKE2b-256 11b3b21e199c05f7cb2ad0321292a3452fa0061a69aa703ccb8232a00b15327d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c86d971537214507e799a44fcb39696de20a747966efef921a7d3c0f488747fb
MD5 7d92c048d97b5109dbc602057dfbd6ea
BLAKE2b-256 aeb9f6fa4f8689e121d8f419fb6750ec32a882107b60e7ee4007f68a9586cbcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 55e1ff15b25ec10934d7b55e78df291f7393c683fb412569785b6b8bd12cded6
MD5 012362f1170151608e441c020ee83504
BLAKE2b-256 37adf2e858af633e30f90ca9ee796fcd084c209db1b51d42162d90109c27429a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8dfa85ec6a322e9fba3c5351454a82c45671f41df5f7c23f505522313c5819f6
MD5 aa300da1842d4332f916f15dc9ea35e1
BLAKE2b-256 0785b2f602d1c499074718d51f2a8988a3e36eca04f281df70199043c051a016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2678ac30c90404ddc6b577db8cd68d4a9ba1ef99ccb558eea4e4f46e945ee6f5
MD5 3c844576ff4f21d08d78b4fdddda42e8
BLAKE2b-256 e80102b0d675cf0271b50590f6ff46f6afec01620b95aa95e51ea77855e3f44a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 228cbd0061b4c1abe377f94be957f018f8da2dcf579ee8d35d8b5c013cb3697b
MD5 58b6ad5fb77a2769667bada712ba7173
BLAKE2b-256 c0d09030c79b66178866f40805977574edd40d22fa3bdb06577e7f3f60c1258c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8513b2457ab31b5a948e7076faf34ec6905d3b6fc415ed92147c743e56712d4b
MD5 21807f812fcb9365db3c0e8de6dc2146
BLAKE2b-256 23b80c59eb1d3ea89113f3df8211f777c60a8658775b2853d0aff9b1fe3d7ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e4b96edf7ba3dbad77881a728e1300d88efec44161c571ab0bac5f55fc5d0b4
MD5 b20bdde6e79a6de7a7ef2327a7c97edc
BLAKE2b-256 dbf0fb7897c21adb90b0b99b90c292bdf265d6d81560eeb79870c0eec9ac8a2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62abeb44a4d71cd0421c73686db4ca398642b2371ded3b265be55278e278062c
MD5 65cb422f74a11f6d15263d7418462e43
BLAKE2b-256 c20a4e1cb2d302956bd37266284900a52cac3d114b5842742f024ccbd97e66c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 92.1 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.0rc3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 34364bafcbbb84df1eb18c9315db2e61bec02e88bd1f0ee1375a9c521ad42d36
MD5 84f96c046eba1e371f0dddaca637fc17
BLAKE2b-256 0f2fd84eaebce3eebf29b6f11299a6286cdb9093339d5a03f0cbc925d657e4fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 95.2 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.0rc3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f69fdd31c600dae5dfd9b938b5cd67bc2f33fe6bf03e0971b8d23800c7d2cc07
MD5 b30f8f2f15fb0ad320479f0a6ed8241a
BLAKE2b-256 15b0e43f462129881a211c90d67607934f93762e088e9bef436b3e3bd2ecb075

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 90.3 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.0rc3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c3e4a00f7f175a15c04a6d124c8c1034f7b60f1ecf380620173428b5c11598a9
MD5 41ca9f48f3c9c2de9cdca17919547410
BLAKE2b-256 ff6cd319b49f22d55a6c9a55e91b81db41a7a4600b6f0a7e3125a084b4e51dea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff472a293c451f81a9cada2c4984aadff94313386f58d0213ff96fae670fdefe
MD5 72b1bbbcea5d114b7588baf1c5d9f45e
BLAKE2b-256 c36c003a228e37f4c0f5aa0f7361cff69c100da75f9b794d36903c31e4013b97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7d47f71282706893d0fc20026cfebd98650e8286783f9f5df99df9265a8e64f5
MD5 bfe7c02b9a041221e185c214bd1bb927
BLAKE2b-256 f765dc3a2384946094048762b30b1a7f562690139acc4beb72ded4672b7fcad8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cef0304b4a526738b5c7e25d8ede7058c7b56946c20554aa7595d0c886a687a3
MD5 b39cf027078c7fdc81c3a03482375851
BLAKE2b-256 1e6337a54c8c1771a68e729a66e282913a487cd4a29aa999248751104cdc0607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8166f2772919492ab95f5ce5e1965312872bb26d5d53712ab0083b8ba5e6a126
MD5 34c378a0c12e919749daa8275af0841d
BLAKE2b-256 7fc082518975dbabba680cb6f93b4ed96bc3f9910e4988590333ea1ecf241be1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e0b60147434c00910a2b0c927c590a840671e3b3968a0099650b04056f666915
MD5 a80704ea8560c5ca401ebdc85f6a5047
BLAKE2b-256 a6c22cb1680d735a8d3da7749b245e5de1f6e354f7b2860e8ee4509ace71d5f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8ba254e313077501b56364619502f1c75ebca8a52de4f080575281b424e5ee89
MD5 6edf5af50ed5ab0c1f0bb4b6c0ccc543
BLAKE2b-256 e7ce2eae1d3d8c72abd9813069760bdea8aedbcf749e63c4c8ffdd670d401999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49a1d5a2650d80a2b684b5f0af4419932cdbc3cfd5e65cc09e3504c301ed6b52
MD5 c2298334a24ff86df20400555bcce530
BLAKE2b-256 0f0ef007b5115060e63ac0f6351a4040f246febd4e858c8d65ceeea494279b7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d00e64a5a8aca8e6e78d287c0cdb11dcf41572348a0e3867c826952720a00aa
MD5 4834f15b28d570ba20e4688bada3edcb
BLAKE2b-256 06dc72cbf425b6bbf6cdbdca92ad3602fb54e8b87d10d0ce41bd4e10e42ea27f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 92.1 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.0rc3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 093857b915bb3fcc780cae1e5e0ebc256dc06f588cd1da6f1cb9c0ba43bd4d18
MD5 39d0e25fa28c7e1e03a597399342af06
BLAKE2b-256 721bc852ce274209aa6e5764027c18da10c5e6341da6673c61892d52d7f0d3ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 95.2 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.0rc3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 89406725cc805a6b0080e67ffc59507e6b752b749398ba57fab40e4e779e8ffc
MD5 5b986a0281d7734668cece2ebb6467d0
BLAKE2b-256 5baec8610290ec1f3c151bc98e1d6a207f3aeb26a2d1196eb5dd7965ad945ccc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1f8b0dd6a73919d4c74cd17513947d3dccf4246f02b0c0ba25c6be0e0ab28951
MD5 e35120cd0eed4256e6b06adcb2822fd2
BLAKE2b-256 3c0c21291d36df4b1aa2096ca0f511b81fca0f750e174e425394a28b937df606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 096afbc44c8d61160f0f7bb7aa458f080bfc92915ac09e1771137c325d5edecb
MD5 600c70af7dd190d0165e6bb1a488c136
BLAKE2b-256 9f41667270e423ee69353ae0956c9abf1f652aa8f1483a002cd9ca2a64da1475

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b33f11a05514e777657d5c21bb775b6bc1513f4f18a78a1ad44f7e22055486d1
MD5 e5c6682374bf2f6d37b4920d0c537347
BLAKE2b-256 18ef45c56350fa511f123b7333263e237350946c12d96e335b6e6facaf085e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f843cab7bbde08435551d025830c9c0ebf6ea741bb5dd84c3ea9035171eeed7
MD5 2afb2e6e566f3e818012cf26bf59662d
BLAKE2b-256 41a39ecd09b53538975642a1af07d4fcf31209a6d20a49dae1deaa50807e6678

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 add9258a932c36149cf2f48ef3e6a641a52927e22d9280444ba8e2f746da785d
MD5 1a6d6924ebbf1e249c78ef7eb1cb85ae
BLAKE2b-256 8766b03f5ba67205d598ac447701dfddb23171728ca6d9dcdf96757f6a88e16d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7df5a3f152b0029ef923379e2311aa0ff71585b3397280273b1efd393411dec5
MD5 e98bee53e6fe4b995b1af6c204914074
BLAKE2b-256 882f723289806e58c793d1f85b9f792cb80362dd900697a8f4958932f04acdbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc3-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.0rc3-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.0rc3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7bd3dc2d99eed5364175d49fedba34c709d6e7008355656f5b1a3bc74ad8115c
MD5 6ff60585404a61af07e387200f9db25b
BLAKE2b-256 d5c91edee5c867a039aae3df28317b82e602262068176464f0e8123b61cf9b68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afdc36f74357e3453ac6a52f556daa847d0e6a0deb000b5ae07e9a1836ddf858
MD5 5a592da218696fc6e70f5e44b0839fc3
BLAKE2b-256 6c122ae2fd14e0652827bd38c237ced3aa61d3ba54b5783cc1731059811d4150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58d453f3f91716c515a89775fab117ed9af77d50813c1fb51b2818b2b0443887
MD5 c41b36a9de4df8ec7090602488a42e3d
BLAKE2b-256 1451ed643807073741b7f96b3cc330f1188986829fa9df3781705ec9edf4523d

See more details on using hashes here.

Provenance

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

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

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

Release history Release notifications | RSS feed

Supported by

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