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

Uploaded Source

Built Distributions

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

wrapt-2.4.1rc1-py3-none-any.whl (75.4 kB view details)

Uploaded Python 3

wrapt-2.4.1rc1-cp315-cp315t-win_arm64.whl (98.5 kB view details)

Uploaded CPython 3.15tWindows ARM64

wrapt-2.4.1rc1-cp315-cp315t-win_amd64.whl (102.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

wrapt-2.4.1rc1-cp315-cp315t-win32.whl (96.3 kB view details)

Uploaded CPython 3.15tWindows x86

wrapt-2.4.1rc1-cp315-cp315t-musllinux_1_2_x86_64.whl (271.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp315-cp315t-musllinux_1_2_riscv64.whl (254.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp315-cp315t-musllinux_1_2_aarch64.whl (282.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (256.8 kB view details)

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

wrapt-2.4.1rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.6 kB view details)

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

wrapt-2.4.1rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (276.1 kB view details)

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

wrapt-2.4.1rc1-cp315-cp315t-macosx_11_0_arm64.whl (102.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wrapt-2.4.1rc1-cp315-cp315t-macosx_10_15_x86_64.whl (102.1 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wrapt-2.4.1rc1-cp315-cp315-win_arm64.whl (96.1 kB view details)

Uploaded CPython 3.15Windows ARM64

wrapt-2.4.1rc1-cp315-cp315-win_amd64.whl (99.0 kB view details)

Uploaded CPython 3.15Windows x86-64

wrapt-2.4.1rc1-cp315-cp315-win32.whl (93.9 kB view details)

Uploaded CPython 3.15Windows x86

wrapt-2.4.1rc1-cp315-cp315-musllinux_1_2_x86_64.whl (225.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp315-cp315-musllinux_1_2_riscv64.whl (218.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp315-cp315-musllinux_1_2_aarch64.whl (235.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (220.7 kB view details)

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

wrapt-2.4.1rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (238.4 kB view details)

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

wrapt-2.4.1rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (237.9 kB view details)

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

wrapt-2.4.1rc1-cp315-cp315-macosx_11_0_arm64.whl (99.1 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp315-cp315-macosx_10_15_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

wrapt-2.4.1rc1-cp314-cp314t-win_arm64.whl (98.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.4.1rc1-cp314-cp314t-win_amd64.whl (102.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.4.1rc1-cp314-cp314t-win32.whl (96.3 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.4.1rc1-cp314-cp314t-musllinux_1_2_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp314-cp314t-musllinux_1_2_riscv64.whl (252.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (281.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (255.5 kB view details)

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

wrapt-2.4.1rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.1 kB view details)

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

wrapt-2.4.1rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (275.7 kB view details)

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

wrapt-2.4.1rc1-cp314-cp314t-macosx_11_0_arm64.whl (102.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.4.1rc1-cp314-cp314t-macosx_10_15_x86_64.whl (102.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.4.1rc1-cp314-cp314-win_arm64.whl (96.1 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.4.1rc1-cp314-cp314-win_amd64.whl (99.0 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.4.1rc1-cp314-cp314-win32.whl (93.9 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.4.1rc1-cp314-cp314-musllinux_1_2_x86_64.whl (225.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp314-cp314-musllinux_1_2_riscv64.whl (216.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp314-cp314-musllinux_1_2_aarch64.whl (235.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (218.6 kB view details)

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

wrapt-2.4.1rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (238.0 kB view details)

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

wrapt-2.4.1rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (237.5 kB view details)

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

wrapt-2.4.1rc1-cp314-cp314-macosx_11_0_arm64.whl (99.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp314-cp314-macosx_10_15_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.4.1rc1-cp313-cp313-win_arm64.whl (95.3 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.4.1rc1-cp313-cp313-win_amd64.whl (98.6 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.4.1rc1-cp313-cp313-win32.whl (93.5 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.4.1rc1-cp313-cp313-musllinux_1_2_x86_64.whl (223.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp313-cp313-musllinux_1_2_riscv64.whl (212.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp313-cp313-musllinux_1_2_aarch64.whl (232.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (214.4 kB view details)

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

wrapt-2.4.1rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (235.5 kB view details)

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

wrapt-2.4.1rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (234.7 kB view details)

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

wrapt-2.4.1rc1-cp313-cp313-macosx_11_0_arm64.whl (98.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp313-cp313-macosx_10_13_x86_64.whl (98.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.4.1rc1-cp312-cp312-win_arm64.whl (95.3 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.4.1rc1-cp312-cp312-win_amd64.whl (98.8 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.4.1rc1-cp312-cp312-win32.whl (93.5 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.4.1rc1-cp312-cp312-musllinux_1_2_x86_64.whl (225.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp312-cp312-musllinux_1_2_riscv64.whl (214.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp312-cp312-musllinux_1_2_aarch64.whl (234.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (217.1 kB view details)

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

wrapt-2.4.1rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (237.9 kB view details)

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

wrapt-2.4.1rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (236.4 kB view details)

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

wrapt-2.4.1rc1-cp312-cp312-macosx_11_0_arm64.whl (98.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp312-cp312-macosx_10_13_x86_64.whl (98.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.4.1rc1-cp311-cp311-win_arm64.whl (95.1 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.4.1rc1-cp311-cp311-win_amd64.whl (98.7 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.4.1rc1-cp311-cp311-win32.whl (93.5 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.4.1rc1-cp311-cp311-musllinux_1_2_x86_64.whl (215.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp311-cp311-musllinux_1_2_riscv64.whl (211.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp311-cp311-musllinux_1_2_aarch64.whl (226.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (213.5 kB view details)

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

wrapt-2.4.1rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.5 kB view details)

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

wrapt-2.4.1rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (226.2 kB view details)

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

wrapt-2.4.1rc1-cp311-cp311-macosx_11_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp311-cp311-macosx_10_9_x86_64.whl (98.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.4.1rc1-cp310-cp310-win_arm64.whl (95.3 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.4.1rc1-cp310-cp310-win_amd64.whl (98.5 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.4.1rc1-cp310-cp310-win32.whl (93.4 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.4.1rc1-cp310-cp310-musllinux_1_2_x86_64.whl (207.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp310-cp310-musllinux_1_2_riscv64.whl (206.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp310-cp310-musllinux_1_2_aarch64.whl (217.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (208.1 kB view details)

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

wrapt-2.4.1rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.4 kB view details)

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

wrapt-2.4.1rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (217.1 kB view details)

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

wrapt-2.4.1rc1-cp310-cp310-macosx_11_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp310-cp310-macosx_10_9_x86_64.whl (97.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.4.1rc1-cp39-cp39-win_arm64.whl (95.3 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.4.1rc1-cp39-cp39-win_amd64.whl (98.5 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.4.1rc1-cp39-cp39-win32.whl (93.5 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.4.1rc1-cp39-cp39-musllinux_1_2_x86_64.whl (206.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.4.1rc1-cp39-cp39-musllinux_1_2_riscv64.whl (206.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.4.1rc1-cp39-cp39-musllinux_1_2_aarch64.whl (217.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.4.1rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (207.8 kB view details)

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

wrapt-2.4.1rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (219.3 kB view details)

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

wrapt-2.4.1rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.9 kB view details)

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

wrapt-2.4.1rc1-cp39-cp39-macosx_11_0_arm64.whl (98.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.4.1rc1-cp39-cp39-macosx_10_9_x86_64.whl (97.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for wrapt-2.4.1rc1.tar.gz
Algorithm Hash digest
SHA256 4be1d6009e18e80bf9b3e73f4948cb5fba7b239af46bc206752a7f360ca37e9d
MD5 8cbee9b87bc43c3ebd3c66e48b9bc127
BLAKE2b-256 23ea572b78111547855b4e4da8e5cc1e57dbb850e5e9d8e747bbc0ff2f4b0da0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-py3-none-any.whl
  • Upload date:
  • Size: 75.4 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.1rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 615035715a97158b1592a49fed869df8a15bb730705ff20d9bbab565b5c56c0b
MD5 cefb1bcede0b97da10e5b0d674b7a5a2
BLAKE2b-256 a715029b36f41e66790c037aed9c34fccfc84948458c0487612a56cbcfe23a66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 98.5 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.1rc1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 db56112bb202c6d93a234ad0d8cf88b50483db5e9f0aa1384080e73a9af07687
MD5 86e4c32474d48aeb0858d4a3b3b7d2fe
BLAKE2b-256 eb40ce89671b44d818b5639e59c75e5b2c851a7315311da79897aa9b3bfbaec3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1e0ef740847f68dbf8ae1f9a3af6d18c5e60cb9ed2c6768f1c5b24df325281a4
MD5 6947c1bfb866ec02e858c46de70acccd
BLAKE2b-256 79449347ee705698844e730100fbddb09522b64cbd5cf01b58155fe0e2403a09

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 96.3 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.1rc1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 ab36af9f02c3a4494e0d364927367e2405dbabdf22e39dcc50cc31081d5513ef
MD5 c498e1f40f21e8bd9891e7c6b2ebe0ea
BLAKE2b-256 f767d07329d3cd1f83d17ddf149e929f1445fa868958dbba2d140d0e4cf8d624

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bafe8bb9b06a4f64234748e66098ad8423e89f1292b6c87a564920225fd2407
MD5 586f94d2c67b05a4c1f3a07ca20db49c
BLAKE2b-256 27837ca9742f667f9fce9ab21407d4fcfbc91061ab70c0d3192c8d0b32f9b786

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a63a88733429f43881fbe8658d8f3b7cac641dcdcbd88d85c27516ee3bac5115
MD5 15f692745e3f13fbd8d63bde150b722d
BLAKE2b-256 ddfc620e8e358cbb869fcaca4173edbe5826836f2bdbb82e51fa4087ceceb401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2de59202b45cd5be6aa6e95521664048b895fdc37f4f0cd33f23fded44ee59de
MD5 89e10d6706828c5bfd447b36eeaff65b
BLAKE2b-256 f01734e2e0b0a8ad2cc7528da542f82e4ef68992455ce860fabac7faeeb15c1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ea940c63530b2c692ec5d18a041eed74a8dee1d6234927afa2f56d38bf71e302
MD5 224b96bd0e709601f9f3013f30f9399e
BLAKE2b-256 84382333d6fa10931fa1181651b99d2c324687f9f1fba21d0b5d4aaf16a21cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2cce5ff54d00b43fae31972ce8804961b04c362abd074f81e615a2435f81b3e
MD5 8af62a2b5995d06c114c749c2d47a55e
BLAKE2b-256 93f5c28df993f9f19fb67d9ec0e91cb081d0a376086bdd622e19d32f34a8174d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d924758bf37bcbb66914e642ce1f225c50b4ac01eb5ea291d058fde0fb400488
MD5 5358b9d074a25caa0777e97a71d02c45
BLAKE2b-256 96e897c2ade104c9a3abc8ccb87d88419829527bc989df46d1593a592c9028f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b82e8600861ef1c358580c69ba8adb557511728fefc15f7c2e5750f0e32ac1b
MD5 3ad52a64b6f558921c491cfb0f3d1f90
BLAKE2b-256 2aeeb17fbb44f1b3fb63065c04441b5670a9ae6cbaf82abebf187206e1005f45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8818b0449be7dd2e869a2b27df239a2cc16b57c035e7a0e2032610147d96937c
MD5 b0717fdf492339c4046f57220084db8e
BLAKE2b-256 10aeac9359edd0b71ea3dea4e778818da8bcabf5ae255b09a21d575dcb638ff9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 96.1 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.1rc1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 8b98b84de1280eca58a7e1dedfffcd8d1161bbc24338dc7debbc9c0a2eea6f75
MD5 908c8b5e3b63c8ce315ea1a887cbfc01
BLAKE2b-256 60eea59caef147c24c311c16a1b3c5197a316587429a6705c448b1a8b94e2eae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 99.0 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.1rc1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 2f115e92e353100d91afe48274aedfc22094b4fd0f78010ea497d3c4e21f3d8a
MD5 46e4fe7f015af6e4e36cb69d8b0a9eef
BLAKE2b-256 a282e7bc7533ef15c6e9f93fb23ae9c828a32682ccfb07e1f7b8f1b50aea4799

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 93.9 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.1rc1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 b7ad473a251083238f386f76646631902e70d7384eb205e068f489e957bc8561
MD5 47f842dd909d9b95b89aee56c1acd3be
BLAKE2b-256 0b0245a8219114506ea0997c31f475e2d5d89b71c3774e5b08b3286709083e9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c487bc5cc4f0f7443dbde9de4bf0114234de215fb08c9fd9ccf80a0ee67568ec
MD5 42fa3d6d1c7084dbed8d0649e8645e74
BLAKE2b-256 fcf0f5b15a4cb816ab00c9c94cd2591c784703a6dd4e5c2874b5fb13665a5f05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8d1d5d0ed82dc18a808a38df2871a1771d8a4d0c1b4a795ad94c68bee02f4895
MD5 2ccc85574d9b8b01ca9fcacd5196d724
BLAKE2b-256 1a1609dcc8527e25797abdcd94ec8bc8522b40e935bba22c6d52380c375a1ca4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70144f5770ae7bf0e42e9d4e2f34a4e7f9fff171235232fcccd2f7ec64939501
MD5 638335e00a033fa53c031da0538869e4
BLAKE2b-256 331a584561ee9a6e37eb6d3426546e402a28f2fda45417f5c54685936a0087ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3df03fddb9eebd6a52afccd66bb890faae1089cef0ce4b493a418e2f643beced
MD5 fab84bd008f680c25058194f7f22b8d0
BLAKE2b-256 1f991c21270d011a2c987cd1ad70f1294d77560c4ada76b691bb7ab812155238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fe851f6f189804e988812f8772d0d767a79731e0ac4ec55e6ece7983d3aed62
MD5 4bd5b3dc73dce3c5925a2a61a7264eea
BLAKE2b-256 80b9ad713f818c774b65a7e5726553a5d2bd9fa1de3273874c2728c31727ddf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 39bea9b0a4bd8db6542de272a18985d79c4baca02e765b7081c4941ed54d4ed0
MD5 2accb9a22f4d90ba75c798a8cb0d032d
BLAKE2b-256 698d5580416103659c00cf18152b9596dd9848c9330453be11bfef035fadebce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd905223d26af71e5126bccce17b9b197647499d68c82f684da115b385cf0210
MD5 d0eff881e3f783da5caaeecaa021da9b
BLAKE2b-256 91e4682f314834b0875b7b7c80ef6ca9a085d546d7481588fd3a8fd635ecf860

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 22d74cb01938c726f518cbf34a1309a03b2f2ec83299f2da9aa7e3bab5cac3c0
MD5 82fb6e85ee347b754967178585609204
BLAKE2b-256 c017d6ec4a3f8a058a68be61bea93af337443c637fb35523d85ad8a180f2873a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 98.5 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.1rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a160da71bcbcad54801a74d63e343af55115ca60faa773a56df73d6829397ea2
MD5 1b4e5a101219b7006c7886771d9e34a3
BLAKE2b-256 afae9f6e62e614884a979f3b6beaf905fd880e7ffd9bf304c422b9a095f2363c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cb4975d0ff1845744d67773b4347aaa432826bab27fb18a789268cbf9e3682f7
MD5 b59195aaf578927dce28f9bb87ab3461
BLAKE2b-256 f5c8eb5a600437a7ab4bd840c3a4adfea49434884c885691b40a2b73e92fb0a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 96.3 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.1rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8569a649bbe96ec7188e8cd0f293fcdc3dd04b4625b2723bc3a8738a9e15184f
MD5 bbb41c3f6dc1d718b5e80a72a2f07a74
BLAKE2b-256 76e3170c035bbca25fe05aa747c17f06e395d346190de1bda07aa32fa64c41e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0b46e55f579b2a66094b678c99caa958ec470cf1b16f3b2327aca9b9008213a
MD5 901b6c04e6a56f925348ab853f9735fe
BLAKE2b-256 c157669bbb2eb57a75784a2218ce0d9f5a9b49200587970c6b844edd2e81ec57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d28e21deaadc9f371ed60930a49883df532fd0d490d1ebe2d89e19d5aa757221
MD5 91a1f66e29916b1c919d932f753b7c3e
BLAKE2b-256 1a992e504725f2bd1ad0dd6cf7b3c4bb2b0861e6d5133e191247c48e474f5872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3259e9c4db464d2fadcbedaa994e73a6d2c755c6985095750891c0c3994a624f
MD5 f75fbe4e377f089dd72fe6065cd7ed87
BLAKE2b-256 5f0fd01cb09f53ca862a051c931de49a1cd2a33295259b0a36a4b1cc7b192c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b069f174a1bfdb1517698b9a33343cff7533dcbe14ba18aa42f4a995aa9703d5
MD5 afaebc5a01c6c22b632fcdd77e41dc1b
BLAKE2b-256 7ff7b710704728bab21bfbfce31df106d80c693dc5edfbf6f0e2243952482307

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4753822c09154cc27ec1f4b44d84f7a5677e630f7dc22ba98f04bd1a05cd93bc
MD5 5be8112e57e4f103d661f054218bc831
BLAKE2b-256 45e7a14a978029baf7a453004751d67f3465648b7ecd41878808df1666d5b8fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e500e50b6f2c0f78cbfe1968c5a555a2cb7faf11b4b64988f86d4aa9eee45a9f
MD5 336cc38f89b47b631cba8595c6f5c9c3
BLAKE2b-256 1953b94b297fb6512eaa75219feb7da2bfb13eb2370b4e0319aa8e914485995b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 818d1b0ff35a80351b9db099a2c242f35dac4440d37ae7c60120bed88e1d458e
MD5 a943958bcac1e5afc805dd645f65ef1f
BLAKE2b-256 9b985cc62b6a0321a4268a7796c394dfbeeda22ecee13439c527058ed9336f65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9df008cf0b2b046708d74d560f55ee70b2476681d334a5a7dfc0b4ed227d61ea
MD5 6b0e3b14ef1857571aaae9adf15487b7
BLAKE2b-256 d71bbeff14865ef9da9c505bbd48bab13ffe13d2bded286da8370ed7677307be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 96.1 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.1rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8c9b7a1a057802bbd1519db3c29999ad28740a82162fc4159acbe56a3a8d9a9b
MD5 228eaffef3c608d85ade8ce9c91718af
BLAKE2b-256 20eaf697e41ff46f663391dd1de926891b090a19daa49934555205d7d4350bf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 99.0 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.1rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e66169de70af562f227ac6ba227861cd0a2161f47fceabd8a0c3a9f718c1654
MD5 f0ec6792912998313c6b949dba14c077
BLAKE2b-256 7bff65e7eca85d208ca2b23a7aca074b79346042cb782b07cd59ec8a0d6a4e53

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 93.9 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.1rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 84fa80d0750b3bde2d3b97274cd9bde8328883ed9e8d516a5de887eaa6c86193
MD5 becccc0ce234a9f0ef9111de0fa2fe11
BLAKE2b-256 8a5f67908b5fab7463392b60d61a004bfe9b9509f9eec7a06ef157acfc7229bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 782ef49b3941db89d84de22b2e34c0121030d7a58b1dde9517163bbf7f7fc09b
MD5 ea885d33e97f6d696ea6da107822794a
BLAKE2b-256 29883596d739102c9706827e55b9cc1cf207f5c491edd59eaf7b1d5f6f2bc343

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ef5426808fe27831f5f7b1bbd6c4473f5a00661fa41cd5727a3af58a327cf771
MD5 250f64a10a4d0cc572b647c15cb0dd8c
BLAKE2b-256 e617fb2eda7f856ecd99471e8f943760dbd5ee935b70fd8f556946cbc4f56d14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5911131773945fb1f1d261433479bb73caa567a42a0589d3084b860199dd656c
MD5 30848670850fd461dd3938a163d21675
BLAKE2b-256 e3a648af950221f53187140cee3cc018293330dfa0fa7287e80c1b6eb1deae86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 65d5cb6af6b42aa7449be4f7d5ae4170f680a1ff995ff2fee4889990c79e448d
MD5 09d379441805d0a5e4a2d6cee24dc8ef
BLAKE2b-256 b0492bf1d3f3d91a683ee3bc2b03a44016c2829647fb02ce24ee6f8ef48ce6d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63e9f04be4b720a391068ede60578378db7d7d0c3bcb38bd1034df45088b7a71
MD5 06af8887964b9b8557c51da97fa57af2
BLAKE2b-256 14f0e891ef2e669aac6c645c4dc153737b70deda152968ef5a6a52a5d39079ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fbe7b5e9139c8e6031b5d333d80053fe3cd7a86fae0ea248d6c7b9b3c13ccc4b
MD5 9ce3dad2b9e645359950d19577815c80
BLAKE2b-256 57d32163e0aecf9db569e424dc97ab634ebfdb7c6f2c4118aa6da2b88557dd86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86537ab361a19e1dad9e1e61b3963db2e7a8c1e50d9431bc8a956b037844dcb6
MD5 9233436f058a57a03cb25dd4a6bbba1d
BLAKE2b-256 d7e2f7d6a8bc2dfa8b150cabce27cf3fd8d7b17e0bcf8b5c394ce2026f873782

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d98c816ab6d7695a8f9ed490fc88b86bb6ab6af2a0c7c3f7e51facd70b354eb2
MD5 3719de8fdf2ab3162079397e35a634a2
BLAKE2b-256 c7874ba8cb2044296ed212fb58b119466e906bbd9e9ef4810c3b1f2116b0d0cb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 af32eb31e0b8fe2b968e0e2fd7108bf7a996f3bfda6a1c00cd75487d95552f83
MD5 fe66e01c2c550f1e4b4da0f68bf71d76
BLAKE2b-256 a9de81c5859997b47e5916ccdba3929bb7f082b2bc0a93809e8187504a8be576

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 98.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.1rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0df2f6a9a6f2039aafa9c79396e86df5cca701f067f719f03f72aea3118619eb
MD5 d02c2ae5c5ad550236ad3df80779ed7c
BLAKE2b-256 6bbf13caae6890ac35e391689f326ceadba737a80f7023963f8a7cf96bb97f88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 93.5 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.1rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 42544778fdd9f6e3dcf484b86fff16d96d9ffbe039a6d57043d690ad75db5640
MD5 57b4bd67bdd53bff0396aeada737a880
BLAKE2b-256 fcfd361b287035a683311e9c57638bb3ff7691393b156d6467a18c75b6f39249

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01c74657049d84cf794270184194ff33c6a77ef848fc3f904d3290cdf8191472
MD5 3796e6796b47328d56236fa14f53d8f8
BLAKE2b-256 5b1e70954527552c5bc5708370cccab2f6c8e7c0dab8ad38fbe29a241912f06c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3e615cd3b720ac48a99cb14f2ae9cd8347e9ec0522ac5d0fcbd340c3f42d5a1f
MD5 350fa9eb36aa4d827696a976dc187093
BLAKE2b-256 12396a035c2cb4ea3c62d66a905dacdf7de8f6293888ae61fe62670f36994897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76f0b14f849f70ca2e4b468034a20d82cb52d073c08d0c5ae8e180197bc2588d
MD5 b82ea2d3bb83fd98f1bcad6806af9942
BLAKE2b-256 898ce5dda54790a9fe2ba732debd9c3701f9c516e6f2dc39aac0c586ec951bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 49df7f7e44fb1844df9384554ce8ef2b1f1eb28929d475d7ab75fa621ab17970
MD5 a8e728415dafa4620833afbaecb46973
BLAKE2b-256 cd9a3e1bee54e9532fccab718b70999c6baebbbd7f00b646c443a4982a8977c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3605047d04293ce2759e61c6968813766fb9cfa30089dffc1d7cd65ce49cb5be
MD5 555503355614da868009b615fa7204f1
BLAKE2b-256 138a856df16b9c0a2e03285e4c8c5541c8a8e7fb8060ad0609540bc28135b1c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 51f5a5e130c8c444a85a17929bc7dc6cfa91263386b37e5dc81f9b82d248c333
MD5 7c2982594bf77073eeb87f19f9452050
BLAKE2b-256 d1a8772fb9b7e606e1b51dd71fc2f0fe74199196844fb9fb6931559916ac20f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7562f8a98324c532264e95844faa0a1286a8a69f2ef5b4318d3042002e990f08
MD5 1ae2384290de0c6cefacd8a5585670c1
BLAKE2b-256 bd17c5c6db59b2891b64421ff2ca4c6cf7a1f93183742fcf508eca6a7952dcb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d20a53445e7e670be7e310c2ce71d422848a857f56990e32068dc23ff377683d
MD5 0111faaed69418fca27aaf94fbbc9efe
BLAKE2b-256 fb3090928357f04fefe40b90ba1ed1415a2bd0dd5c5064fb214ec43102a992ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 95.3 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.1rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 99408003030161001f78ceb5d8b51149507e2f23a083ce5357fbbba25d306ea2
MD5 5bf3e75632fce71dacc1e8cfe0713992
BLAKE2b-256 612616a5a6d2de1b750cd2964526650d119c1c533c208f933b19b2fa22e953e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 98.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.1rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00c71dc1c1eff28f1497948312cb4aeb607d932e0e7b00b1ef07f21de751589a
MD5 99931d25dea3aaac7829a3e8768e90cc
BLAKE2b-256 3ae1c0a770022317aec4c3f6be22cb606f8a99c79f7952150876b7cbbafcf6c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 93.5 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.1rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a0647cbaa05e41224099069ac185c944f932646b5003a66428385cf9b442a7fd
MD5 42a3abaada3f5fcc25d00a5916e2ab1d
BLAKE2b-256 d6150bad25f5ab879820e2e03435bd4c961e638b45ab4f4d5102fb0817eca359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03990a25d618a99f6a2f223bc0a62421760b2b252f5383a539e7d6e774e3228b
MD5 0a5a78c6d453005250ac0722bdc8d02c
BLAKE2b-256 7e1d0b0db77ce97e02a511b316e843198e39854fc99db7bb0dfb0be8aecc063b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9dcdc35fb353c985720f6accd8b8a6919f943364a4a8fecf1be23f631ab3f9c2
MD5 36913342b4f37a82b80047e7dae43826
BLAKE2b-256 b029670916bfc483ca65738ab33819d219396dc7e07d1122d04325ce4417e1b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aa6e95cd15c1f037f9b83c2c98823cfb0ec083d639c20209a374d26c8fa05db
MD5 d57bcae7dd17af853066471245eba62e
BLAKE2b-256 fbab3e4270c89adb0cb67e59147b4616af5c21235038302363c1b74e6ec6df23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a7cf8cd153f980f4d6006ad2bc4ea7a85fcd8dca9e1978e3d42ec59083bdfe2a
MD5 a76db648cedbc7a54d91666ca887dcef
BLAKE2b-256 bb2268b674044b709b817beaf99b417db3f17451e52d8ca3692592be47402acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2577ef5132660e58c94df34a840e31f2d507dd5862e530da9724e8b863712497
MD5 1ddc8526b4bc5523f65add98d0d58d2c
BLAKE2b-256 51fe4c6a336baf92118cc8497344ad0d1b8cba7f32b0f84ec91477d24fa06044

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 545df8b5fc4fffbff33fd7eecb6a5f56edaad930cd4f5ec9dc56256adbb8f2a5
MD5 03daf9a88451664017b0473ee5a9d5ce
BLAKE2b-256 af932e3e0afbdfd0ef7c0df7104f6fa9bfcadf522ded9a749fb83bf2875f3446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df4616a9edad9412709e26e58145e64ce2b8a4315d05fb2729096c5ac765d029
MD5 9b44f88a03a374b15531575486f665cd
BLAKE2b-256 d41542f165e07e4c788f9c0d6c67de46d547e2214d9bf26812d57a5a9e0decaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 202e53f479f378eb27b19340017a69baa7a5f2e5af0df27d9a0a318721744c97
MD5 0535023e62117fa3492f0f1537abdcab
BLAKE2b-256 a7ee91a9db9cf3b51da74cc67afc2b2b26724174ec72ad0f10fe4f6ca234c792

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 95.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 39ca52632a29c88a7f3bd5ca41b4a41e1cfa11c919e4b4cc1578796ac1bd3ecb
MD5 437cfb58a8fa314d7210e264715284b4
BLAKE2b-256 ea0bae8a931f4af18ceb630ef09be7b3f3048cc4224f136c5eee280372f0212a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 98.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.1rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e733bd11a5dcc6e479a1e2c42b5f346f334ac251d040c8178d364b12d366f6eb
MD5 98b7666c7fdb0b4fb64595af629e2fe3
BLAKE2b-256 aee1aa53359b213d723a2fa532c79297cbc57ad8124b3ec79c1fea73cc8bd95a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 93.5 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.1rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cc0f43474e964ac39b1119793b61faef4755e37e4fa72d6977194e7422a59700
MD5 8c8620924614635e926782afe7137efc
BLAKE2b-256 62b2dc573900858fc09ab55deba533d71df0c12d4950c0a22fc402bba47260cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c547dc81617c60737e7260a5380e4550fd491a52162ef2124a489c3030e98dc3
MD5 420f7c830dc347a7427f3d322d5c50e9
BLAKE2b-256 abc70713b723835f52f5dd7b07521642cfc9bcd85ea08bcf840e3272f906d8d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 300e888c112dc04df53519e79516a88880281bd895d2abfba6523b0ffaf47d74
MD5 ce46d0396ca65e1faed5c2f1cc615e8e
BLAKE2b-256 a6f79282c2b848a546e232286f268096cd4982843996e3784c26e6eb898eacd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad76d01287774039e99259d16b03e078cea66f819d5960c49a5642f1d5368e26
MD5 d66777d2ef2777ff70e1d5baf381123f
BLAKE2b-256 f0cf819f6dd8d593be5e4c91ae6e54895bdf331fad5f84d63a656ddfe5909477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6044cd9b3bd83ecfa799345b78b54fff6f6b2e5c63cab9b51654ac83819d0baf
MD5 07741e3564212d361d306873e1954e2c
BLAKE2b-256 81dd2652f33c2b0f05e5a6599c4ed257318f0b89b7044d96422f34b48f5aee3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e115e21cc71d806c3df76018748fa84a8556257f7838254e86ed7659f593b2f7
MD5 cd0ea184dbfd79aac879b3b31212ff62
BLAKE2b-256 655d5df85f56d73d521e39aeb9869dbc204c74d0c9b358fd35beca7b17e6049e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a018c3ee16f4ff62e779743cc38831c1245a234e9c8cb6f8f551168bddee9288
MD5 5d0ffa8df5e4d29b1ca5fbf85f269126
BLAKE2b-256 61edb57a0327358310c1707d505e8e0caa3f7eb687b4fdc2ad6f82edf5c094c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 880dcd547a4a703d1dbb6b00938d5f8483b5bf601bc66848d8e2dfff57786743
MD5 b8eb8f9f613f257e8c5db091f10a4cde
BLAKE2b-256 da576c3575bad87bd37e6d5b026f60c07c3ac4d303cd29adcb4a540b11c1a5a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f1a732ed0b490811e84172bad6163aba1ac9a603e25822b3acbc729b2763a3f
MD5 da1903ccf8e1c967a9384577576cacd4
BLAKE2b-256 d47f932a3c2c3c7d782f44445d7a04d71dabdfe3a22c11434184b5759ba53e55

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 489cd909c3f6cdcfccf8f6e021dd0b22af69089d0a3fb5c0d972602b333ab13a
MD5 cafd1d3eafcbac6a806ee9c4700a8ef6
BLAKE2b-256 0d79c12f4c0eae158b092412e661c982d445d9792be344043babe88fdd85ed0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 98.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.1rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 641e75b9f288f74c1d75f63d7875eeed537fa4a5fcc6a30d3aaddfb2c3ee03bc
MD5 25cbbaef60e3f672621c351e7fbbbf7d
BLAKE2b-256 5f3fe6523032e8f348ec1a0c21251993b977c89cdbcc53a8f04505b403b54e9c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 93.4 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.1rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b589ad53b753e1285ab7ee3012ea230160526a16e8ee2980a03f80ac5ba5cd21
MD5 af512f0773a9f4fe094607014f03a01f
BLAKE2b-256 469a1e343adaa1bf9e8cd26adcc6eff4dfc26cd16e0c2acd6c57e3cd446aa94a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2008b4cf81b5b1fcd752cbbff4b055f1b9df4b6ef3e9c577ee1f95dec2917ca
MD5 992caa2aa4e0e385cfe08e7eedf116bb
BLAKE2b-256 5e5e2bca2fb5942dc3fdf328d74589569eb64597b104b373da275f5817805c90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 79cb13013ca24e8f7096f008646493c77828d7ffddfe2e03fa436ead4ad6e788
MD5 19da0159e1a452d3900e6333b2f2c48f
BLAKE2b-256 83ecf61c2fe841fc9dd114eccc7b4b430312f425f691adf494d370454f02129c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c3267608650caeeeea4d2b5384b564d39c94ca99e924c28614ff249bc959cfc
MD5 ebed0792b39c9bc612ba27f942f87b70
BLAKE2b-256 fbe5f3ab180030aa440236c05ccc26ec04d5cca7749c45b11b4467227ecf15eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9a36cdc7068f70b67c08be7e14e5253e070618c2d8c023364415a50ff038f316
MD5 88222d59f4f70839c2990f6208537b26
BLAKE2b-256 49171c2bc2d2dd38976c18f85c94e160a1d0a82bdfdfc34ce60b062730887fcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ab0b1ff5a3ad41a2d39f02c16e1fa102b2839cd4843c947a1dacb3d58c7d403
MD5 e3abaf8488d46434fdb3b8e5358eac0e
BLAKE2b-256 a69099e614414d94e5a359ae3511351e8e1d7ecf35d8adcac62f9915dc4717dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 db2c2003e88b3cb9d50b8a685b46c460bda1ab2eb6aefdf6e97ae189c4f5abf8
MD5 f8641098a2d2efe156e0452fbd4bb99b
BLAKE2b-256 d92241ef99270cf5d4a93ae7d7c1c7b925b56a39f74353f7ef1c63805f5601aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef5db4c20938b8362712df7b633b2c50b90bf7feb20794bced4d4799f9f7822
MD5 2d4eaac8837a8cab4636c13537052a8c
BLAKE2b-256 8aa9e339fff54678c8eb49356d4bbe7d3c56be6f6b46657708899d301451ec01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fc802eab73e09e958857369529729d8fc18e4e88e928398a4a7ad39b3b359c5
MD5 5c05e082c4b6254290abd3fa7a693574
BLAKE2b-256 906c1d4b630d3d1dc8d807333ea7d5472a0efd0018eb73aa89db95707c7d0263

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 be423bba283e72450721f3656559791eb50f0bef91a1f62c18f7865fcb6c7a0d
MD5 03f34b57bdf0b6ea975ed81968664996
BLAKE2b-256 0729fdcfcb0487f73359a0e6ec1dd8f939d441f5a9c6f9c47a27ecdc8b8c7b32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 98.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.1rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2dc6663e2dbcd702c15f30a6b159a05c3c7a385bf234acbab27d7873f8018cf9
MD5 249959885337a7062733c3532a3c1114
BLAKE2b-256 d0dc3d0c70301dc86cab6be91c17eb8990b611f2c1fd5100459aa4a91f95b395

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.4.1rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 93.5 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.1rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5b9e68dce6dd08bb8bb557aeebfe98937cd576ef095ddac58f9594f8e11a7bd8
MD5 f7efb3c2dbbdfa545edc3a7f420f35b5
BLAKE2b-256 6b3cc9f426945ddc06ffacfd40a3af89e84fcafdb7b4c159340312d2c75d2525

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 403ca5360385bfc4d3d4e29100ee112f06110b4bb248d7d47750ec28309224d9
MD5 3366312c8bee52165f16579e454cc960
BLAKE2b-256 e705ce2138459a380f22a5b6c49f02500f0d670e41060402f57787952ab374b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 655bad317230378d59b893ccc00bfea9a7ae74c60d5918a9cd6a3db0fa0d18a8
MD5 2c9ddfb98d9599eb9bf809e89d725c5e
BLAKE2b-256 ad32d847f16c58621696ccff0348e7006695cdb1681d52a3e59c5d152a8f01d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea90b51bb4c10a73c3c87734e867519c9852bfa44a515ad8ef009aaa66cc1c19
MD5 6967c08b90a3089159b96b5198c2424a
BLAKE2b-256 2c29b3b038fc2e6ac5bb9ed80eaedd24aa22fe24a7007e40827a8a8880e63546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 eb3de4e50d3b0563e27cd43cac9474e4259e4e63aa55304484ba2eff1dc9fd13
MD5 594e1055d622ef4111f8274d73ecfe4e
BLAKE2b-256 fe3154e979c7ad162e88ebcd318fe2191c487689c022d256f47077a672b4e5f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7dd3dacc947386b9640708f78d5e4619ba90d8db5653c5cf219d9bb30577903e
MD5 c2d477743b5a13fa194091f8b2c77d72
BLAKE2b-256 a14810d7803a28269de16980be401cdac584a6d2152eeaea84f7ebf157bbc5d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.4.1rc1-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.1rc1-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.1rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4d456a619890c846f694f0337e65c66c413fcb27acbd5c81573be216fd80d6d2
MD5 ab55f38bfbc602e686a539e7c8956677
BLAKE2b-256 87795354fb270461353813c197dd8e1bb0de706e7299d119265b4bccd7c7ee5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04b9157780b3e0e05de2c976f11351051432453df9965ebe3f3e329abcba6de4
MD5 85fd45625288cb56178ea2937423d811
BLAKE2b-256 d33a439b5040cb9cd7e10cafe6d62e0d4f263a0efdeee1d9c3f3e2ee5884b52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.4.1rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 319af4039e17bfcc6368aae68f277c7adc6ed88e805d27e9e85ecf02a4af759b
MD5 3e95ab2c188651cb7cf9804e20557283
BLAKE2b-256 8fa633538f058ed68c91cbb5e0cc3bf5b62f64d249624ab136ddf92ad64c71b5

See more details on using hashes here.

Provenance

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

This release

2.4.1rc1 This release

101 files

2.4.0

101 files

2.3.0

90 files

2.2.2

90 files

2.2.1

90 files

2.2.0

90 files

2.1.2

90 files

2.1.1

74 files

2.1.0

74 files

2.0.1

107 files

2.0.0

107 files

1.17.3

81 files

1.17.2

79 files

1.17.1

72 files

1.17.0

65 files

1.16.0

70 files

1.15.0

75 files

1.14.2

30 files

1.14.1

74 files

1.14.0

64 files

1.13.3

51 files

1.13.2

44 files

1.13.1

45 files

1.13.0

45 files

1.12.1

1 file

1.12.0

1 file

1.11.2

1 file

1.11.1

1 file

1.11.0

1 file

1.10.11

1 file

1.10.10

1 file

1.10.9

1 file

1.10.8

1 file

1.10.7

1 file

1.10.6

1 file

1.10.5

1 file

1.10.4

1 file

1.10.3

1.10.2

1 file

1.10.1

1 file

1.10.0

1 file

1.9.0

1 file

1.8.0

1 file

1.7.0

1 file

1.6.0

1 file

1.5.1

1 file

1.5.0

1 file

1.4.2

1 file

1.4.1

1 file

1.4.0

1 file

1.3.1

1 file

1.3.0

1 file

1.2.1

1 file

1.2.0

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.1.0

1 file

1.0.0

1 file

0.0.0

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page