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

Uploaded Source

Built Distributions

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

wrapt-2.4.0rc1-py3-none-any.whl (64.2 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.15tWindows ARM64

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

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.0rc1-cp315-cp315t-win32.whl (84.1 kB view details)

Uploaded CPython 3.15tWindows x86

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl (239.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

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

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

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

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

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

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

wrapt-2.4.0rc1-cp315-cp315t-macosx_11_0_arm64.whl (90.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.0rc1-cp315-cp315-win_arm64.whl (84.0 kB view details)

Uploaded CPython 3.15Windows ARM64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

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

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (203.0 kB view details)

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

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

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

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

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

wrapt-2.4.0rc1-cp315-cp315-macosx_11_0_arm64.whl (87.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.0rc1-cp314-cp314t-win32.whl (84.1 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

wrapt-2.4.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (271.5 kB view details)

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

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

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl (199.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

wrapt-2.4.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.2 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl (195.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl (213.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

wrapt-2.4.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.2 kB view details)

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

wrapt-2.4.0rc1-cp313-cp313-macosx_11_0_arm64.whl (86.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

wrapt-2.4.0rc1-cp312-cp312-macosx_11_0_arm64.whl (86.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.0rc1-cp311-cp311-win_arm64.whl (83.2 kB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl (194.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

wrapt-2.4.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.3 kB view details)

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

wrapt-2.4.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (208.2 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl (190.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (192.1 kB view details)

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

wrapt-2.4.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (202.7 kB view details)

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

wrapt-2.4.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (200.0 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl (190.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

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

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

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

wrapt-2.4.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (199.8 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1.tar.gz
Algorithm Hash digest
SHA256 1e8e8c52bfea68a996e25f35ee567579d2f6298c518581f73a760a0a98426087
MD5 b33b97fdfb3f0cb3e9c9bdd4345e8a7d
BLAKE2b-256 2dbb913bbe16477e909ba15e2515cbf21e0cb467de1c283d42ad2ac68eacac22

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 f8bebc06fb963cd0efe0a43ebde6f9d283b6cdc96f3fdb3f509ebc02bd7dc3a8
MD5 e8055635b31ff0480a19f037a13db803
BLAKE2b-256 b31c9c73a9a5b68a2dee912fcbd32bbac1d51eee270db4aef7f39e48100e5ccf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 86.4 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.0rc1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 f70101555d0067a5471dcb4f1efff8ea1587f791222a12eccaa82533cc09aa36
MD5 daf9bb29eb82fb5955d1ff318dc5df26
BLAKE2b-256 100dab60c7c1bc92f772d16d3d38b512d547348be5c352ef592e71d09589ef0a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 e5417ac26bdd603438a5ad60902995dcc3c65f29125e273d2cb4f245c7f2f520
MD5 aa01883dbf231345460bb4fd4385d448
BLAKE2b-256 60c9dc196df8f4149d27543633429490492f173157e2071578ec5c32a30fea06

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 7486393b085483c0d7a5747e93319860a328d371ae998eaa8383699590c0f22c
MD5 cb674f0aca5eae94e83cc36ed675d62d
BLAKE2b-256 e84697b7393c3da9294ad0889f4f1e9587fee27970bfb6eac4de6e072be3641e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4922f6922e85acfe5f8f3d346773109d91c0c820324908d3d3a060a3efa411e5
MD5 de649792e70b8da2a468bbdb7b946db5
BLAKE2b-256 5e4fce858df47a4de99d8f57be7f62b5e9e5e23b042bf19d41b27d03e0718677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 936a450e30616afdb6a547c24f20cc856be87c7d7adb53edcaf0fafcc01649fe
MD5 2254ede992529f94e9d7d582da5c6c16
BLAKE2b-256 25d64e86d1348b456346b36693e5a9435df2eb488d828f7382d99c51e95ca759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc02391e35cb55c8d05b4b66b5fe54ccf528bad3ea36825bec320300751ca7a6
MD5 cdb85178e704881da8971e6f887d0130
BLAKE2b-256 7a1a3c1ffc6b28f0c67bb1dd691d2aa82e41a52f4063d956dc8e04a0d5d3f10c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e6c494c2e022972eff70b09b78418a7bae0e12b1ec0e2754e626bd7b9899df63
MD5 cec710c692a4fc55a3f478f808a5ffd6
BLAKE2b-256 fef30cb5cd8f7b91842d88df6ea4692386ce9788726f99c776e48c2c8412df16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12ae58d7b16f952667951611f53ec98f392d49b6f86d62fb18d3e0777902637d
MD5 820d95fa2416026664c0b6de3ab640c2
BLAKE2b-256 efbbb97e758a9dfe34b43f2e53e602cb1c7b1892016d536ca7fa36890558d943

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c15cf955543988c147eca095343e432fe1071823c3d364e21e55eb16cc5472aa
MD5 d3342cecafca71579f666fcf10f1a2af
BLAKE2b-256 6a5233d0792b148d7a59424630c092c04b17534bb623c62cfe78331cdd7ec40e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30aae7616e6a31a971bfbe5503ab62a26bfe3c3a673cc994d7e932f9756c5f8a
MD5 55376ee70289038af421bcee6d84d83c
BLAKE2b-256 9944628368a1c5c34b4a34e07d4d6d98948733615fa520be71081e3dd4cf9143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4324ed914a0eea537870573fcc430cb86171170acaab75a3ce7611536c498d9c
MD5 7300e77b024ed39570505cc76f907055
BLAKE2b-256 7556312b6d16d79b1434309d4184ae70bc8856120fe5519171388e502925326d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 84.0 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.0rc1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 87a0f59bde6c583f32e6554847c69d78ebcbf744ce16c6702deebb0ac2f99a39
MD5 b07eb33733a9915949475d8cbb62da16
BLAKE2b-256 d3877908104c556d6d9f0f10d3eabef90ce14838fd200ec82535397883144f8d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 0c6639cfc93a9cc0258fe60d44924bbd1151f892096cf02fe4b79b08370b505c
MD5 91303d3045507bb560ecedba5c8102b5
BLAKE2b-256 c1a3cb8f0147462e48ccaa1188694fd31cf85b298be053ff60a44e0ee3f2c920

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 4d959fb84d40669b2f63fe6ea5ac06b00097970d0d7106778c500f90ff05c424
MD5 646e2e9794294a99a92d7bedf5c42dc2
BLAKE2b-256 bbda75f11cf3bcd4742315886409d1e6bf3a39154b68896f9ee57010bb12bcc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a5f237f8dde0b9cc22408a78a93d5f5f54b13f215668fca5b75636cc90840e4
MD5 d881580a8bf048e69042542c401cad65
BLAKE2b-256 c480720f180485711ba4b904bb4fa38e94ef1a55ee850feaad7993d4da2d903e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 19d65c7f31ec553fc647df957f744af5cfb2fe6b7dacde204fcd68294bb10145
MD5 65037adede36ad11dcf04b45a54e46a0
BLAKE2b-256 674d5007f6bc24fd01c563610f31560b43a4675389ca1d3b076bacf9175bbe1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc7ba147f372fddee0eae49049c3d70f62438d8f07abf83b1c5075c0e70cdf6a
MD5 19754823ad87d05f97fc37800c6fd4ef
BLAKE2b-256 091600ec6ee4d80838431bb784afc5c53c33f34145fd47e8f5bb2b7100bd1297

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 78d38be1a06cd017385abfc53cace5f85b8f8600720ff404cf2972d42d123539
MD5 e665f8cd5244ab7ec3aee5b2e7229c1e
BLAKE2b-256 7bea2ed043b18b8ec82ebfd588a51f0d442da2ffc69db6b39153784c0f3d984d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9287ecc87458f69a304f843c1a833e661b9bdf794fa2d8fcf813a88a3960f5e0
MD5 ccf480a3015d5a016889225a05570c28
BLAKE2b-256 dff24b8eac97482f8cd4421b5bac44b5a4744f169cc03389d578bacef8abc161

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6d47cc695d2d83113ae58f8aec0cb7e8d02317829644a19dac065a33d08baca4
MD5 872bbaa1d7f8fcd8b3e56449c1716584
BLAKE2b-256 544528eaa6ebd34611ca3311df4d74be8ebfcd1c9f8c341e5df688c5fb9a00db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5c44de7c9378828dc970bdedadfde247a281a1131c8da067df8221635aaffe3
MD5 e8063fe37424b4ca5c5d7264bb70cb80
BLAKE2b-256 92b195d6c7191228e78ebd78ffcb62fa3532babc4e8951352157561802294c2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ace0a955696b03a62d2ccd4246b15d2c3f4247eb9a11eece4cb939a4549c8450
MD5 d8a8eb211e56509a8e89c02cc30631f0
BLAKE2b-256 4f2a7567be938741490cfc4aaa48c2fbb69abea4ce0f42c91a553a7de27ee994

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 86.4 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.0rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9df2006c56d83de72db86c6e1afd8fef219b57ef7aa218108a0aa6548cd5a744
MD5 8058fe1fdd85550fb6060787a8a2b5fb
BLAKE2b-256 38e033cce6906b06d1dadc8a8455123981ffe76d47b893e52a58bf5b411c6767

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 90.2 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e979ed5d7141933013311d3d466ecf6b4e9572d0b02b86a7b53116483a4e9d7a
MD5 13f879b30a3aed5c2cb0bb2056b0846c
BLAKE2b-256 99db75ecb88c48fe04e8f7c49d2dfa328746f9f20914f20bab48755625e3e420

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9dcf2610cc70ba5681b2a3a5b47a71acf021476b3e573ce960c0c95be37dc4af
MD5 bf264179089d37ca9d21330645448fa3
BLAKE2b-256 d36dd6f5766ce2e7d48511d3281f3926c5f3dc623779cf341659f50266f1be09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 082490a58885726937ee01b38d545fcbaec85626ce9ce480a0ffbbe6f39ac3a4
MD5 5e76c03081d8f0a4800570905f8a46c2
BLAKE2b-256 82928d2c4015d4b83949e1f67e69d54890f40cbb8bd87d329cfa63f486f419bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 44cb05bda6ab2d0145f757ad1aeefe1ad7679878c1c8917746af352d98552c95
MD5 812eb15dbe56c1544925b7b92a204267
BLAKE2b-256 9f26273d21605adb3f70f5eb58c7e44f28f4135449e3b8ea33a7d351a731416b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fc68b66f095347f8670f3c357a7abf4ed70650f63e35624c006a1bbf06e3517
MD5 e59d20ee07c9909b1e2ef4fa28d59ff9
BLAKE2b-256 c8dbd9e4118265cb2a66e7fd8337cc7d34a545ef473bd7df3c6e74bd90857ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f899d30438548280dc076acc7d0c24f06b5c497b9d7781bb6313be7b61a6cdcb
MD5 dc3278b4aa40517dc6022e02bc3f0a25
BLAKE2b-256 eb1b5d2295ee86c3211bae87b9e0b1d5e6c307b926ccd4d94a8eae430ab09904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97b1e1b59af40bea887c40f61cc140e9cecdc1169340fd349317b0b76e71de59
MD5 2c6ac72936f8d2a6ae3870ab43510706
BLAKE2b-256 20c316e55aa277aef7ed6aab43908efdf34f780f789eb7d652e67a719742e1cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ad90d9f557af35cc4153d030e114263ad8ecf227bccefbf57182dcff5ad1bbbe
MD5 704a12cd7c3efb04215a85e6d6ace12a
BLAKE2b-256 7ae43c903c1bb7df5b417ae605d434d3b3b8528d1b1a0328b03316df46c09569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dcb7361fb57cece785021118ca9fd037ad8fd5e64b21b3881c8d5a4be15c938
MD5 73acf11caca8812bceaa017a53256903
BLAKE2b-256 d9f8c9121763174c28f054b361c560439c6e1eb4493bb757f0dfeda19865507b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a0da4ebcaa797ff9b2e5ed06479ef9cbfd914a6092378ffdd8022558fe143682
MD5 2b2bf038f438506a90bb8b302991e470
BLAKE2b-256 7dde057e75e15a83d467ad6a28e0d31670ae768a40bd12fdaf90a87b8c3c6afd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 aef6804b182feb648139c14c319cc31e9c5a6f68e088e7871c7fe76097a70adc
MD5 6d229025d662302b72b7221fb256ebeb
BLAKE2b-256 5de3e0c58eeafcb1fb169f60d0ba6b920107a290679974c413b31240bf8d966f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 86.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 264d32bc53ad249e45016506417e586a679288378df3a1eb2f4fdde009779dd9
MD5 89eb60695adb97d08ec94915b648aa79
BLAKE2b-256 9aa00e4afbfd36c519526775579b5242ed00432780e439b3a9c68b0e13d067f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 82.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7e7311a1c6dea2eaeccca32bc33c78a801a28c6b80e30387fc58af1e207a5a9c
MD5 3450b08e50c97f7b1ba485ca4aa531f0
BLAKE2b-256 74deae72a4c84ea9f2a6d6f1900281761440cbdb1e9ddb93ff0deb2bb5769316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0547a2335a70c1b264988691318503556fd91a8862018c9ec7aef060669a4836
MD5 0c4266c77c1fd989395408da98a3c325
BLAKE2b-256 c7bb299a446b7a4124537c7c29b6f9eb6981bc113598ec91a73a03234de8f931

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c144d37ae9c719dcbb9be9a271e881d6bb2bdad27f3a996dc441395d7bff8a9d
MD5 96697f18e7a07c792dc8268b860b7559
BLAKE2b-256 b8651d029611cfeccf7e6ec9bb1296304f9e9ab693522f908b10686500bdb2f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76de9574ca8ed2059d0d2665ee53a2d71f512f299b0fee000f36aa6fc123b3e2
MD5 c512c34375d76c241d0cd1f0771b980b
BLAKE2b-256 e18552221a81e5591789162deba23a0b197494798956f6b7c9d46c25a903e7bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7bd52846bd7e0cc804a8b493e1bf7e19652f79f26e5fbd19f36023e71ab1c5f5
MD5 4958df01125bd3054c5ebf9583d1e3df
BLAKE2b-256 2049f7589c8e547d538fa347a43eff722219cc2a355d04916c1c940f35c26050

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54f3b1d01ec350277c921de2537e8fca11b3e9ffabbbd692e91d77479f22efbf
MD5 187219597d26d8bc503f90f3e85da099
BLAKE2b-256 29ac4d10ba25247805fa8d1ab277a7a53c37ebdda7b50d99809f562401c4c93d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3656265e33c6cdb9001591d803cc820f35528f4709001c468fa97d536111d2af
MD5 be1dcc1d629a5c958c05c1863af5dd12
BLAKE2b-256 35f19b394349ea2f201697ac5b275295fb988cda932853b2c5cbac2ab975d60c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 781329396a8878cbda7b3759f73f9fcc63affabadd023780fa85a4744327b83c
MD5 cd29c4a5761ad4040a1af34e715aa01a
BLAKE2b-256 fd96b0cc9b36155d1abe373152db9617830bd82b8e2635c0b4656946591e7183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 99cf4a319a2d3e46395133905627d19de34ae0191ab6d58383ab141285ee5e64
MD5 8a6b00c55960ec88494a040d4b2c068a
BLAKE2b-256 118fe357819a5ce8a5b01dd938122fcf5ac8f2f6a115e374b02f0abde2e5cea6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 83.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 108e71a94f6dcb663858c1717178a90db8c2d95902b785d1cd2598fb4f1c439b
MD5 67472df55e361bc590e70a6ecedbaa13
BLAKE2b-256 dfce1c275daf7111927a31ec3c035e7c27033b894f1710ad77291255f9abe96f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 86.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 def9e929bf510713703803013e891baf5bd40c23a3c230ada77755edf3ed6d71
MD5 a1119d015effb2eaaf173d4c461b2167
BLAKE2b-256 15dbe7f269d8792bd2d5ff62a7a574eae61adf41114e98f92a521200eed206eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 81.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 99b274f41faec5781c3f42401e65ad63b6bcf5d5d65c7d8066df9c2fd639fc0a
MD5 f62a4ea3dab372447c8f79ad58224854
BLAKE2b-256 0a31dc9f585a08c14cfbf3b0832e6ba207d9bb337512ccd0c51086983e059c36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21ba938b3dea1a29e4b58bfcbc2c8601ba415669c9bc1a5a9c344f9385e5c164
MD5 b121fc812df455139b75c1c02b297bd1
BLAKE2b-256 6681109543ef281973692de636e54e952b4e508fb2ddd758abc02e7a15bd9bd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bb475160749eff57e984fa852c1519abcdf22683608f11fab22479bdc24fee3f
MD5 d7d35e9010bc3fe917e49f3461e3b4cf
BLAKE2b-256 17e90207468176ddd236372ecaff6a2b7e547c7c0878d017dff846b5f54bb7ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b08cbec7936fac1cc4437d354b9f05484cb69c04e6702eb4b154f4db4318c2d7
MD5 753c72a3d31155476f9305d27f26b184
BLAKE2b-256 e5f45c7f29ced8c5a383d3f2646fa220cf850d9e9cc26deb0a36b9f3d3578a34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 71c7a85e9fd08bfdee3f140868d27f7295aead29ad77973859010b96a57cc66c
MD5 00649f085bc0c61935b7ee924911a3b1
BLAKE2b-256 907ab2fcaca762fe951131a1676a552c35e733f5722233c16ff9193d36ba8a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4a20553e9c58d30236ea8925897f0f6060428ddb510c3124b6492371f37f2ced
MD5 ae22a921b36ffa8eb44529d01543ea19
BLAKE2b-256 066bc0ab4c30f4542099027c4f19277a5a1de4338477ad3df9bb7f0075f20a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e31a3487c7a803eac87898405aeb21c3553b5d460ec25b3f279892f8b2c1bf74
MD5 1475b6da973be472ab91886ef78b61e6
BLAKE2b-256 f952ccd91e64ec3fcd80bbc12012d07133de20eb6c04b7257bd11955c2cb5c35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2342742d60eaa2057b4e81f5dc64df62971b64109c682e32d30f75086441dd50
MD5 84368aac7110f2e7a5d4e0a4f34cf55b
BLAKE2b-256 a81dca2d959e0d107770238ab731d99622dcfbbc1ffd020a711f39100c53821c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba5676a0f38e4f2a3edeae94c52acba5ed8003c1c6e0f1ef1d5383c59449260e
MD5 2e4c6d6fa68c7d230fc3811c9c65185e
BLAKE2b-256 cb79fb981d04fc4a9bbd40c957b9bcd626b39d213c91e5650ad0fbeabd2d2bf5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 83.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0572c8d670fd54b9bc6f8a3344413ab21d2e30c2f2e9f887c0165f5019b57dd9
MD5 447a5d313da4ada0b61988183039cb06
BLAKE2b-256 420a6898a0a9b5bdaee722c4f5dcb797a819ff21de64e4890a2737ad6c9b9d81

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 31170ed55e5abde90e9810f31dfa10d9fea3e46d3d7334dbd316a0f4a1190776
MD5 9818090c1661d8e7f7b7968e02e404fa
BLAKE2b-256 d83133d24b422184841d10aff09ddbcf89a404a7750363229bb770faf18d9557

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a075499544aa88392d083099433e32317330bdeae82fbbe6ab9fbbae365a1a55
MD5 5d9a582b0d7bbc43865fa5e46f672fd0
BLAKE2b-256 19198fa432844daa34020e3e209517a21c1881ecbb046425b68e4aaf85ff668a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0b7590f28309abb173a0edf9522efd4caf8b7077535ccc6c9cd2ab44c05e0c6
MD5 d0b6255445ac0527f86a4b0b9f973177
BLAKE2b-256 490a58570423a442288d1138ae334a9909cd4a7e716cd1c8ccbf417b1d05c1a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4bd183d9fbcd88044fe2e78c9b49e31d94d0bae35d0afcd7841f0b1391c3f81d
MD5 61950cdbdef1677e27be0bbb846cbfc8
BLAKE2b-256 8b5c8b1ba25f8d779ffa16a27a349ab096cd39b859366b07e3c7992cc33a5ab5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b029f4a1f70d2c8da102ded6b4d1af47dd803cc392942f12321096cf7cc0466
MD5 9d2254e0c6122952505409e6ad08c3d4
BLAKE2b-256 519eef418fd23523b69aa734e6c8008e15dddd5bf0caf81d9b1b5da3d6115c4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8257599051e1031dbe4baa779379799490fcb8517ba8afb2d52863af0a8ab08d
MD5 a124f3b8014e3518ef909130e11b139f
BLAKE2b-256 942e493216829f129f6cd7b27e7ebf80488d3dc2c13893d334ed6a14225da825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47e974cb1ddb3021b781c84761ca38987d69a778deaea853c5635b5ddd724d77
MD5 b200eb35fc4c7c31a89159597dca550a
BLAKE2b-256 cd8c8437a1fd11f64d4ec0523c6142897c67c75bce2775ff7e3f1ebd9a87aee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 67fe84714903f0555b8f136da2e650ae1bf4aadaabae5db7245f8efc41f64cf8
MD5 c3d120e04ec66ef40fe950ccea2c2c23
BLAKE2b-256 4304ef7bf89cf703dda1f26a65e88eb8e60089d781839b3afa2614eb0f6f7cb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 951e163bc4e31b2b288a7cf7cc1ff2ca0e844b5c49c3b242ac6ee71dd3898526
MD5 3546c4fd3c526d2e75219e1733543e6e
BLAKE2b-256 961f5346108bc963f848cd57e4ee332f1dfd4c1b830131febb3e8bbe5828e9ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 feb0dc2517f1343510d1a6915461e8b27555488bf65b7db3881b8567bee75e38
MD5 f53030dc81d51467e37fa0d4f7ecb275
BLAKE2b-256 b6a7c510b2f8add90523e0fb60991f88ac3ef4a9d73e69ddceeeffc82b30ae2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 83.2 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.0rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d143a15cf7bc9f6f1ac554d8bedb5dda78190b9a8bcf4aa0470b6d02999d96bc
MD5 9117e96689717129fc332337ba0eb39d
BLAKE2b-256 b58006803a039d9f4d31ff564232214d2da445cba5b82eba15c56304651ce0c3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7510caa06694e8a4decd9ff39edb4cfb0e4a198e1453fd7c83e1ccc6beac967a
MD5 42d346115bdb6b7c6e908e61bcf5b0ff
BLAKE2b-256 bb6cbd1db5d2d6830b8f9702c2e60ace855dd7fccbdab734e5324331a285086c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 81.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2bf58b75937394708520c73361ffcbcccae8a1a1e2b2ce27ea4502df604b84de
MD5 bf30754a4c94ce493065053be047c58c
BLAKE2b-256 83b1dd939dad20b53003822f3c238f13ae6831a4298711e21a6f08fa7ca07efd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a07327271c117b95c4e1bcae766e57c4b1e554febf0d7e686dab85960531480
MD5 ead0ac2d393c31fac9fb16c24f46891b
BLAKE2b-256 497c4e4f59cb052a2a17f85ae360f8be52b7864fa0f9adee53f19957f06900c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 034615afd036809c35af2d45748ed17f279a344ef45828b01e4d6332090759b2
MD5 23d493a5768eaa997615c8cb87115d4d
BLAKE2b-256 e7144de6fd6d82eb025c56c5a9e989052d00731ff8876d2a5e17c51a4765a91a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a834f14aadfed570d6018c2e667bffe67a49f04c3944f68b2a838c3722d1ffa4
MD5 9dd02313640126c9073b5d7c1f01b5ce
BLAKE2b-256 7fc1036cfcfdbae0eee23b648d249c1dc34ec35797ade5cfc5fd04e785c34544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7f8d87fd9d9324d18758b18dd60e43b41360ece2b9eb6fec7e23fce80d180e19
MD5 da07c4878c99ec6f56c077ee70051884
BLAKE2b-256 a775a722633616eb1b562f1040ce49dfc614193296b1b64b45ab9e1ebf152630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad3c651ae3a79dbaf84b6cc191078458ab8d38a3e30bcee84edc37cc93dc0c8a
MD5 7075848c6cd5c0401a8debf1437f0c87
BLAKE2b-256 b030643154959a3e76206f27f8eac6d8d51e2b90d6c9ac8049ebc176c290bbc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 09a015e4a4b041347b00b83bc2d104d0f01324f7ee044e1b92c53d49a561f711
MD5 3f5e92ef00387fe2c138b6301f76100f
BLAKE2b-256 b4ea3b2c7096aadd49a4d3b85ae1a069a0ac8b6e0d8bf1e5203037835117b5f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86c8d51e802db0f1cb298469d84cc55f3d732cf5c3d6fc4efbcddf4f77f88285
MD5 0746537ce940fb721109b40dd480a1ce
BLAKE2b-256 65b4b129d1f5a381ed9eb1a7d5ea9f9c783de0443a81f410531ac2502bbd2c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 880e8d499620049c5eaee26abf0b1bdce55905807398bee8133b5ca89e497560
MD5 2c53a998f993d21760a79e24c9759029
BLAKE2b-256 4fb902a6b24b14eaaf4ad1bb8f4ecc2e7f957bf0f5ffa0493c078a7e3e15fdcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 83.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 844a5102bbf2c64c42923dcfbdb37da172531baf2da0671c5d7f4707aadc10a6
MD5 253c82e7041f43fb5484b86c065413fb
BLAKE2b-256 c08a9a36577c58e64238d1a6d241dd0ac33338c093b1976a98010a14a16e1be1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f469f0677416d75da0cb08f60f56dab343eb793d0938cd4915585a6edaff41ce
MD5 217929a2fe2ead9165288600649203d8
BLAKE2b-256 5513ac4cd1e922242e71bd1bdabbdf5557a2b8469aa8f32b54a184805428e036

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 af834017c45a6bfa621f4f20ebde2abfd5d2419fa04cccbcad1815a334fa87c7
MD5 c3481985e935f4a260d5b895a12d64db
BLAKE2b-256 b3492e3e4fd622a494fbf298e8ea00147502a446e5cdfee2a662b691261df000

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cbce1f1d9fdb3d7f125b94ec9c2710668a94a3d2d63cf0147fd5a2246901f58
MD5 573c3105c8d7f3c9d0bbf4e9fae3f02e
BLAKE2b-256 81fb6e5b15746e55e25c5280fb29a33c7e410adb21fb23ab310fdd03f1c42055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 69f7ec75585d2cc0fc85b0753871446bef6e10eb7b577f066eb21fd46d54e07e
MD5 d7107551286bb307d70069a570868660
BLAKE2b-256 7f6341d176d49dcf39bd34c633f46ead7e35920a52d46c64ef089a0259cf6bbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1eac85ab41d879dbe657493b99d04f4956136ce6db3085c5f6e50124e257c71f
MD5 811a09ac6d4385e71e938fe6a2591639
BLAKE2b-256 13130a08df8c766b765c083c59e47d95874c56e8a0a32ff68d1ba382e7c3014a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 84aa120c53cc2ba73acbcac46866846e428e1cd0e5867a451024bc70dc7c56d2
MD5 325adc12f00c17f9c99220f3ec1aea3a
BLAKE2b-256 fd6fa3e0c162430c5eccebde3a96e84b976d4b68d7aa90e2d46b04da1bedb215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e431b8b503b0dddf348d6a4935a4bc6fbe1f10f8fbf1c2e8da7adce651f3427
MD5 a25bff6b31255ae3f8503707357d4abb
BLAKE2b-256 a05ce5d14061f7bff0ca34e60771b660cfb74436f116c6c59d89266edb3c8de8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7779b85df0cdf306666760958ee7c458fee95774dd8452f812f253d48d2c85c5
MD5 fb33bde31c62652b2a88b1dd1bf007d5
BLAKE2b-256 2437112fdd88d4466430759d52865df1700f1305a60b8037236e48ddef230fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f271d99f7d94215683a73bfebcf936e20185a0ca597f2515405517ede2b60ac7
MD5 4ea5add4a3dffd610dd9485d72b558ae
BLAKE2b-256 e2a504da22b2da10f75454ddf0402772b5301982c8fd3ece357dbe85b634498a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5e96c7571a6c1709fd368e16381b3c80e3e2073e2875adabe08366a35b492309
MD5 75fc50924f378505ff6ce0e6ede87e22
BLAKE2b-256 644bbef9ee435c2e01b39ec391f5e724dcd423d8e789175fd4ace01c6f80f153

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.0rc1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 83.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1a9f58415b4e3d0428ea08a42e1e9ddc79cba01dd1ba8a9a59e808269e99fded
MD5 aac82e280c4249191b5bf8133d70af6c
BLAKE2b-256 a97985feb1edba61e485b1aa57bc9fc34dd044e45a6951cd971fc606b781c5d3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 74507ef8e35db490f894855ab4594f691b8fc05e4958fcbfd892e5148e190dc9
MD5 0d04b42bd42b61393628df3e7f593a48
BLAKE2b-256 5ce3446dc8f570d9c0fdcdfa7c5365a76e9c6f46b070ae7610cdfab865767cfc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 06d64aa1775ef9f70dd05be68fc30808ff6c8f5bd4f7fd0a23a3198819e2a076
MD5 7976fac5bedd5603cf963c74d134123c
BLAKE2b-256 ff1e2f634ef19257c38f096da66d91ac838d2b8f024712eb4166f4a7dfcd75d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87f22c03c16842a7d5f4780f6e8368da34d49a17d0a5643844fc1d6d31c85daf
MD5 12c3fdadcae887c54ffa2879b120528b
BLAKE2b-256 e1c7c54a41dc8e3a143464a899c3317fb2e791afcb46fa0d01c0b9d8301011b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5fa6d8617d2c6536c30af8ddf10a9774dda980a0d83daa210eb54ff72c122692
MD5 cf32f8218a94b0d757e11fe6b3bacdee
BLAKE2b-256 eadb943b91fd9ef2c32bc739de29db03c97008dcaa3e521da7544bdef4ac469c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddc64957dda3db9befde413c71a214a6b7e346788141d04a77b3b86f41bafcd3
MD5 77210e22d1af87e26991b23cd5167c72
BLAKE2b-256 17404ab0aa7b57bdc62a7afc265d7e330472bf767ab5bd5123b676b4b0deaeec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d524e22a3029331714fed5b94e10cefc5dd9b4ff6a34efe71966c73d1354862d
MD5 f5d46a6e08e90eeddf15947fb45586b2
BLAKE2b-256 995e3386febd9ba33b44752a49c021d36ddc8dddf6de51e7510d4d550bc6796d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87c28e30a80644aa1c7d887452739ca581a80266be97be246a1c77dccc6cb88d
MD5 1912958db82d5f4948e9ab99a7ec5d1b
BLAKE2b-256 0337446a178f2af073cb1faf34bd5e9f7eee5af853fc0b5358122d7a4635967b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.0rc1-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.0rc1-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.0rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 163a931cd7e24ad3ed78dda73589152d88f64245e282b1adf257818d43e3c2e3
MD5 bb52ce8bca07dcf120a2321924b80b75
BLAKE2b-256 4048d14a2ece5bb9ddeb3f084ff74b2254caaf98368e165e8606a6c052166165

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8536eac0a747d2fcc2f265695ece6475aec6655733af381c5ae707e8e21a0988
MD5 5ac71cfbb8c56ab051f9e8b8384f0bbf
BLAKE2b-256 33bcc72999150af42c7fbc642316d910d631d0831f964717435eaff5313985c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4690c372f14f4378ad60c1264f6273d6c9fb5154268c7ef9f1648a5b9acd8f1
MD5 254f3684d784bf1918eb367ef1e8ab99
BLAKE2b-256 c7d37e230fd5e971338a69b3bd6a972d5415aef4347832406944cba032442821

See more details on using hashes here.

Provenance

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

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

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

Release history Release notifications | RSS feed

Supported by

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