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.0rc4.tar.gz (160.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.0rc4-py3-none-any.whl (73.5 kB view details)

Uploaded Python 3

wrapt-2.4.0rc4-cp315-cp315t-win_arm64.whl (95.9 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.0rc4-cp315-cp315t-win_amd64.whl (99.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0rc4-cp315-cp315t-win32.whl (93.6 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.0rc4-cp315-cp315t-musllinux_1_2_x86_64.whl (264.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp315-cp315t-musllinux_1_2_riscv64.whl (248.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp315-cp315t-musllinux_1_2_aarch64.whl (275.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (250.2 kB view details)

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

wrapt-2.4.0rc4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (281.3 kB view details)

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

wrapt-2.4.0rc4-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (269.3 kB view details)

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

wrapt-2.4.0rc4-cp315-cp315t-macosx_11_0_arm64.whl (99.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.0rc4-cp315-cp315t-macosx_10_15_x86_64.whl (99.5 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0rc4-cp315-cp315-win_arm64.whl (93.5 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.0rc4-cp315-cp315-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.0rc4-cp315-cp315-win32.whl (91.4 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.0rc4-cp315-cp315-musllinux_1_2_x86_64.whl (216.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp315-cp315-musllinux_1_2_riscv64.whl (210.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp315-cp315-musllinux_1_2_aarch64.whl (226.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (212.3 kB view details)

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

wrapt-2.4.0rc4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (229.3 kB view details)

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

wrapt-2.4.0rc4-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (229.1 kB view details)

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

wrapt-2.4.0rc4-cp315-cp315-macosx_11_0_arm64.whl (96.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp315-cp315-macosx_10_15_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.0rc4-cp314-cp314t-win_arm64.whl (95.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.0rc4-cp314-cp314t-win_amd64.whl (99.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0rc4-cp314-cp314t-win32.whl (93.6 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.0rc4-cp314-cp314t-musllinux_1_2_x86_64.whl (264.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp314-cp314t-musllinux_1_2_riscv64.whl (247.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp314-cp314t-musllinux_1_2_aarch64.whl (275.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (249.5 kB view details)

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

wrapt-2.4.0rc4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (280.9 kB view details)

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

wrapt-2.4.0rc4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (269.2 kB view details)

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

wrapt-2.4.0rc4-cp314-cp314t-macosx_11_0_arm64.whl (99.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.0rc4-cp314-cp314t-macosx_10_15_x86_64.whl (99.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.0rc4-cp314-cp314-win_arm64.whl (93.5 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.0rc4-cp314-cp314-win_amd64.whl (96.3 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.0rc4-cp314-cp314-win32.whl (91.4 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.0rc4-cp314-cp314-musllinux_1_2_x86_64.whl (216.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp314-cp314-musllinux_1_2_riscv64.whl (208.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp314-cp314-musllinux_1_2_aarch64.whl (226.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (210.3 kB view details)

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

wrapt-2.4.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.9 kB view details)

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

wrapt-2.4.0rc4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.6 kB view details)

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

wrapt-2.4.0rc4-cp314-cp314-macosx_11_0_arm64.whl (96.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp314-cp314-macosx_10_15_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.0rc4-cp313-cp313-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.0rc4-cp313-cp313-win_amd64.whl (96.0 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.0rc4-cp313-cp313-win32.whl (91.0 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl (214.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp313-cp313-musllinux_1_2_riscv64.whl (205.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl (223.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (206.6 kB view details)

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

wrapt-2.4.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.5 kB view details)

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

wrapt-2.4.0rc4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (225.6 kB view details)

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

wrapt-2.4.0rc4-cp313-cp313-macosx_11_0_arm64.whl (96.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp313-cp313-macosx_10_13_x86_64.whl (95.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.0rc4-cp312-cp312-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.0rc4-cp312-cp312-win_amd64.whl (96.2 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.0rc4-cp312-cp312-win32.whl (91.0 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl (216.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp312-cp312-musllinux_1_2_riscv64.whl (206.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl (225.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (208.8 kB view details)

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

wrapt-2.4.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.9 kB view details)

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

wrapt-2.4.0rc4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (227.7 kB view details)

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

wrapt-2.4.0rc4-cp312-cp312-macosx_11_0_arm64.whl (96.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp312-cp312-macosx_10_13_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0rc4-cp311-cp311-win_arm64.whl (92.7 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.0rc4-cp311-cp311-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.0rc4-cp311-cp311-win32.whl (91.1 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl (206.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp311-cp311-musllinux_1_2_riscv64.whl (203.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl (217.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (205.7 kB view details)

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

wrapt-2.4.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.7 kB view details)

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

wrapt-2.4.0rc4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (217.6 kB view details)

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

wrapt-2.4.0rc4-cp311-cp311-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp311-cp311-macosx_10_9_x86_64.whl (95.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.0rc4-cp310-cp310-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.0rc4-cp310-cp310-win_amd64.whl (95.9 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.0rc4-cp310-cp310-win32.whl (91.0 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl (199.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp310-cp310-musllinux_1_2_riscv64.whl (199.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl (210.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.5 kB view details)

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

wrapt-2.4.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.1 kB view details)

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

wrapt-2.4.0rc4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.4 kB view details)

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

wrapt-2.4.0rc4-cp310-cp310-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp310-cp310-macosx_10_9_x86_64.whl (95.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.0rc4-cp39-cp39-win_arm64.whl (92.8 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.0rc4-cp39-cp39-win_amd64.whl (95.9 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.0rc4-cp39-cp39-win32.whl (91.1 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl (199.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc4-cp39-cp39-musllinux_1_2_riscv64.whl (199.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl (210.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (201.4 kB view details)

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

wrapt-2.4.0rc4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.0 kB view details)

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

wrapt-2.4.0rc4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (209.2 kB view details)

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

wrapt-2.4.0rc4-cp39-cp39-macosx_11_0_arm64.whl (95.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.0rc4-cp39-cp39-macosx_10_9_x86_64.whl (95.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.4.0rc4.tar.gz
  • Upload date:
  • Size: 160.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.0rc4.tar.gz
Algorithm Hash digest
SHA256 30db8049a4a221d2955aa73ce7e20d4c21202fa362188b8edfbb821084744e17
MD5 c184724bd062a2be426c37c945987798
BLAKE2b-256 d2cecd53b1ec28fe64af93a09c81c8a5be8063984ed53fda84cebe5bcf57f3c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-py3-none-any.whl
  • Upload date:
  • Size: 73.5 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.0rc4-py3-none-any.whl
Algorithm Hash digest
SHA256 c871be704d48dd3b31c52987680aa6a43f85327316825e4e6ade41d9e72df70b
MD5 2cbb4b79b01e05051de2b0495ce5d6ff
BLAKE2b-256 66ed62d4742b5f9838a60b3d19c1db1f978dc42004bb9bf5e1ea4bde99a368b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 95.9 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.0rc4-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 f69ff635b8e0849a3beb396f6331ec2716c42fe252b5d151572ce9a34d3783d1
MD5 07e89f7885cf0745a5658dc52e1c7f3e
BLAKE2b-256 4d3123ff2e20260d8a55f5b29f3c9383f4fe3a0a90100d88c184689ca9061766

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 99.7 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.0rc4-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 9ccf7bc81b0cdbd404e6ed254a8f1219343edd35e6f113c1367345fe274637f5
MD5 90ef192ac58d77281286db9dec2352eb
BLAKE2b-256 cbc5627de1b4080561656d830967630c1f9d2bb63b109752e771f83852c3fc4e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 93.6 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.0rc4-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 a211d0ec43bf973209392bb248b095212ddd0c3474560e3fe6c1879b5d2a7fc8
MD5 572e05d6fb75dcf0b42135de3ccefdbb
BLAKE2b-256 29f3ecaeb3b529ac7f00bb232f517da212ab48b4a671776dbbbde570e0d508c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6df983ad17f04a71b783d4e87cea8b8890a47c5451d49ff802916b1fa368365
MD5 cd29be73aac71b0fdcc2cede2ec4b519
BLAKE2b-256 dced0c1d9ed2b42175a0e3f2343409230a03d60f5c06069dda44bb785802dd6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1b6896214625d0d28a58accc192ed24f5b65ecd8dd95ae16dda155c6380e917b
MD5 1ac8f43d32a477e6f5ba6afef0eddb57
BLAKE2b-256 df69f6c48d6b88c71fd9c9165f97979b71e48db60438c19b70f735dcd93182c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f81ee97623a479e36da5031e59aec54b50f0b82faa87d96161c5d5f78c548e37
MD5 8b93a738130eca2f178395a22de90d99
BLAKE2b-256 85ea6f1794fd6e9956e1018bed14e1a26f6119b36838ed9966ea3899800310f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 97ac0b162176474ea5ad2639c85e3fbc52fd55cbb8a908b6aff25567fd74371b
MD5 94c75aa686f2fbf9abc3fff339bf8bd1
BLAKE2b-256 c7d61938686d75925e747557080a4b2a6418bf24bcd85b90a407d3a0ddfde4f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 724b1b99c0012a89bd96ee2bc69ec1356574c61253c96e148fdd29558f0e6165
MD5 30f30dc7f50a6d0c024dba58f2157b67
BLAKE2b-256 f2435c825d25b30e4a88dc9c9c538d181dee0e293a0ca86e5c1cb073ef6826c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3caa0aa2b8beb9d4e1f55eae504075ea77732ae17daa7d21d5aa2b731e4c150f
MD5 5dcd5c9f59a3bf8f2b1bcd9d1154e72c
BLAKE2b-256 e4840b5f20e840f58c7593be63480231bb451bf4d398b2d573ee846fc9d1ce5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eb4cb4685526cccbfdc79c27a042e98b9cf632e4d2036100d20199b02fc3305
MD5 7ffdb5645840db6b82703701f24d3d53
BLAKE2b-256 e120446be5f2c43483be1da1db00601b776742bda931a5eab07601fa94897dd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e80f949302ed1a6a7193a077bbe0042e237c0c5ed167a7bafe57ab85f3a8568c
MD5 808258e1b8158e0b21c9db6f701f4ff2
BLAKE2b-256 3eb41d7e481bfef457b84a6fd337dc70b28723abec8c458b64190cf217354b80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 93.5 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.0rc4-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 aabdf9c413318128ecece63eccdf28fd9f4b3bb9fe410914fab4b97591d530ac
MD5 5e75e70796a73abe708c7e14cdc0bba7
BLAKE2b-256 eae13a93df81fc57fd70d1d2b0db8e1324324694ab2c6e11886fe8e98f49083d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 96.3 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.0rc4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 1f87e2a09ebb239f6ff57cb32137fb120aa6e638dc4a1822d3d9ec5f091793ea
MD5 fa384159d0047b51231920ea93f3a438
BLAKE2b-256 e1d741f3a21962be19db0ef0ae27090720855aeae60c022c62092f3c976db0b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp315-cp315-win32.whl
  • Upload date:
  • Size: 91.4 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.0rc4-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 cca6f628028a24db823f6b6fd80c783070b2fae6b0b863e0c8c609cc1a39849c
MD5 861920ce0277754e06b2696c91ed678e
BLAKE2b-256 66595c65371ce4482a1fff063589e59cfa39501491fcce0c8219f050be010d56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f52ec86a56323c8c3ec0edac5e2c2b4e973e45d7829217f3a60a8f5c66fc12c
MD5 03700b1c740402bf1da0fbe0d20cb71e
BLAKE2b-256 64ac27b7baa798a32f503ee46a4d2d74e9a0785da1b3f7f8c830b9cae5bcf290

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 42c12166f0edd34ad43ab1004a9a856fc95302a386e18b3f316ce499b52e20e0
MD5 6b15d0079dad787ec27740768dcb4b16
BLAKE2b-256 8f6b04c601828207f6a954816ff5be0367655469ce08c8ddc2977f7260a0fe5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 996d1383b8cce5fcc5010e1bf66d598580c28e320aca7445b727d7bd8214df09
MD5 3baf9fb85fadc5854a54c762ec9f18ef
BLAKE2b-256 ff43c00464252ebfaa899d75efb260dc7cf3b2fae4353f5c85cc4bafbbd405f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cdad1e6b1856963d40dd3795c353f7a878d0888dd4b0dd589e88ea997a2e23d2
MD5 ee63f1c38e2f134f2684691df02b2660
BLAKE2b-256 aaabd292f3e567a3856641d4e6c564d59a023684c60451e4428151926609d719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44489de0e72f5d3331f33f5da01b64759daa1f09235b47a225b0321fb6aa3114
MD5 a83b8d066b35f758b0a679a370d505be
BLAKE2b-256 325a8f6d1e2e8fad5894fc2f2921175f4a9330d8d86f5c121f35a8ed7ed09165

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 76cd23fe6d28acba5aafa018ddfb8b43e2b744636c413e83fcb94e8588813780
MD5 4a71f660142778827b84b0700b7a2cd0
BLAKE2b-256 1fef42276c01758922fe0abf5e80c7feea13ffa3231ebbfbcc705f2a39764e1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45d1bf6cee7dd7b5ae0eb575abda2376cd3e76df0edb9eb962f24df984c3d94b
MD5 f78fdbd408cadd53adb7e4c7a88e3c73
BLAKE2b-256 aa098c594405574e5743b0acd8e0db726e15c80839a1f94727b759162cdf8c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 80e4ab584fad2a7708bc0aa7e0483b68ff53f02113bd446ebbf90242fd76b7ef
MD5 f8ebb041ed35fefe29e8f00042f2e19f
BLAKE2b-256 ad2b03ae5fefa04a2c6c9b28106fe4b28681b90594d2ccd79e9c333c23fa123a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 95.9 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.0rc4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c1dad911c053652d897f3da47807acc008e7bf337fc34139870538c2fc88f7e7
MD5 61d34c762af5e043b0cf16d603f8d901
BLAKE2b-256 17d80edaec5af56da1012c0a698090b2aa172a6eab12f4ec4e427ac64b3ec3f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 99.7 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.0rc4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 513c24fcb2645a06c5c0fdc1358b697ac344c96e1bc755fb11e71b9ddd1129d1
MD5 f0d1954112c8940f9bd9202a81390b45
BLAKE2b-256 751a9b08ba32011f5d03149e6bb2c442a7ff7cc040e9bbcf05448f0c5290369d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 93.6 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.0rc4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ef66107ce8fb9b248d84e6ed35802499f3ad22653c7a75ff4951260aaf54bc63
MD5 321ab7fc7b72d0fddd22e1a46852a4d0
BLAKE2b-256 d2e3fea01944f93fead879224c691216a2b718e0b719906036c6a283864747e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d95b4afc75768326678de8ded5e12a590a7ecd8c18d7f59a837b173e4b531c3
MD5 b6a3c08885764c67045092a789c2a7a6
BLAKE2b-256 b7317253b6bd1bc204de021304a8196da845a2aacf930201f017fbcb53040bb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3da99ffad60ba1afeac95d692195c0fe874c3492f1ca24f83ee861a304c791bb
MD5 3867653cd0d2854946b93bf66a7f77f2
BLAKE2b-256 aba21515c9385e329bd4b0c265a773ab8c78e37196920846c1021df4d032ce20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a0bd48a8937cdfe87c5271dbfd35e7d54e8dc831f7901809bd4750d4ae261ef
MD5 1e0f612c5831d475a3f169c138f0bc1b
BLAKE2b-256 c6b1ffe8d819e2ed98613b4346408c367d1bb4c22f52f81f83bc891eef1ff635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 05cf1188707a9d2640ac41ec06f34f58d50ecb6385a1ae72e1e25246ceeabe7b
MD5 33fd30ce16e783f43385c956e851393c
BLAKE2b-256 6d8cfeaf075af33f0bd3138e3d37fc8013fb05d216d11796293cfb784dfabea5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5dbf9cfc343a3728513309ec59af3d7c0393bdcdf12eec4243574664fc5f5ca
MD5 c5dea49389356cc7aa522da3714489b1
BLAKE2b-256 a1dd8513b3caea8f38bbe202f37b27309890d6409267a76cfba71d9a0a8f4c5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a57e33f12f950e50cf74aa38cb1291a7424d5de1e40638e71753313e6f824b37
MD5 74e3c9f387969c95944b217f14667547
BLAKE2b-256 ef7ebb9ccafd0e22d61f3d28a36410171287c2e722512529a1f9eac184c5bf50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cb281db0224ace5c8010ab09596dcdc6f273fe86a74d1a28531c9b8ea2ea5e0
MD5 651aeb591deaf9c5f469b889335132a0
BLAKE2b-256 02fb0ffd3404fe61a47c89605da9d416eac59f22307ed6ff853a8a9fc00b7f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe510062724d7894469149008c27a8e55d70c89f562fb71c4c732d279ddadff0
MD5 9fda79e1f680a6a634793fb201e0e1bb
BLAKE2b-256 593caa66174ebf466bbd1dbe1e94b3b690b7b56ede46fde6852c99a8c9aca972

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 93.5 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.0rc4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bda31ffdfbd8c064a9ad1fd51bab54b5f02dc99434ad90d9eda1266c8569a059
MD5 76c96c4245036db48cd5b4abce5989dd
BLAKE2b-256 94e99496d0c69f3ff6d621cdebee98b547c324edc930fdb8f4ce8acfcc8cbde8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 96.3 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.0rc4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a132f449012d6c36ac45b3178917723817fb372d34744143510414cef965eee0
MD5 0d035dad99adcb02b065c2c71174d715
BLAKE2b-256 46c824d95721d4dbc55e5cf0a16e8f205ff9027b358f2f8e9e6d1a68369486e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 91.4 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.0rc4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc1810ed90511e265ea43ba45735a6094d04a9a92f365c37cdb736b90a94ef06
MD5 107e94aca69268fd3523ce614a51979d
BLAKE2b-256 91154ddd96b182205bed047489bfc25bd4b5616f0b8ea73bd7db7f770ab5e36f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8573090563d17ccb369a87c74d3f84da8d5e8b6133206e05195f86916b5bc79d
MD5 8f3ccaafd1e37e7fa8d4e8d22b79a3c4
BLAKE2b-256 062f6045c41997c41cb3c35b2df66074bcc2f8869b3a8361f30b9bfb19388f56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3cd53b3aaca0b3c4adf5021e75e7d80cf76035b526b93fc338f48780da305384
MD5 a660d3329216721fc0c28c0ff2c60a04
BLAKE2b-256 b20bb33ba704bfa55d21ba9e413571c32517cdfb6b7933a4f2feaf8d5538134c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a58d2567af68f63a6c7a05d1c37fe971113ec4ba4c4a3c12e68de50641df846
MD5 738cddf74d595465402cd97ab436e4a1
BLAKE2b-256 a93a132a17096eda7ee69b4a3306748befdae1ab8d822264ddb19c856df25450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7b31c1a65a7b5e78282ce4441221ccbd5ad415d35ba9787eedad39a5f816f451
MD5 242d2fe8b9d96e4b7e68fc4a70cc8409
BLAKE2b-256 9b02cf8b981c355340099210c8d9b7c9595345e543080e2ec16cf97b48e4cc49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19b254f29084d9e63b0c46260792e4ed0a1fed9c263694221d07a23ea16c5dc8
MD5 16c2a9c583060dc6980b03ed42fa09a0
BLAKE2b-256 f3e17d1160d345daf2390b1f0e6dbd8221ec39e01b08a436aa7b5cb4d2e06624

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e027c07d2233e107a24e30b80f1b7542b2107b6c93281de2a8d9e33b88c1f2a7
MD5 2106ff93c9c7f9c959c254e085c2c0da
BLAKE2b-256 30d37572557d4851ed18ba78153eced051803ff61c836bf08ac9954285254880

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce98ac261b92619a8941db478996e1cbdf6df5304d092b8601a0cbb7e2bfbc84
MD5 c59ba87aa054a1a8870e345721b51856
BLAKE2b-256 0e7f3045fe9f1f07d404b351ab203cf0776732087dbe0b8aa843d617d7a9edb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 315193250a477d453af70ebfb77f04e1b38b6a4ae338d9367d8ce551e2dd9815
MD5 bd9edc3b13fef06242c80dc0e9ace50f
BLAKE2b-256 314519cb65e80616748e979dc2017fc9a71833d548f3c30de38f9075e43dbb7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 92.8 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.0rc4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 16318ba5905e524f30a81a8729e2e76e274f4eb0f0421437ec99d2e10c18dc8b
MD5 85807072218c8d00d1c9d043a8a47aec
BLAKE2b-256 b206554636d19cf4f6c3048881682b2936e7f1fd3d056890d17f9f522352813c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 96.0 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.0rc4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b8046dcb2b3dc278b741e05df373c7e87d65135de908d895b08377df5cdaae29
MD5 9d2d6f050acfa7882d613bdd71db57cc
BLAKE2b-256 b4424a8ef8557caf42908019bdcc9a458a5fe373909da78b5f0de4315de8ba27

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 91.0 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.0rc4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bd141bf8fed9dc78783522ea231383c3b5130a474bd21b353b6171cc456ed1fd
MD5 179f89275f4580fdee67ad1bf40fb020
BLAKE2b-256 af4e05a9e407ec329e6073bc1696da2369930846df035001a3748c7352d385e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 315fb721d2655185b7d50bdc2ee7874e77f0b32d4e1d13fb9bc9213b0bc1b5f2
MD5 2f85c57ecbb1f1177539633257e9fbc0
BLAKE2b-256 840a7e85f6c4e45f86affe36b15b7608a5ff803370d8d8d7891b359097754726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 701a4138cd712ddc634113d1677525ea3c4a4e9cb752c34b29f6a7db31f8e217
MD5 510cb74bd1cd734a8a7dc19cbe5cc784
BLAKE2b-256 edbc918e0e5d35b7939d42678d6c0dba279144455eca6090631bb8c986730a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fdc03fda9cb7f1be7786a5ed44c9e4646b7ff36cdc31224a53f4787ef2ef02b
MD5 6771993c7078f1281cef3e115ac23bd7
BLAKE2b-256 9410e0acff2e02cc8eab45b0cbd444123f0a26310fe9ed419bf95152262d304c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 50c7f851422252148c3953b3baa7eaf4aa771424d92fbc25d1aba936d323f13e
MD5 21b3e8a0857257256b89d3616ca5cff8
BLAKE2b-256 953aaffb653ba7c375532ac053423dbcd6cd54eee83ea8f235e5a5f988437ae8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd142b584272453cb569c417ed6cc0ea63ffd32cb8d4f9ce8b8990f95008dc13
MD5 a98c06e21a533752c86a48be28481bc8
BLAKE2b-256 8d2b967f1af838d0002c71b7ba5d5c10fa50acd49e76466db06b6943583ccbf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ebbd1c0f2f2506535eb1c4869bb051e3904833b1427d144487a1a308a97d4b9e
MD5 b5aeb7a68e258fa446257ce24e44b292
BLAKE2b-256 f3147aa5ee607c4d7c0767b1982be0e2551e2c57d252033bff22868986ee962e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eabceb4a4e8c4e7d8f41c305301c590fbee5f6622674425abc5626c52d31ff46
MD5 ed9481c0be771eee3338f2926a66eaa4
BLAKE2b-256 3164d4cde3bcff46510f8703b52a33f0ab5020086f5a9cff6acda2b2ac3cf032

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 47f416360285fd19c397e64329aa191838ad81b98bb5b74629cb74b87a4709f6
MD5 f1e5e7e7cd293948473da74f6e25b043
BLAKE2b-256 1c8a9d97402f36b6664de29926498e3fbe4ecd72f05f927dbfe01f22d22f372b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 92.8 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.0rc4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 06acbe939d2bcbf96cb643c00f4a689bc2d2dd138a664d25d93a00134066a755
MD5 bbe8177056eb5a69102bfa788a144651
BLAKE2b-256 bdbd9d800871216fa4d3bb5f5d0e1ba4f663f13910e8f09d9a188bb364732434

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 96.2 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.0rc4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d60fa6d7d3af9dc182299502e4ce945f2e88b358040f25f356fae6ef3d0924e1
MD5 1a4341a291bb87fcc6b518ab0e68ba7d
BLAKE2b-256 fb01940d4ed12d5824e3ee835ac95addf405259a64bdef241ddb333c286a5519

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 91.0 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.0rc4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 085be0d23357c427b86869cdbc4891e8f09959a2092f54104c768fca86828001
MD5 c508837eb75a25b4ae109399825a0ad6
BLAKE2b-256 367e70c8cb8f8af0c224ea01da3961a918c45d013d7c42ed42457190367867c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 546fc562285696b0a44fa740f5dde10d79d60be7cd4312b9b143968ce49b2fb0
MD5 74295beacc53dd6d683709136bd900ad
BLAKE2b-256 245aed006febba4850ac6ec658362dcb441b5d5fa26ea8f8d0265a4139982275

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 466c0e25f9b1f73c5ee62fe9dab35124ecd037b44865fe60da03f303346af6fc
MD5 13ecf32917284be8cd617b82baa5a5de
BLAKE2b-256 38e156b9e7af85b4cd364dec99d3b5524c29f972f17d8fb658d1add8d550d3b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee12b21942b7229b2cae7257474de6e07ab7b7cc6de9e0d39ecdbfbe318a4741
MD5 23f63904875fc7c70eb9dad587d9d2fa
BLAKE2b-256 96bb83ba492bceeedff7a1aabc4822d30150d110478dcc4b53ef22d6e29fa2c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b10da351fd025a1649eaac63d0f7765baa885290384b7598d5425c5999b65372
MD5 9883db19046b19db0b14d2eb2922e92f
BLAKE2b-256 19e2d667d88a1f871f8bf61e5f92f72946df0d0a341f52e81ded9290c7e28b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22ca9f9ee23e3e42f276ae84bda189b9bb22309ebda9eb52dd8d38ca26a794fe
MD5 69e43af973fbd83efb2a896e21ab3a76
BLAKE2b-256 96c2ca486d34d350e5fcb918d8c1b9795c7cb0f7d7515257d9288da0c9b117cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9cd0a4af3d7443dfa5c2e79227f7518763247a960221e500ae30a7bb39067920
MD5 222c9fc07ea75202027eea971818e206
BLAKE2b-256 4f1a1e0d13141ff58cf1afac011c56920258bfb7e09e52a6b9af87c080550f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93bb964771dc58580a2be8144e12c631a5b4baef06c04dff047c3e7c3ee05720
MD5 9ab249f4621cfc6e35663174e6db9601
BLAKE2b-256 8de1abd0540f6517829087a43a9a552154864ee337678aad1673cf41d0350888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8827afec9054bf6a6f8aa297c8a8c6c7fcc1578b49496c185128af790b78a225
MD5 0b701492047a0d36d3b97d409b9d3774
BLAKE2b-256 f613bac3147fdb5f4a29cab8ede8e381ce4576e85c71164b1c30d8518b0690bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 92.7 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.0rc4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 67c5dcb935b19d6dcdf7ffc55654205b2212afcec426d0b7162c85a01ee2c428
MD5 9a15cd400293f679f22cca6925e960e9
BLAKE2b-256 eac97586039a6aee9078bc1e6173608a2c6ca7d6e6bc35a4b7d19c338c627368

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 96.1 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.0rc4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d7948c39a7ebc728230d66e8c21ed595a6cf5c2551cf83dca890e5ab9891367e
MD5 13b85da8e853ec5792a809ac09cc77ce
BLAKE2b-256 86615909e726877c652376c808e25dbba257679d35ceec812408faf5d4ecacac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 91.1 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.0rc4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 383f081cc1faf3ec9cc658cb2e777fbaaf081acd27d64c828a1645e04845627d
MD5 75e98c1aa0e55987b83dc22cbeaf5925
BLAKE2b-256 b4a1c50f7115d3f6a059c9c82a63234c1fc6aa51a74adfa2061c770de4187580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5c55abcd6f9610acd346a3c64afd9e00291de6a7c7580f54ff0363b94ec296b
MD5 1c85112a6a04b39903a5cfa003324a72
BLAKE2b-256 b676dff98fa73714e58d19d8319418866431ce6a97b545deac367b3ffd1007a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 acb7407083c3997b4e0e76ab2be45ed15f4beab4002fcdfaeea4d140be23c23a
MD5 14ed64c341b7a25aa6db6601f61c93be
BLAKE2b-256 748c49680e1704eee061188bbaf33bb45f2183c09f918b3dcccf7080b6ef5dd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c940fc7160f711b7a972b8f9309e5ff9ffa40f4a7c6d1c47bb7f05ce0116bbf8
MD5 dccb0f06daf99869fbe479cf17a1220f
BLAKE2b-256 d8a46fbe59a3f12b9ad94051fd0cb4c43235d241abcd9d76cfb27438839ed283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b001c84625a5e1c10076ae73f9e824573e279a753fb49216aa055f048b41eb0f
MD5 48cffcb501d75d889b3e24c153c498e7
BLAKE2b-256 13f65c8ef0699e3f050b98ea74c2dfbc2c2c47eba8269d2769fbec7a127278bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab0efda7e3a29ec1097741e2bd23db61df377e68cd9b070e3dd5146112fb471e
MD5 6a95307805198e41683a9c592552103f
BLAKE2b-256 e593e9f9f129894cf091ed7c28b520a87629e56f8430b5f6245b019fbec979a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 89ae085d04b6154b1311911ff0220dd4138a06f09ab0dc02a7c593803a69eaac
MD5 de1f05b16b11f080e73d8f0c4dc88343
BLAKE2b-256 2efcf78e100fe8bd6b4bea38995364ffff18be21e690ffdf03d798b5eb885037

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e10019b97adec1b626c58ad06858c845e1361dae348ed625ea604506f3e3629d
MD5 3083aa4c31fcffd6c88b5d1aaf0239b8
BLAKE2b-256 b549e755120c25b6a80d86a554b7c7479ee859afbab34258cf8909685b3f4ee5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46176217211e8e8fec6518205350efcda4557b2c204a1209b301c80a4412c5f2
MD5 41d99544e0c92368534fd68e7c6544d5
BLAKE2b-256 7982d7a8d8adbcb0c6a2b9ffacfa70756de5670da1457d7060f31c286b78245e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 92.8 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.0rc4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 38bd58c0ee8fe4fe23cc9e90d4d649f96ca55de4c1906d8f46905533191fded8
MD5 18bf9d275ab498f9ec4f66551ae66e49
BLAKE2b-256 6db2429388353322867680fda97e51c69bdc96785d331d4d7240e29b70c33c4d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 95.9 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.0rc4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6fd8f2751e7a684ba2ba9ce48c6baa2c06530faf3ccfac0cbe3d95d0ba5e639e
MD5 7dad890bfd37e5caa0408e27d7b5757d
BLAKE2b-256 69a55f2946a18f9987201cf1fde418507eed3465876b88f488c6a05d4875309c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 568a810eacb0d9bbe91ec2181c9dbb76ab90d83fda3c8286ee62a38d2c31c3ac
MD5 6ddc73c456f546e2669bc178851b5f55
BLAKE2b-256 c9f633c1470f1241263a3c739c154eecb7e7b3b197082f2f8249e4898dc879a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03f80ac3b04d725b8c5c8e07eaadd496cd1b0fc3a04683c5f9daef0a76427741
MD5 c2b67783de27e79a5755a9a4e924bd99
BLAKE2b-256 113184b8c8ea690cd1162d201c8af86ef28679109c9644d836fe2845c1ed44e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4bf631f68aa87f2af11eeed40cab89db8325a24046dbe177ff1f653142d876cd
MD5 b990f161e21a880ac32d31970ec05a83
BLAKE2b-256 f070753b26045227e64da64889e7144cf0ec7b5e9c6ec5104c47028286383f16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7b518d2eb840c137c1ca38771c4f828a23f29f23d8a3d88091426759e35f78d
MD5 1a391d2233fe81eacaa798640517a886
BLAKE2b-256 2eb59a7a3fb30ae1568abac1d7a4dfe93dc183dd001c7f32b18ffec1bf419eac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a26ec1d0624ee751f2d0b3c86fea1f1e51e490d7d58be14705e005dac9e62293
MD5 01d32628ca6f7ef6c27db675e4aaf5f7
BLAKE2b-256 fd0eb3236f3d32510b168fc200f7f0942b90fa1a08867f83fddd74bf39c32a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e01ee667b87492ff2a9a23fde74623a130e7892a22b620db2ec398d45bc320b5
MD5 d7b4df8fa7233afea6e22fcca92ea505
BLAKE2b-256 32b1200905790e2332075685d0ae58432ecfbfdcc54d331d5da65d4aa08b4f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9a04346a76e397e86efdcbf2ea9712917dd7d2cc895542384149a4cb46589df7
MD5 95febea216edb907e61361ab257a7532
BLAKE2b-256 7f792a63a294287c186ed3a7c06ec7b8d5caadbd4df0b221abde7c5b40094aa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c50e073bf85e74130ce5b9c73d557c4ecc23d1ec70ef8ead7e3b328c0ffd6dd
MD5 bdf8bac4a8f3233405ce8c6b5bbda0ae
BLAKE2b-256 67b927c1c41537dc62e7b329a6b716f11c36ba415d0457cca09ae7ac19887281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a094421eb24c58b367bd4352a71d1daca39a34ca186350c083181316bcc720c8
MD5 adcd470d04cd619206cc500f29915569
BLAKE2b-256 1f7ee87f73624d72c82f367be91413086760a6795129bdb8577569d4b77a837a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 92.8 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.0rc4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0daccf598a0e40c5dab8f3d47c2ba2e956df543a41f8a1b2b64615d84b10d429
MD5 3580c64b29d633026825afcf330cd9e2
BLAKE2b-256 9f1e4f9b58903b7615604fd2222bf1d19597b40318d5388cfe8775d27f35ae31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 95.9 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.0rc4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b189e7d01d46a3e634ed07632f639ecfdf8ca5d6e91fbbd417e66e0ba88f938
MD5 48a3e4998097e3004cc70d2a6d6642d9
BLAKE2b-256 a33e82bfde558f0e353ef559fa222fc049cc8208f04a09ae66aa9438b18e6763

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0beb6d92c9b4bcf21061acd86fb3e4782548610507269070d251c375d524b019
MD5 c6dbae4a02f2197e88629b9a286f9517
BLAKE2b-256 f27e4aa181a01fd9562eb048723e4dc1af958ce51984fb59bb099d637648b26e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b741b4374f1337f8690adb8e9fa69912b741d6a9a6d829818f24dedda48c252
MD5 77aff9510220d0a6253ff0149aee3d37
BLAKE2b-256 ceecdea12051cff49283b13b378f12cf40892d13f1c73e9704561cf0a8c6c00a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7c5b7b546d0168e815121f1589008b063cddfb59146d170fed8f9635700b0dbf
MD5 bd10a7a75d17fed1f726e95f0a0eb546
BLAKE2b-256 9ba88399e9f28f049d77cd07a9710c801040acad72a34e7b6935980e253a2b7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38be102865662e37234764ac79a508f6c4f7839b377a8d4b1ffe63fc2b10b9a3
MD5 502914cb180a60f652a3c509c06a9f80
BLAKE2b-256 88b20d25dfbe9d4c99f58b3b755f0589d08f4533e5e459f53df7324f6006c58e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cc82c4d265b0e6667a6a899594228fadeb7cc35b551a8595278863cf301df5d8
MD5 3004b6094df060a2a75f15b18349551c
BLAKE2b-256 c448457620f4f7eae03658696b59e36ddf2540a7ba932898133065b23b9a2eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7f7a3d36617ca7364188d0247ea6a8e8096db4912118e4b35591c53279bbad8
MD5 7f0e11b305cdd278a403cb41d80ab3d3
BLAKE2b-256 a73228e8ef2063b49fae37dc8b0e7acee7fb033cb5629f731549eab3c8f35204

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc4-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.0rc4-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.0rc4-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 af79f07dcbc71e7885273d70e586c97f1de186306a131ae8fa95b882fd8b93b2
MD5 7723ea3955f8f8d6b596ce4cf24d1bfd
BLAKE2b-256 b4d3eb17173d160d49ab8d05d5797efe812cfa35b4bd96869fcddbc256e7ec44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b96a3d8e383dc8c71d9e2c4ef3bddddc334050bc17927b85a141a71ce4044c6b
MD5 7d651a90091557edfa35fa1affc15a3b
BLAKE2b-256 8e53533aaa815c24ba31e1ea1162dadf2b33f5193a347f761e2a7a01fb24caf4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38397a843300184772f83867d6e367ba1e90304dfd1076d0f70884ce5583ce0d
MD5 34913e35807271fe18e571a4c6faa4f8
BLAKE2b-256 04a88132b2436c4a584b86b5e674d9645b9a9214c767dcaa141bee4529aacaf4

See more details on using hashes here.

Provenance

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