Skip to main content

Module for decorators, wrappers and monkey patching.

Project description

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.

Project details


Release history Release notifications | RSS feed

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.2.2rc3.tar.gz (129.1 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.2.2rc3-py3-none-any.whl (61.5 kB view details)

Uploaded Python 3

wrapt-2.2.2rc3-cp314-cp314t-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.2.2rc3-cp314-cp314t-win_amd64.whl (82.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.2rc3-cp314-cp314t-win32.whl (79.1 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.2rc3-cp314-cp314t-musllinux_1_2_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp314-cp314t-musllinux_1_2_riscv64.whl (192.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp314-cp314t-musllinux_1_2_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.4 kB view details)

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

wrapt-2.2.2rc3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.5 kB view details)

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

wrapt-2.2.2rc3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.4 kB view details)

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

wrapt-2.2.2rc3-cp314-cp314t-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.2rc3-cp314-cp314t-macosx_10_15_x86_64.whl (83.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.2rc3-cp314-cp314-win_arm64.whl (80.1 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.2rc3-cp314-cp314-win_amd64.whl (80.9 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.2.2rc3-cp314-cp314-win32.whl (78.1 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.2.2rc3-cp314-cp314-musllinux_1_2_x86_64.whl (166.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp314-cp314-musllinux_1_2_riscv64.whl (157.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp314-cp314-musllinux_1_2_aarch64.whl (166.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.5 kB view details)

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

wrapt-2.2.2rc3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.8 kB view details)

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

wrapt-2.2.2rc3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.8 kB view details)

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

wrapt-2.2.2rc3-cp314-cp314-macosx_11_0_arm64.whl (82.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.2rc3-cp314-cp314-macosx_10_15_x86_64.whl (81.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.2.2rc3-cp313-cp313t-win_arm64.whl (80.8 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.2.2rc3-cp313-cp313t-win_amd64.whl (82.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.2rc3-cp313-cp313t-win32.whl (78.6 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.2rc3-cp313-cp313t-musllinux_1_2_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp313-cp313t-musllinux_1_2_riscv64.whl (192.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp313-cp313t-musllinux_1_2_aarch64.whl (206.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.4 kB view details)

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

wrapt-2.2.2rc3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.5 kB view details)

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

wrapt-2.2.2rc3-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.5 kB view details)

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

wrapt-2.2.2rc3-cp313-cp313t-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.2.2rc3-cp313-cp313t-macosx_10_13_x86_64.whl (83.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.2rc3-cp313-cp313-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.2.2rc3-cp313-cp313-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.2.2rc3-cp313-cp313-win32.whl (77.6 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.2.2rc3-cp313-cp313-musllinux_1_2_x86_64.whl (167.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp313-cp313-musllinux_1_2_riscv64.whl (157.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp313-cp313-musllinux_1_2_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.7 kB view details)

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

wrapt-2.2.2rc3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.5 kB view details)

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

wrapt-2.2.2rc3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.9 kB view details)

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

wrapt-2.2.2rc3-cp313-cp313-macosx_11_0_arm64.whl (81.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.2.2rc3-cp313-cp313-macosx_10_13_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.2rc3-cp312-cp312-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.2.2rc3-cp312-cp312-win_amd64.whl (80.6 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.2rc3-cp312-cp312-win32.whl (77.8 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.2rc3-cp312-cp312-musllinux_1_2_x86_64.whl (168.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp312-cp312-musllinux_1_2_riscv64.whl (158.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp312-cp312-musllinux_1_2_aarch64.whl (169.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.7 kB view details)

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

wrapt-2.2.2rc3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.6 kB view details)

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

wrapt-2.2.2rc3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.9 kB view details)

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

wrapt-2.2.2rc3-cp312-cp312-macosx_11_0_arm64.whl (82.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.2.2rc3-cp312-cp312-macosx_10_13_x86_64.whl (81.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.2.2rc3-cp311-cp311-win_arm64.whl (79.5 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.2.2rc3-cp311-cp311-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.2rc3-cp311-cp311-win32.whl (77.5 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.2rc3-cp311-cp311-musllinux_1_2_x86_64.whl (158.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp311-cp311-musllinux_1_2_riscv64.whl (152.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp311-cp311-musllinux_1_2_aarch64.whl (159.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.8 kB view details)

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

wrapt-2.2.2rc3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.8 kB view details)

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

wrapt-2.2.2rc3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (159.7 kB view details)

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

wrapt-2.2.2rc3-cp311-cp311-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.2.2rc3-cp311-cp311-macosx_10_9_x86_64.whl (80.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.2rc3-cp310-cp310-win_arm64.whl (79.7 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.2rc3-cp310-cp310-win_amd64.whl (80.2 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.2.2rc3-cp310-cp310-win32.whl (77.3 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.2.2rc3-cp310-cp310-musllinux_1_2_x86_64.whl (152.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp310-cp310-musllinux_1_2_riscv64.whl (148.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp310-cp310-musllinux_1_2_aarch64.whl (153.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.5 kB view details)

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

wrapt-2.2.2rc3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.8 kB view details)

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

wrapt-2.2.2rc3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (153.0 kB view details)

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

wrapt-2.2.2rc3-cp310-cp310-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.2.2rc3-cp310-cp310-macosx_10_9_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.2rc3-cp39-cp39-win_arm64.whl (79.7 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.2.2rc3-cp39-cp39-win_amd64.whl (80.2 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.2.2rc3-cp39-cp39-win32.whl (77.3 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.2.2rc3-cp39-cp39-musllinux_1_2_x86_64.whl (152.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc3-cp39-cp39-musllinux_1_2_riscv64.whl (148.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc3-cp39-cp39-musllinux_1_2_aarch64.whl (153.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.4 kB view details)

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

wrapt-2.2.2rc3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.8 kB view details)

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

wrapt-2.2.2rc3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.8 kB view details)

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

wrapt-2.2.2rc3-cp39-cp39-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.2rc3-cp39-cp39-macosx_10_9_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.2.2rc3.tar.gz
  • Upload date:
  • Size: 129.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3.tar.gz
Algorithm Hash digest
SHA256 1dd544129eafe4c0e8ab3cf134201f6193c4c65a65f0545bd81f3c0a190202f5
MD5 800abf28b22c30eb15c8a934be324bb5
BLAKE2b-256 7a25a0a911b872feb3618d41632f06cd2945ee6d2478aa5f0262400c2133c4ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-py3-none-any.whl
  • Upload date:
  • Size: 61.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-py3-none-any.whl
Algorithm Hash digest
SHA256 c7e77383b6fd2c67ccdfb4352eee68e642018951aa21fce78a00e7047b40028e
MD5 9e399af6317a343ee34eeb270a4b0b2f
BLAKE2b-256 82d70b831b0a27ccd651d36de9e693e851ca7d6ca87d4028e72b17640f590932

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ce5d3511c496d79e35da8106a655499d79df9346fa45004a11de1c9c7bc926a0
MD5 3fc1746bed9f228644fa9739282125df
BLAKE2b-256 4cb23654d486320fcb78c2d0546393b939cefc1ecca6d68b451f77a62775f8b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 82.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c2111e6d639af3cbf3c4c79a77013ba07bc2190a07b5e23245e667817c5e0183
MD5 e2e8a2d58d40efa91e96a22cb7ff5c7c
BLAKE2b-256 97e1d1a5f9cee02588e7a93e820cd055e59c9eec74e7c3a09fb177b0e5314083

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 79.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 20e951722b702ef2a94c9363cec88ca21215e256891dfc14fcc931ed88c764f3
MD5 5f4c886dcbb6b9a503f01a39d2dca7af
BLAKE2b-256 8390483329a16fec672665147864cdd55c4718039c64ae59d08c6b75cd2a707f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3df7b5aaaed35d4997163dbe03388f27b3e7e6ae25c022fe0938fbef6f8f7142
MD5 7dcc06cf54a9d691bb5a6067529caa57
BLAKE2b-256 c12b0d229e05c0d4cdb62e1d183c8def5c3af35748a61f2709d9efca66e9cbb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8f108554c1cf0641eb1ae6e293f16a904669fbb27fcffb6b7ff2efe2f0b16018
MD5 41001269f9adc14b11ed6ef665f643d0
BLAKE2b-256 0822dd9bbd5408288e9d3c7a87f9255c7e65e4560af1f9120761b25573029e86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5275b911f96a587cae102462ea28cef5cf3e7b9cb02d5f3cc6782bbb5fef0ef7
MD5 fc618c9ef95c5704b500e064566c46a1
BLAKE2b-256 fcae671a64c1bfc8aed4f73aa3cab6448d9562ca48c6ee21ee31de1dbaf8611c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1f740dbd89f9830be8a68fc5fb1bb7b6522dbe90b9e2fc766a3026a7995d6235
MD5 2b14e44897c5f4ac741d80a952324667
BLAKE2b-256 0d7bc382fd79cf499ecc02d7d51b752813f4028bab3bad0d77cc5859a7d68ae3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 200d9cc179e927d9958c974134f1b6d086c841be10b7db0902358175b4570d3c
MD5 831148f853b5f64dd564bc9f7e2d87d7
BLAKE2b-256 e8b2dfbccdd842c71645d3ab721d944c5a652dbb2a2084eeeb1fbe96d40738aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fbc70e9c66abae2ac4af321e52d97cb0d2038e37683d2b61e584dfb7562f9677
MD5 73d91eb40428dc33aecc5cb8a69f0519
BLAKE2b-256 a051fd7ce84b0b0f4a7e9af122d44f8cfcb783d072d475eae029299c909bf907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45622249fa460c1e792114b31a96ad87e88a986d3ab3be81f1d34e6567910cec
MD5 506312c68c3d2cb8ee4df799e6e38093
BLAKE2b-256 0e9c3f59bab6f2487714901373981d92514db0e2c8e6bd346d0167c116c9cb5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e3211e208716a4647fd6457145e5390eaf5c739ec489c7ea0a9e986102d82a2
MD5 9aa5a06d821500aa528f2ad73dd2899e
BLAKE2b-256 809152968c3888ff68ba6f9dc3e1bb6b0cd32f459f5e03c9c5b53ea7e2b6736c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 80.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6062e3d82b229d90dc6190d50accee2b556e9ec1c962f2e017170ae3ee9fe7ac
MD5 3b4055d1e471e248f01e7bc7fce8f9cf
BLAKE2b-256 f5b90f251345a45ab431a738206e5ad56b8d55678cdf0535766bc7cc93980243

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.9 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 643c94da91f2f4e8b5c18543dd68bafe6f85cba2b61ac062566cbb1a617096c6
MD5 3f247596f9c470fea275e5c5355443df
BLAKE2b-256 06d29d0ea3e0733af76ed6bf90ffb15db27649f8354b520a8dcfb0a16c3a608b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0622f011538a96137482439b9a5b21d0d6bc38bca42561b0402f1f8cc2486477
MD5 0b35d387d931df8d20085fbfcb179c25
BLAKE2b-256 b85a2e0128440ac648d3fa3b5bff2b178b4596bb41350107c1d3129f1891c294

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 908fd96c1b3a9b9b92a8f7fa37f23815981bf85c664d60bb9cac50015d6b420a
MD5 5360f79fc2b5aa5f6aae5045cfef2d11
BLAKE2b-256 937f16b50d046699242107a60bc6704f5ac1415068154863dbcb4f80d27e97cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ffd0196df7186e03c85bd7cb3f190d699df4c299f061eae2e586a205998d2aef
MD5 502150a6caa0acd35cf166477c0afdac
BLAKE2b-256 f72cbf76794c9e4af35c66d78dcec263333288334485536cd1bce0bdac49cfeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1c0c3d84ba37a920538a29b73dfd78446fe910e91e4d283fcd55a46e0357546
MD5 77093f401dfc3fd40a91398d6fdcfe2d
BLAKE2b-256 a4f22c1e39147e88397c6f99426583ec03af603491c5b46ae4ed3926598e9beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 96b990cfef7a6287e0fb4180838edc25b37b90c0c10a26aa319342dbb36464c3
MD5 022ee12a7ec93d70ac8f0f7535eb1bfc
BLAKE2b-256 26f1091ca014a2a0c45ade5d8b71a883c185c114c5827feac11649be9556265d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88bfef4679bb528f659adbb35cbc2097e3cb1ddebad9de6c208d0c8e1b12dbd1
MD5 0a190c0623b3708fdfcfd59b90f0dd9b
BLAKE2b-256 32c196669e612388f3b31fa119bafbe9a252416aba2ac9fe33b2cef3a14be01d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bf77c062e67442097958ab9a0764616eb5be1bb117a0ca3525c3272f4363a44b
MD5 8e53cae9dc5e1341dfb55d796e734035
BLAKE2b-256 f8ca276d71c47f40ae8ff563b09a9cb68dfd0f500af8c054d775147a63dc59eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6e6008af29c0f00338383b2d3277d38f8fbb205a5be1c8bcfd77a5e02eb2a58
MD5 b83fddb79023833724bb0f90ec80ac75
BLAKE2b-256 ffcf8b459d7bf2fd575d66b4d098301f7930ec0ba7825206c35739a18b7b718e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8006c839c7bdb5b2707fe721cadcb0e01aa70245e84320e455fd9de4ee2eecc
MD5 5b507c26e1fffbe4562e84c01ebec571
BLAKE2b-256 4ac1f389a6b854632b3e5da50301c25acd75120fe3ba21c3e50bf5671807adc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 80.8 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 36e1dbe740e1508a9ae7c7b71251a28f61cf4c4b7baa3382c5d0ccfc82a4c58a
MD5 e812df5fb9ac0696647dab76517b1388
BLAKE2b-256 2d81a9e92063ec8c3232fb2d87521cb9f70ea24d35d530e494d405295a02ad08

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 82.0 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 72bc9c6f93655ccd9885e31cd41173340c50c4b3d203d72d048876dfed3de63c
MD5 a2d651bc9de3fa58acb11d20b3c2e105
BLAKE2b-256 129d022229b7fc0241ff481fd052e1771782fd7a2d5585940f098ed3686e5998

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 78.6 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 7490b7e6f7859553eac067978dc4563e1cdf679ca62bdb6d2dadc0fa264bb5bd
MD5 15886afad965019014db4966f63e2978
BLAKE2b-256 ee2d846cd373e8d66ad8eea52ae1f2c567dd6d232a400e0986f27ac833f59d8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f106243b49dd96872418a04420a6dbac1dd638e69f2f88b1bdfcf32f422bbb26
MD5 bcfc663291cafafaf30cecc3f2c813bd
BLAKE2b-256 68fb9cfaa7289414e6c7280b478dd268910bf5943d76b5ea50816cc0c68e58f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 06e3930fac0d132557179e28f476a565cbdd3cc86ff761091e2e418ccef7fd7f
MD5 02fefff8bdf7883fddf63fba2c137500
BLAKE2b-256 0adb18d3c69e7351bf7d456ebd0ca74ff7a96285cdc668d46d674db6eec8936d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55282cc6abb9007ec5f8400db6975ee6c3e900f3b64221acdf94447f5e79a175
MD5 dbabb2aedc76395ec530df60ab248c18
BLAKE2b-256 fe9242b110916929bffeb6528b1ed1d58d0db120d5162e59ad16c443dbb40621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 eeb7ca8794cfb453276982133b84de3400db05000b3c93800b26e606a60e1f13
MD5 28a16d9cc423b0a1df251c6efa2ac7a8
BLAKE2b-256 f6ef7c714e0a3d1d2838c293766c8e651d24654851790a8b1c5c7d519f6b7d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c3881ec77008cc2f0b3e438383665730b9bc59e629da43cdbf8a47e1c69894e
MD5 07d9a5f06e1da835110f78566a055980
BLAKE2b-256 dea03096dd4f71bc89c9bec3a7dc0c396cfc7d4aee50f538335fee6bf1c78ce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-cp313-cp313t-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.2.2rc3-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f882b885da5192eab293ea811a1baa50e00d447c47d2b576782a52e9aadda5e1
MD5 a3181470d7034cf3b3908803e4db4d76
BLAKE2b-256 d6b68d6d4c81d6c798f620f43f4d7ea4293a8ef98c316f2042ed313f9ec2b5ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec8f0650b2d76f0971976e1f839973495495e270dd14b8cb54136fec1bf90feb
MD5 e59c9486d858fb7bfabc1845e5a130f9
BLAKE2b-256 63ebf2c0967cfaa42eacd18abaf674f609016cb35acabf80dce92d730ada29cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9157e708e6c57d483bfd851fad11012f92c994e8c5f670b54defbfd385cb06ef
MD5 67a4ffb985cc144b8177fff19b2e7ffb
BLAKE2b-256 1f58275feb1fd4781827b8c2b7a36880bf3648b1060ddd7c6d5ba7b6f711d4b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fea45824fa11f8fb52214081da5d7b18b6b448864771e8ab73326d293f4af9fb
MD5 7b2196d78808787f2aa7c8deeef5f3ca
BLAKE2b-256 582afd258cb8f3aec76352279443baa82a1da9da987f4acbf2a52746ecd6028c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 80.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 076512e86f18c0505edbe998a6b12668113ae7bd467175146a3a96fa1b1a1056
MD5 de45402705315d8449fb5a026ed17361
BLAKE2b-256 7c21431f1b1fd690ee547a6458c92ef5c325a157afe1ecee161f21594a50c090

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 77.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 be70bd1dd52d508e8d49e6e866c6cfe2fcb55875c291ad9015cb1c55e55b14c6
MD5 8a8120798a87c768515354b51d024c64
BLAKE2b-256 ea3fb0f1aa2738d326cb04e87cd1c0d9cb248be29404d536869aabf6e7d9b260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b8860d420925571959c655360f8bb67548ef58b90735dac2eab944f0dba9e16
MD5 6334e5191440e929862a7ffd92253786
BLAKE2b-256 72fbe0bb5aaab8470f48497bf70e683958a9e0b51fbb8f3e28253d7accc24391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 97e84cfd571001e75515a50b4f94d81027f1f95666ecd7569e512e2d289fb879
MD5 af471275cbe54ac3a530c79be4d8eae2
BLAKE2b-256 98b5431d2dc3ea98fcfba15f8edc749afa54d0060e3c4538812aabb01b400932

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f2891b8c4e3cf9cb4837b1ab22b523a4d1ec302a5c543262f9ee2f2d22b3315
MD5 ae50ca14f4d79de8ff56b5e475ca2581
BLAKE2b-256 72f42629ff7e46aee11bb911756e537b200e19e6983866f4bd07765c1a494159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8e339f067d4580915d5a30d6cf9ed6ee5d2d5813aefaa441fcb4300e476a5879
MD5 a2fe58eb7569d003cf58671b2f13b178
BLAKE2b-256 cfaba750893a26512186161be5a3070b4beee6c165bbdd509d1b9e5cae2094c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 786c4004edaf6b8453dca1f4b9575c6c715cc319186e004fc7141a6f72a0e381
MD5 bad2f00ef2aa674d2006b8dfac7407ce
BLAKE2b-256 3da52841971ada28fd67dc5b629df41a70cba1986770978e69544ff722179e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 edcb5afff1860207c20dc5d1dda81972b7931bc217d73fdf3c947e380f16a686
MD5 bb1c9d2f5683a4eeb31e8364780bbf7b
BLAKE2b-256 ee63314c2f32240ce2eb8286515d5ea33ddd905c627e969b30cef8748d7983a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 642367a2c66349f969937edf4a7abb0762829be0f29939d337687fac29b9c492
MD5 c3e9c1f09f88afd663cba790bdf3007d
BLAKE2b-256 b564e313b23135d1dadf758f4e314a64150ab3d16393d37107d1c7ba7b4a8d98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 940a62b0349d6adedf94ad42f3f43b46455667074b7939f61bd75ad10677972d
MD5 c9fd572bbaf9050c8577317b8055aab5
BLAKE2b-256 3b94df47dc480931052147e928164d2441566acfd2175e37e1e66db490d6ff0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 79.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5923f0da61eaf58075a40c8ae30442b93050b8433fb75bf0fd8a6b43d73b68a5
MD5 035e431af181889867050dda8c357944
BLAKE2b-256 16e54b46cd25de888617eef70760d6d2ee6a82b81f97b7bfcdeb45fc7c4b7d49

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 80.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7cc03752f0d8ba19aa183bbc833d69e6255b92acfea45e308ebd6165b6d8742
MD5 6796b0fd3969e2cd2185db9c06b2d465
BLAKE2b-256 2c055f38c7687140af9a1b400d16e47b063b084d010fb463a439911a8deca82f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9d526f3bfb7893435491055784d7e657caddac23fd3b2ada53f1f66eb1895342
MD5 fa725806902d2e53e2f752dfedc229d1
BLAKE2b-256 172b746b19d4a911c09c95d99350b7292193374146ccb531a7d94f848658309b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e4c54281c35d53d238d614d76599ab354ce5e3854ef62f3bb9761846d47aca9
MD5 549906972a06ed3706a86cd69410949d
BLAKE2b-256 4622f97a4029436cbea798d056462ebe12c32caafc09c5d940f4f62f283e9adc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fcb8ae19106a151a79a0918d4e04afa3a922d6706df02e1a0f1930b4ca2e3b10
MD5 af98aa930b73a5344d9bc1df07db9164
BLAKE2b-256 2cf2c117d0b5ffbf04100db682213e69aa26c6b108ab05329367cc2554d007f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d5159ccb33f91da33b5d842a6035c73cdc02db149315bb208db512f541e34eb
MD5 ec482a5194d5e3cf2f3c2be71a62b954
BLAKE2b-256 68ae82a89f7576f9f31f4875cdd17ef4411351082f13122baaf0e96b030c8944

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1f9326a11ec9d79eef51b5d06e7f894d8b6eb37139470cc1583e242898cea05a
MD5 b7b3f88a5d8f9b634f81dbea2a24d8e3
BLAKE2b-256 6edd1b5e4c99b857b90f12009f17c88975e96dc4160d9ff90d9af0429f03132b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8ebbe6d21138589e75dc1b906dca9b212f0f66513f1b64fc0dd9e1e002b0cdd
MD5 df62bd18577b4aab001f697d2685810d
BLAKE2b-256 77ada8efac110de8559405ce7838754b1237d13e04c915a070764e418e94161b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7bcf3f7ee6888294df045d0d1717cfb89955c421c8d5c72e0519be5596eec9b2
MD5 1f388c4ec9a0cb126d772d000e5a3b11
BLAKE2b-256 896a3ed8965d483bb72a61220e1bf15f7a7211bee1609a794473e7240c34ea30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce50464b7cd7f7b56af5da2a0e8ae796ac724a6aea9fa71f5328932f3a2aee5a
MD5 d7abb530d0aada63afd655317d6e2590
BLAKE2b-256 a59f4b018edb6c95f2686dc5448a8927110cd3d813b484d2c4b748de06e355c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 780779632e8ccf86b6c86d1547f0d1b241bdbfe8108e4c79c05029dddd5c0e77
MD5 9f83a0854a0dba2113748f62d4f0cbe8
BLAKE2b-256 3ff60a28f74373112a092519eed1311dfffc0b7e7c8b0bae9d7bc11aa8f01d86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 79.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 31fae73472bcc93fb427904b0a59fd6d9767c3460b0cfcf97108fb8848993c5a
MD5 ace8ff94a16e36d540ac711aed62d231
BLAKE2b-256 b6b408c4b8fe6f8397c13649bc3c25011e9b9fd11da0e8f4336566eec1febbac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 80.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d2760492993782dc27cec99449bb79228325a97a9ac2d21dd1713c66fc42fcae
MD5 c4af31f742e4a2b395249c0536f36e86
BLAKE2b-256 53f2ae6fe5fdf94b6e1e3257f0780057c60add3accec5ab4ce3b83b9c89c3143

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d1d2a29c6cd343e0b999e6fb373d1af2066eecf75e03b57b6eade59ad2fef09
MD5 8d52887a7b8bccbf59235111d3b39004
BLAKE2b-256 0cbfdaea96366f5bc2a9fabefd9f88f117b2f9dbcafe379472fb029a43468953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74c24b07b8c657806608b903b8c89a255ba38e66944ba254137592aa21d3eecd
MD5 7182e2fdbe3856d9477f66490e35b064
BLAKE2b-256 952d15685376b674e4944c3d5d378a222a5c3de3398d1a02f6c980b6f84de8ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 25e77821dfc6ee80333c29cedda5e01957285a38a045d5f5b8703b3eb1fe7813
MD5 e66d0d4168feaf7792a80623b7286b3f
BLAKE2b-256 c2a32b4ea36ac3a0f0fa659ad54d31badde7f8c85842612afd0f91ae22a1ec8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6166a56261273f0291f101c92a5d0496e1f735b3e48a4428c1fb4d9bb97eeb54
MD5 d0a0fbc62f46816bbf71d3128b4e1de5
BLAKE2b-256 1741faa82b3bb7db34b566e1c6ae4e2e3e10bad866384c279db3966dbb997607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a0d919432a63cb6286a4c2c4b3d00fb9ddd37d719d9df93f4628b7d87f9adb4c
MD5 f0f7158e257556402c5f1b5c1ece75d5
BLAKE2b-256 e9ae093a2da89f0bedc184a0d8ddb64166635137abeeca39a79e2707c6569564

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e407975c3674623771de9892ffb4bb6a030f13b3b3690e24e003b1b6a3bbb15
MD5 435eb7bdb3da758c2d257f9543f93eff
BLAKE2b-256 aa1d8054d39fcf95db302b3c9dd5f4e38f24d6eefecc27b79818af91f249df83

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 48e170b2f7f483b64e020df763bc186ba64c1be6793178fb2fe8cbc82f065919
MD5 05c6927dda28ad4b68f790db59f83137
BLAKE2b-256 2287fdc47cff4d74dc44f11f9f9eb36a4d6f06670e67eaac4d0879c9fd067073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee8900ac3aa283657e24f95559c19ff9826f902faf087566543847b9ba54e154
MD5 d5d5736d9dafc605b06cbe8259c9b46f
BLAKE2b-256 6b906ad7dac380aaafaf220b6e7a59e37f2696603b35ba215f858702cb329d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a3fc1de8af2536376a172155226a4d24e6d1ebae7c330b0c364eaa98922d894
MD5 c98c57b73815e132e9d43ff85bf4888d
BLAKE2b-256 f0432fbec54090f79a898c7a9033a4b74b6dba99d5a8b369102de22d88a6c1db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 79.7 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ac733d618f6960a67d2edf48d4aae694d0d778701fac1ea925fad7480377923c
MD5 6c70619176dd1f79d19a16972becda33
BLAKE2b-256 51cf984c37f7761f980019bcda73614c95dc228080ca23df6424af5834dc20ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f1804d4fd338528f68e21f98f7a826c3626256e7fb13531e44d77ef9ce5f1e7b
MD5 7eb1dd77b00fd837d934f804767cca19
BLAKE2b-256 c04923b6b236cd393e33cc6be2b3dada5ef03860a8e5ff672092f2b9b7409844

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 181e4793170e6b81143ba59f5888ac9edbf3d1b1af373d964ae4db91008c1279
MD5 a29320d646ab760e8a40e4226f9d4fd3
BLAKE2b-256 b9b0036beb8db2f286626dc598cceb097dab34b8a381f535905b17dd666aa5ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75a36c1330a633f991a31b024079298f9a6bab83cca793f636632287bc2f253a
MD5 e83d51724d3afef320c66da9c8b4ee3f
BLAKE2b-256 31f86fcab56d78f408be39024be29239c108083cf4e4237450378877e7833f32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6adc1af181f2a837893192da572d1c3c56a370cb01c679dfd92296c5d220dc57
MD5 7ac30052b613bd1ac35c1b783903a640
BLAKE2b-256 be9aacfb21e5e81484cd8b3b2241f550ffdc5ee24d267afd57cd1d536be06a6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcabde75c88377b6efcdb76c77702e92917598b0d8acbf4099982ab759727045
MD5 6ddaa27c85dea098fb74b8d848048b9c
BLAKE2b-256 5b68a1f6ce19b28dff86708bc74e877eac6b0da490d41340a39f97b85a0750b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 abfc0e00475c06052a8d8160105488805db7073c1d16f531209aa214b3bfcb9e
MD5 8e8535dc5065f7f6bda3d1e97bcfc24d
BLAKE2b-256 23c0f775e27b2436248799125501c81856c537f30c67d79d1b808cac8765e84d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 950b3fee3f7275e0ccebaa43aecc1ba56be0056c53ab72698c7d6ea4db1244fc
MD5 09f6b650a56b1cab109b19541f332499
BLAKE2b-256 79e4890a1bff3f2762a60c04c48f1049c0a5bce5fc6262e58972984dd8d2383e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ffc37d3bdb1c5dc29b486a1587042875aa753afaca667f27188cae402590f0de
MD5 76e6106048d6a8dd5dfd3fba49b7431b
BLAKE2b-256 85c5de1e0bbe35e9b7e51520f3e54ca6a3bf353a1fd273ddd2179cdf0866b7ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b233348cbe3b0bc42de01ae1f505c7ef3a7b8df233326b67c3e6358b7037781b
MD5 4bc4d6132006ccb1037eefd8e93b22e1
BLAKE2b-256 036f181b1ca43cd45e09075c71bc6e5b115ab8cc3113a3af01e1409a7cde735c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a33df993682a067445810172ae981a221f57fa475e61ddadceb410136b2b7250
MD5 ed903b5389c6cc8984240980c8fd582d
BLAKE2b-256 76d75274c504fd2ef4db57bf120a0cdb61e9c5b808e8e10b75f355bf881d573b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.7 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 4903e247d9747b056b4c9a45206d8b505f144de56e6bdfc202010048f3caeacb
MD5 adc5fde2fe69fbab4ceb2d00a90dea5d
BLAKE2b-256 18d437ba7cea0ed17090ea8515da82b6cd32267a4b2c1967a304d01f2ba1961c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d266fb53e77496db46d4a1fcc840267c48e81cd5ba3c57dbd8f9e9610c14b096
MD5 41e6bb4e1dfa78e49a2865716c1ad729
BLAKE2b-256 ebefbac0a3bf2dc4c5625ba169ee458e3068ab4cba3db85f8d1c0ca652b197c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 72f1df6090d2f0244546bc9cd26b0f39c879e78bf9c0c9d748085aedfb749197
MD5 b1f1d9809cfa33a0875d74098d40b42a
BLAKE2b-256 d53c78bdd678c63e28473eda21dba88898b6f8ec3a49cdd90f3763292a7f6dda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a86c4c476869644537f420a3eb05170f2250b187bfa73524f1be8821a71cade8
MD5 e215dde29bac618475d538c6f6a5901e
BLAKE2b-256 117eea97843a41a2d8bd3673227183948ebf8d0cf778d7b321455324ab66415f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1ca0479b2bc9a18d2f3f6de080932374271c1d8dc536d34007e4609eef93cb27
MD5 24fe3ec8224a8a7c1092887148250f93
BLAKE2b-256 c824feee2815c00915065d2f95c902c85039c3ee95fe664b1a1999fce9231de0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5aa7e3d1d094cd4e5e8e1b7b71b5980523b93f2da7f810d2d24f647358973f5f
MD5 148b1d822c74f9037742dc0f6cf28c41
BLAKE2b-256 f8b77e31e9fb0e2920379843ca9cc27774c3cc0644f6ff568eb33f82b9922899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ae33ecc4083ad40db90b7832d248496c1445dd262ca6c508f3f22e9a01920fd3
MD5 658203305a2016a6e9800cc9f6141c48
BLAKE2b-256 a037849e1ef15e0d453c08c811bcc5b2e8757e143eb9fce8243a39a9a53efed5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b16839848a891af04e2c4c127802128e510d8daac9fecc4a0d13323ea3e32dc
MD5 05315223ee7aabe0e3f78e5d3b3cc919
BLAKE2b-256 713cf816c42b334d7a0ad3b3360daccd5242bffcd03587734dda7f6dc2b8e3b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.2.2rc3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f50037115f5906e359017fdbb1d64c36ffd05a83f0c77b882f5662d5c660338f
MD5 1e4d0dc051ac9e20421d5fe2fed59c4a
BLAKE2b-256 1ddd0dc5cdfa3ba02c1dac117c622b8764bc5665ab49009a5cba0d6fb2ebcdd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a305cd02d8b64223e39fa33bc9179d7a67c654d72a0f8d6cc612b023d62e845
MD5 e218b4bc099e18f46944d3d602279ee8
BLAKE2b-256 c5fd95d3918011ee5c4e630fde4bf4268895f1971354e71c50e4c9045c598b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0dd3caa5c41e510655fbd42c1002e8406fd4284717ee50cfe739441af2c8293d
MD5 b604ed37b7c0f63acbde30b0fb611f09
BLAKE2b-256 cdb024f27ecf6ba9281503b7623c96608a2e0b804f2c6869f87b02030b2f164e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc3-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.

Supported by

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