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.0rc2.tar.gz (158.6 kB view details)

Uploaded Source

Built Distributions

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

wrapt-2.4.0rc2-py3-none-any.whl (72.8 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0rc2-cp315-cp315t-win_amd64.whl (99.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0rc2-cp315-cp315t-win32.whl (92.9 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0rc2-cp315-cp315t-musllinux_1_2_x86_64.whl (264.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp315-cp315t-macosx_11_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0rc2-cp315-cp315t-macosx_10_15_x86_64.whl (98.8 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

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

Uploaded CPython 3.15Windows ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

wrapt-2.4.0rc2-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.0rc2-cp315-cp315-musllinux_1_2_riscv64.whl (209.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp315-cp315-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0rc2-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.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl (246.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp314-cp314t-macosx_11_0_arm64.whl (99.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0rc2-cp314-cp314-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

wrapt-2.4.0rc2-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.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl (208.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp314-cp314-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

wrapt-2.4.0rc2-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.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl (204.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp313-cp313-macosx_11_0_arm64.whl (95.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

wrapt-2.4.0rc2-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.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp312-cp312-macosx_11_0_arm64.whl (95.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

wrapt-2.4.0rc2-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.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl (203.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (205.0 kB view details)

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

wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp311-cp311-macosx_11_0_arm64.whl (94.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

wrapt-2.4.0rc2-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.0rc2-cp310-cp310-musllinux_1_2_riscv64.whl (198.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-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.0rc2-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.0rc2-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.0rc2-cp310-cp310-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

wrapt-2.4.0rc2-cp39-cp39-musllinux_1_2_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (200.7 kB view details)

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

wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp39-cp39-macosx_11_0_arm64.whl (95.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0rc2-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.0rc2.tar.gz.

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc2.tar.gz
Algorithm Hash digest
SHA256 9b12213b127cac91498b6764684a00146a02ed358cd98b2d91f6085bcad3bd00
MD5 55e310bcbc53bcb4c0fa53ed3ae8d1ec
BLAKE2b-256 ac6def6c5252af2b6c23705b2813abce856826cf1db433bafcfaddbad689d5c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 4bb73917a9052f7fcbbee01be3dc2da89b7de9916dc9c50732a52b732b9d965e
MD5 370d0ff24ef968fcf7f7e6b9c07b93a4
BLAKE2b-256 0501a122159895a694fb0052b3f61fb0c7e2f9eb6a85ca49823b2dca35aecd42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 17cd9f80dd804d0d0ea6fe8940fdfe2e8f3b98575df33a1d7787e60049c172c8
MD5 dbb077797534356d68daf111e8418f9c
BLAKE2b-256 e528b4754dd996ab94b851d5a674dd900b765c6de84012e839adcb3d628b3986

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 99.0 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.0rc2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b7aa636b05e1b402987a6d647bc9212a7e624f27d462fcb25ccc8b35e8c43b1d
MD5 1f80132fc71fc6d08c191bf0aacd561b
BLAKE2b-256 4950afc549b61b3bb7225f5b6e2445da5a707aa272ceb91d211130207b1eedd8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 92.9 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.0rc2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 b9732dcf66dac8424880ed17e84fe5b6b09a9989757b5967f419a7c05dbfd597
MD5 d210817a1587fa6a7cd6bdb5df0590f1
BLAKE2b-256 cb24e735c14448467d7010dcfd05914661540ed7067606b55bfa83fbcaa7423c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 339211fdbfabd09abf6478e3443bb3e545a1dc4bef4b801589f3bb77ea256e92
MD5 fcefcd1fa40d0e3ca1c8c746b108acbd
BLAKE2b-256 9e156d172e16cd8cd7db841d84fd2fcb3d34c3236491be87923083c6e9121f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4768998c7a0996614a72c0ff468be5af80de59f1896e27db0aa8d9713245fe50
MD5 db86f2867cece3bf347c4f67d785a781
BLAKE2b-256 3c23771c59e9cbb89a80f4728b34484da2453c4935581689e1fdb029fad52b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 891bd1ab0ebd1435328d5e1d8d9e43dae3d704b9ac4335406f6239b66409fe68
MD5 3d8cd57cd14ac7eccbbcc1285d1552e4
BLAKE2b-256 d139475b1c71c2327a673d46dfd67b11b2089fb33525cbbf82225c170c588168

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6b7319e1c181406b0bb470e1be0d3c533306493f340201d8c867aa92d8243453
MD5 293ba1f5ccb3850fda38d1d042441c8b
BLAKE2b-256 4e7036bbc416c61a3f4ef5915de34c1a869d5895290518c8482fe28a1763a771

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61911c4a6227d4a778ab6d01fa86d934b339d44c49f49063fdf8ac0d190472f4
MD5 9d7c43ad1f6d9bfa44ee3fc046397e1f
BLAKE2b-256 406cccdc012b68fff79cf7cd17b312048578bd1dc5948467cedda897f3daf20c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 28045fa024f7e6877fdd8805a1d706a61a76e7a74ab60f116c2de85b625d319e
MD5 c00fb5e4c5ec99ac30bd32d121d0add6
BLAKE2b-256 e2e26742b1337730f5338207c41bee2abbf10fdb50b68297ac0dd1971a2cc490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9156041b46e3af90c53e414b128a3c957347442c4d6ebd4adb60350238e34cf8
MD5 56775d51f145190e88a9585a8ce91149
BLAKE2b-256 6325c0920e2bf555970fcc4aed1231cd8b9780e6b6b4c0cfecba1412eb477525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d8b55ad8c585f92f7f8331743a32484a0b4cb2caca3dba4c69abac98b06b58f
MD5 2334aa7aeb1703cf522c467d53456eaa
BLAKE2b-256 f6634889501ca3a9899c99b7009daf693a9946ea0a07078b5ad5bedcc84ae826

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 1e59035622177a66bd18d1017a59126827663cf11aa28e49d6bdb203d7486797
MD5 d6a9605dbc16c740726326354d50efad
BLAKE2b-256 304582a471614a530e059105e05d53a601cca8f2e6766a7b318091c765d5fd79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 d6778a705950a40eb526e2d7fe32ffaa5351b099faa0d8d1d0e30f6a6345f2b3
MD5 34b318058efdfb3aab9b2bdfbf938269
BLAKE2b-256 fb928d9fa8e79be9ca39b01a57d42defcfa4fff56259527a4719fe3c5246ec0a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 b93fa6233c2c8a7733a9ebde950baf9cb8bdc90e62ca9073571743e1a0e624f7
MD5 2ab21c76e9590789ac83c463e49c22d9
BLAKE2b-256 38bc55b7cf365827da8701e88d608ca9891bfb560ebc3681e7adc09f21371e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6867042b34866c9ca8622ef42d1c7085a5feeba3be8d8ce2f6fa912adcc33bba
MD5 05f62826e6e46f6cb96641b54bae5f0a
BLAKE2b-256 2c4a8916d1a0a685ea0253079a0170bdc87508d3005df88c9cbd7a340c81e24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 630ed778745eecec90ea3257b7a7c367329432112111dcc0df3ad159f3f6a232
MD5 ed0626eeb05a45d257ed3bc11b5db629
BLAKE2b-256 df3fc62e5e427d01f1284ab25635c2e23a0a287e99e02b95741ffa0771cec9b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14608b9e3117e90da28a40d18b83093ea2b67d11e31321f9d4d09f7f240cbf31
MD5 dcc3bb1697df49631a437ba8309d6098
BLAKE2b-256 b7e77243fad5c843aaa4c2f10ef223bea37e5ecc74c689e273506352362e9e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c534ade1c1c647e01bf6e1ff5defcaa8f038badfb939f2d77422e12eca902241
MD5 7f89b13da2e042dc13cd766b389569f2
BLAKE2b-256 790a9b3387dfae99a4799a98d2c39bf7b1f1bf4bd03217393eea509a9dc64377

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4657a3365337cdff203a12dc00ae96c9fe99855caca8798cff3c13022b5bfe3
MD5 4f6deb45bbefd98d1841da2385e51a11
BLAKE2b-256 43c6977abeaa0ee68fd75370459b48af9904b26fd437a35115d571cc8e6ec89a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ab4ed4c9d72bfee9491a4522d157ca09941e5d6e134dc2b8beb176af56628e5f
MD5 c1a2c7c7418dd262642d8104af3ab271
BLAKE2b-256 83b930b4a2078cc8f41f6ac022299443efdb088b030a4d0eb3c3092a9ac6afb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94d178a8af002e6b0bde06c6909f173cf65082de0c98c827c73e9ca503ee2c9d
MD5 7a25e5df5798f12bc42fd835b8fc988f
BLAKE2b-256 b6719d7c12514c4aefa451e3b1ce6f8afbb9e646c36349b8aa5e6a6d005d3eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21be7da6e4d4df4eae53326a304c41819a3f7cb5fde030f7f4f9d0923f5500a5
MD5 332decd0ad408ef03e7d9ca8849a6e48
BLAKE2b-256 d26f8d4eaf68adf4afbeccaca2486db0faddd4b3aff119263e62c80c570be431

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d6f4797ecbea77755892271c33e540c2b23be7c1f885a94c5bec8f4a43ff0b9a
MD5 31e16fbff9ce1a86f789a2cb0f1cee05
BLAKE2b-256 7e124c5ad1ed64ba76e8a2710d8755ac40609b36547888120544d9bb14c17753

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6e7c301c75c87b7fac54662da10ebf992d10c6ddb2e9356f1c54f75186c1348c
MD5 4de01b06de84763421c06d66aca724d6
BLAKE2b-256 55ee3631655b576928ec33cb1080490fa16a3d4a9ce5009422072901c3e01b92

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 5fd974947b79a9c539d2d8ee7ff6624b59c2c36857bb014c2209e83a32194a33
MD5 fdba40827be944ee88cfea83c56a8c7d
BLAKE2b-256 12c9c3434b2720a8f562c901df8c63f51d1cecf4d8f46dc7547e602a0142c566

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3a635886c2937c4eef21649810dcb8d9561d973ccb80a1d752bd3a6fb16fba5
MD5 8b23f7f5251a5b362f6e192509346ad5
BLAKE2b-256 76223a79b7e3d4151f2a54e045578633a2d3d0165b8e7e207a8995d25ddc312e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a3cac4e90d9fde33ce8d68a26399ebb39ccb4aef00f4b71452debeb9c319e053
MD5 85ce2d5f15347817d5b74093747c01ca
BLAKE2b-256 5695b8488d084721cf44012df7f4d1ba9bdc8ac18c192c53c9b42af4d9f4b272

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2edd76415ac15043404dba0c2a2d09212320059d1b6f8404ec54145fabd6b82c
MD5 e4440093f3a354f85e8a4469e78a4483
BLAKE2b-256 9d29860ed192136b441fe33214acae9a1e6a8e0989390f7b1f805153bb3aa61f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 73d372aec120d89908eda1867bbe299501ca04d61032cb1996fe9d07dd0d8f12
MD5 d9f2e7724958ee3313ee4485d28253f8
BLAKE2b-256 fa80adb6f5685d67029dd8b96e8b3923bf2780a2e80a1b3bbb181e50885bd5bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e0a2f5678ece5ce8125d017a4c46d0e9207a6d680fc6bf708e212457c546ab1
MD5 0781dd8a12cd06dc9b592e09bb746f66
BLAKE2b-256 5fc1f1a5044a4e528287035922fb9e9b566e6ef37c359fd1a312ada2c6bb5755

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 350c5d5af73fa44f3ce130ef37aeb39a57099b297ae79ea0e5e290cba1a62cf3
MD5 f88f4e4582670bad802a8a6b69ac2f90
BLAKE2b-256 e85c96af36814d6ff2f88077c91f35f8ec0c97e3ea620f9963c612435f6aab65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf17052c6a2b92823697055f7804c3885c496b07f6427b2b4de1a5efe07a3a2f
MD5 54f9e1d5c1c50782c2d8a65648cd5f2d
BLAKE2b-256 35dff12bcb67d4089d7e58bfe591f4117af909e43dc7ec4da0134df9123b9306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f4d28287c86c0c9dea855e9ca6e050ad0abeea1a4bb641711ce118119c3136e
MD5 8731951da7b0b81c741b9f08ac6e157f
BLAKE2b-256 312d918fceadcee91c90246d46204ace948f51a4958fdee3a7f9ca2dbac61f2e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 92.8 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.0rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b6b8fb018ef473929232b8251da04b461d24234755ce57ad32e01f9aec18df46
MD5 29341e23abb807e082d16a02b515ce57
BLAKE2b-256 fe66a75e1c01cf713281ebfcfc43bd379b6d7a625accb13a48263b3354cc6839

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 02689a883835a26f735c135cb05bf541de2fb828e89e9959c1a9602837ad22ea
MD5 a2e1d7e78ade2de35049450595c9326f
BLAKE2b-256 e292c4ff49f047a1f28b4193dc785e02e565c315c06a7c0a50f724ab0c58d655

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3010060dfb6987c14b138c3d5f6405b862c3cc57eb4a744552b9c3cbefc9e5b5
MD5 bbd642777f8d0b5084974a4cfe7df1bc
BLAKE2b-256 ad56b9b7d85d53eea0ea3ee541a3827c0a017ec261bfd65ac93550cf65ca32ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88d89b932df5d9ddbba405077eb87e564a67b3861104f7513e23dc0d25f14b0c
MD5 9b7c65999297a49927aa0d66b6f0e6bf
BLAKE2b-256 d384116c7ed4f05ada1808fa1fda4bb14412ae5ff28e1ea051733f7facbb0c00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 01275acd5b743c4bfcda2b3376a15fd65b44109e623988f752fcf56abfbd7289
MD5 00040df6c34134fb80808caa6605f13f
BLAKE2b-256 b207c85aed2f7dc3a4d0ed8f98ec94873f6a1913c0ab13f261eb2b3b1ec0c6e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f05aee80c7b26e193884f847ff66f5b88a2ac22a044d3da6c5b377783005c36
MD5 b65981a07a9f5024f2f3164310395f13
BLAKE2b-256 512e4f32ec62e8b929a9e0a69064a69c14fa09b39fdfd276e8b7c7105f218a38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c1b58ac2f62575f68292a1c38f403a3718d55ae28848750101e9a5188aeea08e
MD5 6776a313a69b703016fdb9bf0c8d159e
BLAKE2b-256 cd8273e73f2365e2494d7581f780740874929ff9b0547e9ccb7abdbbeaa89f32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 510cabab84308dd7707f2523d19c958f27ae54338eab9d9396b6730d86fa3081
MD5 112f21db8b0eb41821411020ab93f0ac
BLAKE2b-256 23b97401222c08214f6dab71d3216b19e49ff1618877bb965bd75e362131e6d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cbba4981884ba8a35a543da02aa9352d3b5f09b4b8beffa681c5ef8578dd971d
MD5 96863b8a495fc403db840a603090afa0
BLAKE2b-256 2df2530feac944cca9a7ecd6998d2d49638a02d4b18120fbd1bcc00e5c496299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6fb8aca4c9be2c7388d60d6016cb24a18a28092354eac176fadee8975614238
MD5 b854536d6fa2177779320e9d4cb5fff6
BLAKE2b-256 cdcab9700dc2038fc63d89e7c470285cafb8bc9127bd0d6f3d55c3caa8be469e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 39033b81595bbd778086e8ae4ac61995454ba964e3c6602208ba816ae8b20e8e
MD5 6d0957984b907bb485a367fd6e9d69e2
BLAKE2b-256 10c237833eb7277397885e8c234e208a7934ff9d39894469278d27511d521571

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4b80b038bea8c4786f3b6f7ba0612a96d05a54783057c3e1a70a23b5bf06a229
MD5 e748e59cc8d11c3b4b60e46968f1a882
BLAKE2b-256 7da1fdcc4a7c6003198ac246acfb8c7a4f0ed5da45081678bbbdf6d6cac0465d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 60b9317652560e5d1fe14c86d8ede009df68d46ddb77b82a6f90a9c6a16c1376
MD5 f2a1124955e814cdb04af387f5adb5fe
BLAKE2b-256 bff20764e7d14daf23ed765e186e146b0e171f0e0b492df6fa155bf18cb4bd6d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f298fce00906b93429972e7bb7f88807501c93211f279d5eef4e800ed2325d5
MD5 bbbaf5a18f3e6c49390af2974b1c0f26
BLAKE2b-256 88df6b0b5fa0648c130aefa833fda756771574c3aabae3355c94c1b3c4889425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abf7ddd72cc882ed2e5ae826b0d1fe8b827128d807676bece44e76ce45e117e4
MD5 6168e7817dfa9a70119bd7e931299728
BLAKE2b-256 9c66b314a1099be82237a5d5fa9375fe35603c181af694664d9cfb9693f8a5d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ae1bb3b6ebbcee060e949d3cd3362d8a50ee2db8109eb2397b64509a9903578a
MD5 e4a780388a81e7bd63611c9b0d12054a
BLAKE2b-256 ca80e59dc398c48a87b5d1d54876b0f819b103c49adbb14724b50e4b90a84793

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f67d6904a77557dafbe73cd5a9b57b9d0a0e033fed2fa763a70feafbaae77b4d
MD5 26d12392ca0beef8f44993d9bbf40403
BLAKE2b-256 8fa69c4303b71391a3dc7b0c02e970a0889ff4a1854e00f5d4b75c0642891afd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1eda723ccdbb7bf4d02f8406667bd14d885566e24fa2ea8ea67e1cd69527e730
MD5 1e971605e07e5c28594b5daaabfa24cd
BLAKE2b-256 7f0835f54173abdf03cad1629e11241354b87c3282dabf038fbf1865d5901968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ddaf5cf82f6125e1dbdcb46832e768ae240a9fb648c236b3707ec8403a6ae939
MD5 4ce2d1ae69794b5463c09fad53fa442a
BLAKE2b-256 085e4e805a155b5ab4dd6367d4f5b1315956256fb03b875b16d137b695287be0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4f7270c89af3b077f736aa7e4ecc927f2e58877091ca080b3d615c5a254a20ba
MD5 13ad154c51b59f3e06448bc8b88753e5
BLAKE2b-256 eebca455159d49f06c9f482ff0977dfa944551f706ce25701f8e91b3a7c39437

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41a77a3c8eb03216edf46efed2b548354061151d4b5257353657f93ece685e3b
MD5 3beba508fd57c590c3fd2d8a2d9e9538
BLAKE2b-256 d9993e98b1ca5f93bc8e42377b277fcf37fccbf0f66d9434a6e9434428e2660d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4cec0cac4b690023c12be6010c49d477f8e1387188fc9154648ce056311e0b24
MD5 48385039f5545f9d2a6d414cb6589a45
BLAKE2b-256 bc8c39ffbd1a6bb15eeb4aa64f87ff0b8363d0f105c47e6ce2b7af19da9affba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 993011897fdf8be0475c9d55e7389c2b92c1c3443f180adcae1cdc8db17cd66a
MD5 a7bd60e30fe9b744bc607b8ca2de7cd6
BLAKE2b-256 d9e0b68d0a7432cb3f3a2b069527621b344301995f5d6ab43a92506ab75e60c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86cee2a1cba4718187f1081e8ca30897390f93b6875bf75f2206861cade56fce
MD5 3982ce7a4cb761b33de454e5eeeecc3a
BLAKE2b-256 93ab4729e89bc94b33e09d125ce148728626f428087c617296461fe1dcda3f2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 118628e1dab95dc4e54e6ea86df66d9e92a1aeb7022450facbe734ab58e92e19
MD5 02fb9c25724b37b5051d573790a2285d
BLAKE2b-256 a6069c6eebca4f511205e555243ca966697b98814e62b18670e0bfd5c92541c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5cd942e516d2fda8aaac92df0382b0760e45c48827ec39f43ef753d5711ee00
MD5 3dc7cf6c0f947b4d62fbafd210c98418
BLAKE2b-256 78d037756bd2a98701fa79944d87210823287080e88cec515ec42951be3371a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d6e001b67cb6bd2eee032962f7a63babee6a8d9cf27af4a2cebecef919e17649
MD5 0e967981c7a77e474bc525bc5044a25d
BLAKE2b-256 a6faf7613faeaf96db05758b864126340e7e031cf5b44db378a4f1fb8647c937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e124044ce95f13ba14a842b4ab5935fa7590bbc769ab5150b8b26d78c48d63df
MD5 dc84696abd31a91a09091139c299dc13
BLAKE2b-256 61b0a02795591749c526d00b44056c1d04395707bc5f570dd852e31a38b15444

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8ebf6feb79ee1d60e52819b673854340f6d1ff0ceec9833e2c0e30e710c4e06a
MD5 50614e2829da420b29dc771603c98899
BLAKE2b-256 ceecb654ff86cff40de06348cc87a43c518b1e0f8cd46cd4ac12bbe94b75ec94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e47a29103ba442fcacfc51d87d63c33a1ec3152e254f51a18189f2ea8effe306
MD5 946fcc8a6eaa18f79f6df493a366b875
BLAKE2b-256 c23c5a71edbc46ad2a5c83d8746e74552ffbee782ded2c56c75dc9352a3954cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 beab2653e56dae28def6bd2e112a2eafbd7ac61e435beca1aa5462641a444911
MD5 b2e75d05c95a517b9df47f7455f481e1
BLAKE2b-256 9c73726ebf1debffdfc673b2f51c48bf5bc7c9c7831e7b9d523bb25c68cda1d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf845a38491a679dd51a4789d8dea6a402dedfc6960e47d438058723b2738421
MD5 0fdc3db83a1ba6cdcbaecf5b5a991cf6
BLAKE2b-256 fdd86a3438eff02934e4d973ce3fcbbf606b30b088715da45db1e0e40e6a4431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0f7067c939eb247faf7ecea1f5903ec9c66a78d282ced483d12b0c5b9cb1e0e
MD5 0747a8d2a1129d2c286bd969f7afd6fe
BLAKE2b-256 77ccaa524c19cacaca44d46581a892aee4125c172d96b87788902810bec37c98

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3dc2f2ef162fe0001279a3f9d908f3167ea11693a315a7d1bd3deaecc1ca404b
MD5 6ed36bffbea72b6b8963ffa0f2e5550d
BLAKE2b-256 950ade805d9477c538a486068dee55d7aeb43c54ee6c5e2c8bf538129384434c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f65c1ae8057db441ca0477a9f6221e5f74c94119e940a0d8cddc2a4fc7879e6c
MD5 cbff757f4857030150ee26f765a45e28
BLAKE2b-256 5b990089cd67a077f8a04e54e100764d38ea1057c7a1c4df93cbcf839e9bcbcb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7ffa79d6265eff8897a8c49d052687719a34692cfb8bfcaab7adaac7f8ce1ce4
MD5 75a533b1d28b9b7f2814dcf46075bbaf
BLAKE2b-256 cee9f2c463be974b7fc5d76213ad64c54312be8a7fb7da82458ed88d0d21741e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 524741b4aff8351f3591646746876b29ca98b2ec39a11e241e8d01b9c62a93c7
MD5 d086f66275537c42d523099efe653c76
BLAKE2b-256 e9ab32d443ec09d83d4fd739daa49327001327a970c0e2b4982b8b319a42cd13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ac01d367bd102af3355709d55d32a28ca63fb6607e4504b73f4a9b96c558f5d4
MD5 c728386559e6af646136ee65311a4b5a
BLAKE2b-256 67225461f7d59ebef804f496f4079ab416368118df5e4631277a4b2225eb1cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 323cb3ca0814c2163c3484f74c7dad19f60f097ef6bcc91994986cd4625f22da
MD5 896d290f38364378780b8880b9db4c97
BLAKE2b-256 7f47a951c200a09c27c81a9e87c4a41976d726adb8a5cbf37bc845863f38a717

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 279b0fa36ec06fef09d86eec30f4adc4d6fa71753702f9949b71ff192f563c0d
MD5 b0a04b8898427d817334d0b523c94961
BLAKE2b-256 a20695c6dec2c16376474de14f11e3dcba213757c05e14ab5b2e47e40e9c6241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78d4a6511501387079f90d3f39c8e5919d28ed79e7d53215afdfcb6495c7d691
MD5 dfc60688df1db3722df89b79a81a29ea
BLAKE2b-256 c783d96f9fcdf66d56991c0c490b71334470edd659d1007d2d69a69e9d81a635

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b771c2e6ce22d044bf2d021cc19d6d9f06893af4731697db4896bbffff3c1aa3
MD5 1342ef55fb1d7516ceb4591c13e7db63
BLAKE2b-256 b1c71559087d2dd9e39860c8f4e9db3e7299b20a9983652a2237523f0b025329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f0cc37d304591d7470583695f674e416a1e34e501bb402ad44202f730ce2bd4
MD5 3a918b0e2273a9d7a6b846ad4e311faf
BLAKE2b-256 eef9f9e4f4c05ff89dfdbf4450cc1dafce8cc07f3c2d3b1b85d0dbc2102e7f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36599837a5a4d213b33a1f3c7a94d3a0bd9f9f36550b59856c65019017614004
MD5 19d43d0fbab01e8820dfd76cc31e4822
BLAKE2b-256 67036f13df8dc9adc2588651e0d829ec64ddde6daa6fe20da7420c6ab214d1e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 38977b45166591d7147fe4ce0e10c99e89fdd60f6f89a0515c7558135c8f3aa6
MD5 c91078a82a7e0137ed22b5dbf7574274
BLAKE2b-256 e6689f7bec64a2978a0453c7494ff54ce1c2756c63d2c2f70435c171bfa2e37c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8ca78d3c86b798b55fe3748da30b8ca52a5b786c863966c6ff55a3633bcf9b1
MD5 575fa3f07291455c426eebebe6dbf19e
BLAKE2b-256 c959594899eb9060e775c7eb5394d3b40b3a1252cd127df253632a7a0819d5a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bf99a54ff66d5aa0200d2ba1a453049cbf47d5c488bbdace376f21f98b700967
MD5 67af4b4a0d94839e2caf4ac8cd6fb54a
BLAKE2b-256 982384c59286a01c1ad3cf255e86cd9c493dba31dad8f30ef9b7ef9a67c60d51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59a4ca59959699509fdb79323ea3e488fcb95d763d833427fdd91adf3bfb4df3
MD5 c901b362ba7fc49332f42c98de1f1ea0
BLAKE2b-256 25247db853d06342aed63c4669f2391940a306d2c421e8d338437ac54ecaee2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4e0557ff6ce8ae33b7f59e8ea0db1b2cdfebafc1370f375b10feeffbcf2ea430
MD5 0bb49c44d0084c89fda0823a51ec95f7
BLAKE2b-256 adb3a7df29671b3824ab6a6f6c694b2b9f7149fbd5926dcbbec1b13dd7adf6aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73dfc4a7f7156d325be6db84428faec09b02ded381044df4eda3fe7a7a0b1134
MD5 459454999719390efe505de27ce9078f
BLAKE2b-256 89037544e176fd81e66e59e36c824964b712b61b11d46dfc1ecfce30e7866d38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4003d62031d700946f5cda5578f22af167dab0dd73fa926391ca9d45fd693113
MD5 50b71f334f8e2199200893e1fb15d86d
BLAKE2b-256 54c9fae7246537a7e40f767321d06ccc87befa19abe9363f6751e96470a421cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ce1e865943ec3874ec1f6f13818822233c5ff5ecb0b55d392d93088b9cf5a320
MD5 512e5f82d0d1dad007413b1ceda42076
BLAKE2b-256 35e5d1b5b53b1f634f42dc11ad879776618d674a290af305ca33d8a01b12c2c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4f8f6dede8ff076601c1afea070b6d26ecf3b0eeecc95f8e90e482611f897640
MD5 dfc7d95976504b7de45138d1194b53dd
BLAKE2b-256 22f0d154186d55c4f6cd49df8fcded887789a3afe4995a781a759f480b662020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a8e518ea4d7c991d22b17ce56012cbb3e955e8ca601f8051336b62e5c6e6484
MD5 815663628a0ff09ad3b89de1ffb8a50b
BLAKE2b-256 e59bb6b5df40ddc974acdd8d3c5ee46f239a27be4ee1d7d265f8491bb79bd07f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f3f656120d086b9354ce57513a49bbc07c75fc256438c1bf1502a8a0515a172
MD5 2dde18e34e20ff52eb77d23de41cce68
BLAKE2b-256 ff290e8ec21672fb41450de6e0a9402fd6aa7e06352672c835b6e3c6b7923ad7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 517acee23aee361203f9c96370915512e07b1075c6c1b2158056a7ec6d81ec70
MD5 5ebc430e5cd893b6d7251c14c7ebccf5
BLAKE2b-256 bdce72c02551b5c3313355f24efce4eeb3799906e4ecfd6c8f84ee20af450792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 09c77bdc4b3018774bd2b167c73cac63a84659811f504c9e3df76b6ec785d104
MD5 a350e222ecfe336b87f301c1c5ee9ec7
BLAKE2b-256 5c7646c87d14b2eb13a19c90c266d1ef5acc390aae691412a88c3becc1238ef6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc2-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.0rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a75323af963e2a0983ea1261e571ca6832b3b55124b469fe63cce593819a6279
MD5 217cc7fcaf379779436b8870d10efce2
BLAKE2b-256 8ff1e721cb06663dd914fa41b83f7dbb1e7d4c53d811f975205b75c3d0a1cb0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2e586ea5228dfd9dc5313c5fa132e6b3f26874ba7cc69a05cc13bdc681bc51f
MD5 27acffd4e3e06ff8d402d5acf830d1d8
BLAKE2b-256 a80b9fbb97e97b6967de902dd0a15cd7148fc014fdbfa666d2532eb0d348a5fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a51d2f637cf8c3dcd457842b25367131e73f4d03e6187893347367fc9a735db4
MD5 42ba66a4620d546ec6e8480a5aee71e6
BLAKE2b-256 8c5a8c3d521f757f94e263173ddf8f4c4adf191ed414b0f46f49f0b9bab710b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7155525bb1d897faa70235faf3a59459be4fd515f12b7dc1df0e4140cabc7594
MD5 64b3b53a1d378803bb0002601c71e75d
BLAKE2b-256 f41920ed1e2ef291843107660d0355ce3964640ce46fd7fb18508c28d0cfdc5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 81e48fae24276905de3e75249644f559cbf74bf4e161a62b4b6055ee5abd8c91
MD5 48b85bfbaf7aa1f8717440e14165a93d
BLAKE2b-256 db80f5d6099c644a23d3e77a064547b696914f1cc4e0dc3800a5fb70939b4d7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 128be3cde6c6fd83ed479afa30957bf44bf543f63cead4d0aaa223383ec9cf6d
MD5 751c6cdeac19e6a0dd28b609d1d6b0f5
BLAKE2b-256 42e469ce246e786d4521c1a410d17573077acfba308be48311b9f76048bc788b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc2-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.0rc2-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.0rc2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 19b3550e38b13a6f78a3b0dca6ed9586f27a4b843b9849344adc1f5c3d1090ea
MD5 7e32c594557591a65e309895dd4f5d3c
BLAKE2b-256 92eec0612c51e1875e61163b95edda33070725e8f34c7a8ed4986075d8fd495d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9af5605aeeb8448cc45c01335853b7217d1aa7cb244f9f198ba850595498d37b
MD5 3fdfb16616d0831a1492d0c418f40865
BLAKE2b-256 db6020a5f0e6532aafa980d5e7489086213a2fb9fd55f854440633e3af41c518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f40670751e35395de9cce528434e08dc4be9afa35b645e2280b7f67411ed849f
MD5 9bbd49e3536400ccda89e0ee9c303052
BLAKE2b-256 19853ae3d328115da34253823095f5b82b7c80ee8395a4d28c035e62df8e3817

See more details on using hashes here.

Provenance

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