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.2rc2.tar.gz (129.0 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.2rc2-py3-none-any.whl (61.5 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.2rc2-cp314-cp314t-win32.whl (79.0 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.2rc2-cp314-cp314t-musllinux_1_2_x86_64.whl (198.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2rc2-cp314-cp314t-musllinux_1_2_riscv64.whl (192.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-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.2rc2-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.2rc2-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.2rc2-cp314-cp314t-macosx_11_0_arm64.whl (83.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.2rc2-cp314-cp314-win_arm64.whl (80.0 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.2rc2-cp314-cp314-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

wrapt-2.2.2rc2-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.2rc2-cp314-cp314-musllinux_1_2_riscv64.whl (157.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.4 kB view details)

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

wrapt-2.2.2rc2-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.2rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.7 kB view details)

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

wrapt-2.2.2rc2-cp314-cp314-macosx_11_0_arm64.whl (81.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.2rc2-cp314-cp314-macosx_10_15_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.2rc2-cp313-cp313t-win32.whl (78.5 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.2rc2-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.2rc2-cp313-cp313t-musllinux_1_2_riscv64.whl (192.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2rc2-cp313-cp313t-musllinux_1_2_aarch64.whl (206.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.3 kB view details)

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

wrapt-2.2.2rc2-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.2rc2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.4 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

wrapt-2.2.2rc2-cp313-cp313-musllinux_1_2_x86_64.whl (167.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.6 kB view details)

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

wrapt-2.2.2rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.4 kB view details)

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

wrapt-2.2.2rc2-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.2rc2-cp313-cp313-macosx_11_0_arm64.whl (81.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.2rc2-cp312-cp312-win_arm64.whl (79.5 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.2rc2-cp312-cp312-win32.whl (77.7 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.2rc2-cp312-cp312-musllinux_1_2_x86_64.whl (168.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-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.2rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.5 kB view details)

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

wrapt-2.2.2rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.8 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.2rc2-cp311-cp311-win32.whl (77.4 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.2rc2-cp311-cp311-musllinux_1_2_x86_64.whl (158.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc2-cp311-cp311-musllinux_1_2_riscv64.whl (152.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.7 kB view details)

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

wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp311-cp311-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.2rc2-cp310-cp310-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.2rc2-cp310-cp310-win_amd64.whl (80.1 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

wrapt-2.2.2rc2-cp310-cp310-musllinux_1_2_x86_64.whl (152.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc2-cp310-cp310-musllinux_1_2_riscv64.whl (148.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc2-cp310-cp310-musllinux_1_2_aarch64.whl (153.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-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.2rc2-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.2rc2-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.2rc2-cp310-cp310-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.2rc2-cp39-cp39-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

wrapt-2.2.2rc2-cp39-cp39-musllinux_1_2_x86_64.whl (152.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc2-cp39-cp39-musllinux_1_2_riscv64.whl (148.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc2-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.2rc2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.7 kB view details)

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

wrapt-2.2.2rc2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.7 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.2rc2-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.2rc2.tar.gz.

File metadata

  • Download URL: wrapt-2.2.2rc2.tar.gz
  • Upload date:
  • Size: 129.0 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.2rc2.tar.gz
Algorithm Hash digest
SHA256 458f789c06da19fd6545effc2fe9170e4699cb065285c661e13cc065f2dffed4
MD5 f7a83b7daa3726ffa8eb653ee81abd63
BLAKE2b-256 71e5fb3043c24bd21ddee1c283fa7bc5a562f3da99be2ae959a94c3c83b0e8b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-py3-none-any.whl
Algorithm Hash digest
SHA256 49d92266551a1c988b7d7e804deb8ad95d9b3ccc533ce166379b47a201336b75
MD5 04ce9ccddbd466c81881059e23f5185f
BLAKE2b-256 ddc6b926b4d76b0d12f4564d5504c6d20fbad3f7fcb35f7f7dcc602ad9e67952

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 975e0f21f1c29cb8e90ceb47d8217b40fcefcd7d8362fd50a778350006adb4b6
MD5 4519f665527c58ebbd11e622a7ad0b0a
BLAKE2b-256 38080a085e790ec67ca903ed9cb26755f57ff53ac0f308f05db57e3b80b4da4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 68cb4f5c85fdfc200a3b85b334e4be369382c65ba98b23a03aa7b913b89557b3
MD5 7f120bf1fa28718ffe81ea08c43d44da
BLAKE2b-256 67dad11d5378cd3489d39ece051a8980ccea87d0958a77af6efe52586f461b37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 79.0 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.2rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2be4eb4d5d89b52b24e51187b7a2d722cbab6363aeb6770de9775af6d2adacd6
MD5 8bbe5e3ce233139c6bf7fed7583b2f0f
BLAKE2b-256 0bec3c03886a9aef63df94eb971a92069c0123c381670bdc7c00504ba0f1c0d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04995b5fdef8fa37b6b50bbe5966b21fe84a7efbd78afa7bfd5359cb7d087389
MD5 928be9540f497b4a39f31baeed56ab0f
BLAKE2b-256 01dc72bad1336f36985e86dbfa347fc0e1be7084cb015ad727f7446b2c5f6016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2e9ac0bbbcb352f7aa35c8be58cb6ae397da750fd1148b02b9ac63cfe21ec40d
MD5 e3adaf07e0a7595a976990a1ea9a92ec
BLAKE2b-256 55022a4f581aa818c5eaaad540b76bfc4a3008eea99a7861624b464f2c76a815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f125978c4d04f36422ba6f33fa323f068d3ef9174d182b662f738d237960a5cc
MD5 ca6103def47b5b9b95dbdb3c82bac52c
BLAKE2b-256 5eeda9c2e15ca969c18c31f534f3a69ac6d319e06f90b37be79de699a0f79a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 385febed65f0520d7208dc165db6561b89c7d61254fd174b2b39ec1f1f3aab75
MD5 7f934ee2558063b2fc55d6b75c49c0ad
BLAKE2b-256 37ce0fefafcfb18fc7f14f15b8e8cd805a52ed9da6c28bdd69b4dc298f462158

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 362c0e62f046e1ffd78b521de644221cf19571ea99f93082538820f709a0384c
MD5 477aaecdb1fe96bec807b1137ca93aa1
BLAKE2b-256 3f2225b40e6751ec9968d4303a09fa4b062836cc6a0ba6aaf38aee3dc5c1134a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 419e446937afa5db8d05b90041964bf5a15692600f78feb3dd24cf86d74d10c0
MD5 3e1c801fbf43680b4d45f34a127bd985
BLAKE2b-256 5020c76f5409803bebb2241316783f5539f5261aeb1cc5040c133fc3605da951

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f27811c14a61259ff5994f93b48b724685492c4325057830f09fde45f82e02d5
MD5 5ef59fc0a463f35fe718e4b1d0ecd844
BLAKE2b-256 ff2570cef3c93254db1149b6282e61edf37b15508466c3b43fe27c9aa7df34e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02709fb0b524a595a6d08d902ef363462cee0a9e750266052f84d8df461a9648
MD5 fa62a1ec74f1a61ae3d0959c1aaa606b
BLAKE2b-256 0cffc65a2b88754bc416f766c20e54a1ca288ed4d2dc5bd88334026d6564c4e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 80.0 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.2rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d15ed04c3b3c3532eacb6fa93c3b0ebe31c52da0641f0667a81a43ddbc9e30e8
MD5 6f09ecce278026254c0e073ca78254a4
BLAKE2b-256 5c2f13948841b0ab25179841a51a618a9be37a2a5f0633f235c39273f4a17b89

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.8 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.2rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45debca888d5c7264fc7bf7ad144ce8993346b7f6d94c4cb629f6eba2afce4b7
MD5 1b1a85cec30f59751dc6288f9a35ac49
BLAKE2b-256 a3070244892da8bf614377e21436d9270f3d616d5279b865d302aa662c132117

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aac9e53d3c4f741d2e820708311684a97cf35afa19d19b966a22f8eb3a9bb58d
MD5 81302781c0b7f1d23dd5e945f1592dce
BLAKE2b-256 f24c008f7ceed71a8b034bc34016b3621aaee637c711098ec0b0b5282d2fc8b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc5ce1920df98f0e45898d51546b6036f797f5067e64f0084b588fe592e6f7a5
MD5 df23669df1278c4b460d450694ea4667
BLAKE2b-256 f87b895ff18df07855312b56a0e8057c742a27a0272724db23847f402f8dfd90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 377eea2a95e91a080d07d5da12e3881051f091800d55e58f638bcc36828a1b3b
MD5 fe1b6f2a75d4622b1e4be8554d0d7496
BLAKE2b-256 67b3598aac09ca3cfbf58f0375df715f896c4e4df02efc685e9b8733088edc6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e38538acd1e0df48366c36a8fb404275597160a48e84c3fbb55436f26405099
MD5 06739759ec94e762b83c33f607a679c4
BLAKE2b-256 7f4fea0325816aa6d6e8274b36274f055045d1cc325a4d3f23609ad81eb1f2c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f952fba368a6be95c9d29341382b0110f3161456dbb6d01363e4fbb15368debe
MD5 08c17b2a652fba3fdf89ef33c02906b2
BLAKE2b-256 dcdb7ac1db7ed3599ce43a988f801e3395acaf29d22a1f1fe9ecf5079b144c2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdf7e3e1aa8f260c00737f36cf3d22dd25ca65cf0e2de1d5af7565187bf92e55
MD5 d7059ee56c83215058ed2042ce0051a1
BLAKE2b-256 ee8dc76434196a198354018a2ebe7702d415d28008ea04e089fc506d1f5ac9cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8e112d0313ec4127d803cffcd7fb962984b18dc2e63f704280b84bbade961f5b
MD5 6fa05e2eb9f59f8eeb7634aac9cedd03
BLAKE2b-256 b383478b957fad1b7e975502b4aaa2acf1e717d103c998ef90780b65488b8c94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0400104c1c9d2844f40942eabcabf59a6500d6102c593cfdcee72bbe513e60ab
MD5 9375b38261b5e9739667a0a79a43fba7
BLAKE2b-256 3c5be3c09b22b72021f51fc67a39661952ccbbff793032e66b184d55465e8495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 53cefd68f4390452e07708a9789a5e1d13b62aeaa48bf9c2ec294182e4a48232
MD5 e158703407673b772a926f6e3d7170b0
BLAKE2b-256 6976ddd44a117d7ca4a738249119e6383f93cb83b93cd3b8aeb3ee85356b2c4a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 c3aa7912f0799692adec7fccb5826244f7633edb5ca60eb3898f429e990eb87e
MD5 3071dc883e190bea7c757ee8536f70d6
BLAKE2b-256 cb67161e0b79e15c335755743534e75d21d780f2f00f1604c5079c8dba68f3ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 8da3742029be6bdce362cafa4addb952ea7607c6d64335deedcc58e00948c4fb
MD5 a206b5275807c90e1c6918d26686f67b
BLAKE2b-256 261ac099554a13325d1f7b830bad519cb23e1dddf4a20e2ae4829b44090558bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 78.5 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.2rc2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 4b5101a2d4127db4cc28861b64d79d8fd5ed5a0c4ef7999dc76e74fb447d268b
MD5 934f006211ae9f231ac4a19d8f2496d2
BLAKE2b-256 30bb37c6f9da6bfeb8b652e2085e660baa78cfcba73b2374d12aa6ee4692565b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a2981c72c49feb3dcaa4687895724989b6503f18d0ba807005150866be79b16
MD5 102dc325d991ff3703e909180ec3fd23
BLAKE2b-256 ae8810713d1b1fab93b1e4a7dd9763272850a17744475257a5489acb51476e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8b040055502fdd09600e431d1548463ca61e4cca0ce0504e0a0072d9699adafe
MD5 b838aa83ba76282926c9d9cb0c7b525c
BLAKE2b-256 72d9b12b2f71796c767b8f578d04f414a887ae000079acbc82e29db7f2f8d88d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2eba2245d4686c19e48e1382e85e4d911533947a6b93c7d21459451270417969
MD5 6237ec4343e5d23c343f66083c07429c
BLAKE2b-256 7fe7f52e2e7fb8ff765ae2948b055bcd1db2b856c6429e8421c9a6b1b382b617

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b1e4d33e2596e60a1850b04205081e22a91fbc6b2207b049e677fe727e4ab1bc
MD5 034e89909f81f9d29fc0bdd224a05285
BLAKE2b-256 2dade6d43e1f56efe85822a3f031e62f40c9707e25b3dd6e9de38cee9b733d21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 856fda1966185fb1959406775600f59c7babde9a9227a6e13f37f3800fe214c4
MD5 c559d9985484f807205386409708eb05
BLAKE2b-256 bcf358fa9c431fbdc20ac799aeee1d9807d09f9c03203e00777b161f2ec2cd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e89cbd58a565a7eab44f92b030c562ee2076bb26a629e7c90ea0240b632a79cb
MD5 774d7352b1c88ccc9cbd6376c4abbd47
BLAKE2b-256 19bc9976b1bdd982194b1ee1f2ce5a04200c296cb6092b2c120f0fe77562efe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dabd327ec424776794a038c4f1a54e6f4903d998dcda62fe498a93629885069d
MD5 e6e40608019510e6a8de6a9b96def385
BLAKE2b-256 e7ef0cb312a02ed0f5dd3e73bb0ca0c9e9086bde99338e7376bc1b93828f291b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3b141bd51cce64895d8a4e1470d0db912a6a854e1ef8ca1c8d6500baf564fdb6
MD5 c887c585bcd00ea83ee94b60eb731726
BLAKE2b-256 2b83dcd7cbe6c5535d2cf2ee9b4e19db1e81442308e94939a9c93df47b5140c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e0b68287a6b98d0a459d1030ae7d617499319a3dfb02791c08e695bf6e116096
MD5 64757b117cdca5a7486edeeea12fddd6
BLAKE2b-256 8e66eb4973319bf5ee242cf9e686f76bc57d7e6561a2113ef4fd75f5e6ebd30c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8babbeef93f832c56b41a78ec14dcf9c735f958603455fa19e6b5a83a8519b6
MD5 c3fbaf2650a6a0868293e9738fbb7ca1
BLAKE2b-256 5b396e20f048b964c3860bbf484bbece920236397f75d63b08c795d316db0461

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 483a63f2ba1c019dcd256b4394a097852413d079d55a9bb55a9685a9566bfa12
MD5 c020cef88ce3aeb14359647e077da5fb
BLAKE2b-256 c219ef39a840f2137752a10c15c400a3951b2605ab701255fa5070fc5d47647f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b577eceaf31161ea6b67b6557a20b4a0febb928437717e83dd4b82ba315411fa
MD5 8ea1fc4ea472aa64fb2661def5bb98a1
BLAKE2b-256 ed9e64b2f32aad3f34d58f5bdad96ad17e85144cd46149f6c01bb0282b5bd0eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4209ac884d5b25637ee58247d6bf6147f62171fcdeef2cce6af9c65e345a679c
MD5 c2828cc5aa2e4a3e560ac1b4590b75ea
BLAKE2b-256 e9177ce9e86b1177ddd42c8f36f40a82542a84e16e70e35a05d366b32a6db45c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b396cfac324c1a134fb2c4b06b1d73570da8f160ac5b0b6da25127854743cee0
MD5 27df1eebe7fae450088c6061b340fea4
BLAKE2b-256 e58175931ea251ab8ad4c948e5a5cf2eb799ed92aebb353bbc2e864d37e790c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cc7ab13898191d16716dfc6b8f4b874ee9363e180eeed94be29068dfd72bddf9
MD5 1faba1fd882916f3b32e2ba840f0baf4
BLAKE2b-256 74e30503912e33ffa37c31104620197176cb0862f7eca0073ea67c60ea423a1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e762ca12a8909dd8cea77bdc51809bc5ec570e1983d33e56322849316ef8f7a
MD5 6991abc295ecc159835c269100163ff7
BLAKE2b-256 106bef3f3a2dab656d14168b31ea27baaa912f573a42392734c7df84b420dcac

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 73ed20414253e957adc22d72ffc711a14377b2eed8718b61fc3bf1b73a58cf45
MD5 5ce86c1cf771ba166271eb1df89a372c
BLAKE2b-256 804f6edcf1a1c2cc063b31e91b8f55bc5695ad481197aa75974f235fc181b22e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72af2dc76c339754e9d7bb6f1207e61c22b9a9b07bf7193dd55f4d3f4abea92b
MD5 adf5d89266b4ef8215c5e407d17a2ca2
BLAKE2b-256 c32de4a9d68989de9525b6c4e905a8587cf0ec0ba7156afc0481af6549dac6f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fe33160cefe5f3e361efc4d193ba2294f84da46a20affb44ef37c5571ce25e6a
MD5 2690a7a17a9bcfbf35e3d9d90a657fbf
BLAKE2b-256 bdabe3d1d15ba91b9b5f6dcd3c95e40123609ad32000e1482125eb057dedb50b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 79.5 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.2rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4f6ca11a35053d8bb856b8ff2502053c0a7cd964bb0946c5fecc4796c8ea974e
MD5 e3d54fe9ef07523652bee73367a6e622
BLAKE2b-256 6b630cfd89e2bfa4232e00f0fa26e0e0df80214f1715e0e4015b54ebcd23240f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 668deb4bbb359ee073f227bbc0fd3387dcea292043273828b681856e60be4091
MD5 a5b2bc0e4f6a9bdee2979d4ba99f9ff2
BLAKE2b-256 9e34a18a220394ed267b28d49caf7c24129cd9343a4b800960cec5bca765933d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.7 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.2rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b5494b825fe49ace0d6edd8ab0ce92f5a0ea26a0ef99ef4752e87e66e960e5cf
MD5 83cbcc66194160aaa3e46b84bbdbf6f8
BLAKE2b-256 47a680bc9d15ed9dff78e65b51211b2c591831134cedcd52be7da230152f8b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb051ebb170a80149414b11c380b0b23be6bbc99e5ee8b3f97b09f0753930146
MD5 b036e954d28c825271faf46293e975ca
BLAKE2b-256 80c7db2dc39de674cb0ff9581e2f57e31ec2542b8ab4cb182c98d5a93922faad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b675bc7169ea81a5f119716adf7095085c55777d311175f2913a0f33019eb2bb
MD5 3b33eca267f32544cd6216ed8a124ef3
BLAKE2b-256 bb9bd8a8cde33f33aea13f47e66d92a34f52b6037563dac45feac6ab3d4d1fd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2637be5e3093511d98b7c71e4bdc5de1bdbb678f51d0e700b530a9665ef5f08
MD5 7b6a5490a6b8007e2a7113e8b7636d99
BLAKE2b-256 1be905ef5fc120691eb5fdacf020871d22998d7de208815173be2363b7ad7598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c89006eb37116958b138ea48402b15cb6a3c3e83f70ca705c6a64683290ef9c6
MD5 ba18e670820155980608766969022689
BLAKE2b-256 c914dfbadf22184f6002130f80ab3301f023442d94e41315a9b8b61d966b9ca3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d53011bc856941f8cef3ae700ad55aca65e84c900201d70b3200d848770881c4
MD5 efa20454fd5bb74f17e0ffeadbfddce1
BLAKE2b-256 ee73a39917a835b7727374dbe027ffc63c89559dd9d81d05cfefe3ff4bda5fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 15cb314afa2e74e16c7e632d35dd7eaae70a769aea30c7e79c96e0c9b8f81ba4
MD5 aa9c54eb22a70987a9df67c965b954cc
BLAKE2b-256 9d2fe37816e60282c61c1e67c890f17bfd9c2c63b3697cfeaf01eb577b791473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efea6984cfba44f1751e22fe9b29212b8d3ddc9fbac3bc8c46a003d74414757a
MD5 f5f6cdfdc0b13979468c4a2541f55bf0
BLAKE2b-256 542e2c7a1af613792918c906bf0b6c4d3657123a9edb76cd29ee5897d5bc387e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 25c5a3fa50d173e69830d7841862e0fe6f963bed3af8e82b8f5b90ff38eb6d3a
MD5 64a8a9088698b9381682598aea73996e
BLAKE2b-256 31ef7b739651d1ea0e10d205443807b3616a2fe7f94d9a398e4c930b5c6065d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e890fac8a60846bc172de2a68536c795ed11d11a660510d672e3fc7475daef46
MD5 88fe7b1bda350691d7c2183fcdd19bb0
BLAKE2b-256 d51674fffe1c6131d7ff1779f7b83197fa34e049d01f22e563209064d915c9e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07ec325ebef87c63cbe17c3bbf4b2f5af5c2cccc288bee0b3427e5275beda3b2
MD5 6dee72333bf362e02d8465fa5811ec1e
BLAKE2b-256 79df993478642fbc9a381a531cb2c6e70e828316f2d708251cd7b5fb9741df1b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.4 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.2rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c48cbfe8234c224bb7439336078a37f7c251f34478cf1e1c3647aebd52119fb0
MD5 aba14b06a362ea70b0de2e7224460560
BLAKE2b-256 24eda32596dc3581cbfed60c495d4913ee413ca94fad1270718f9f87871b64cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c1d4464a400a1e011200d8995454cd623295ac63ac7d94170b5e6a7dd453987
MD5 400e848fc84240ed8df144c6d7a30e7b
BLAKE2b-256 3c312412d6dbb55bd39eed0173c957b891fe697c38f7d5f82753fd225ae29c47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d09d5a836544e2c001701969163e4cba2068357ea1edbd44a36689c63460bc24
MD5 b8c8ac392f45ac72cd08aca0c398140e
BLAKE2b-256 fbd45d46ff27f0ea4e98068facd2d677d211cd0ba3685c69ee90a43cb33ffc2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43b9ad4d802926c0e3c73c2978989b040e240307bee5ac1b1001ec52384b48f6
MD5 2a65bcc393b35b6d1c4c9c554916f9b3
BLAKE2b-256 7e5c6e3b0c2eaf1d2a51d052ca2b861f8dd0ce2c781bc4391ae1e59102aa5d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 31c37324c1060319234cafe3d489c039be75263e32d123665a15f44897c60253
MD5 15aed283473e3925d60401558cc2ea54
BLAKE2b-256 2c3101886a2f9d95169c6041f4b138dd580ef9dcca326522731046366a76bc4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd11a04bbd0b89f34443f8bb37b3edaac5dec0fdea99d114e6706af85eab8ead
MD5 5aee42ec6c08f544b86a6b423c2450e7
BLAKE2b-256 a91eb4b0be0db9f7fede8394fe58c58e736269f8d7481aefa1ad5f90667d3f43

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4b209fa24cecde47c46b36d11af942751138030e9beaeba1496e7232e63ef750
MD5 f7eddaafb7ddfd2382ed32c57bba98c3
BLAKE2b-256 438e827a086cec551463bc4849f9f9d16fd1fd1c380f3bea88c1a7bba92a2e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2101cb26fe685a0edfeb1f833ed42f2ec18d0a277d8804ebdb039fc1602c22ef
MD5 64294a0c1bccfca0cfba244dfb03a7c4
BLAKE2b-256 d4ec2d44e41660e25aea69438ad9baeff168b2e22b58948ac3c14dd3f469d5ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f94207a56ef1955b4d1df42225751c0d0196109660308a5cce9bcd1c779518d
MD5 502afb328dc0d38fa89de4b05cf9bd8a
BLAKE2b-256 744674a1c1e9e19e429d13a7f7dd6e0d8e34cea6355f3d4bf32e5ffa44a004af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 79.6 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.2rc2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e22fe418f6d541740a40738010b4edb9638f3bad593be36fa865f9888e0353e1
MD5 4e736e5856541e3850b8c7a66da588eb
BLAKE2b-256 f2709c644d3ca98d70a28b1d7a7b78aa4e812182b8a2151404ebbcfc40ae65b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.1 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.2rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 470062e40a6afd66b6922f775d98f131697a62c5be4910dc55e48259ef0381a0
MD5 09502bd36b8d3b74b9384877f44b06ca
BLAKE2b-256 afdeaa1d15a45381f72f9ab60418f0a941dcaf2671527604af500965d2a0590b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 da44fe77ca020f95c1ad88a0872351adf4ea38a42e988b116e57817feb93735d
MD5 b584f516a304c404b5acf5139b6c484e
BLAKE2b-256 5037f06075d3af61bf18768b73a36a9acff5758fdba83bd40cf082da713b8d5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d1fa299c2b8754b020cd371af03ca39e322819323f9cd3cc526c2d26b6750eb
MD5 279f4a16c9ba029cf6723687667c8dfc
BLAKE2b-256 2e8dd663dbb4b1d838ef4d9baecbba65ebfe44273d67eab9ea78a3cd53824a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4070847b0449faac40a92ecc8d2e7bcb6082532ff7c3bfe1e906183be809d44c
MD5 5b1a12f539946ae12ec3b7af9d6ee455
BLAKE2b-256 bebad569b6e3ac7c34741a850b9229783f7fdd0f5867ca927e203d14854e86ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d11fdc3434a35ea3198a25b6df28f75ed26c9be6de57963cb997da7414750dd6
MD5 ff5ba1375108c7be2f6421d9097f6f9f
BLAKE2b-256 01d1d165acb7cee937ce7c670cb7f254c474092d069c40a836949e06a78f1694

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a77d2faed05f892bd80409866703775c4f2ac7580c63eca61519704a6210e797
MD5 7a891e43d1ad4c6ec1b83bfc49511693
BLAKE2b-256 98922fd260e457740bd31f0d85dce074b9d3c2a0f2131b596f4351d043d18ac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb6dca241d30a6ef4d6d176cc42dde39c4b36188f1fd25cd7c1f7c8c1f7e3a58
MD5 97655e8e50185e93ab78b2cea27af2b9
BLAKE2b-256 e9d697e69039acce42cb6ebf6eca3528898829109bb9c55fae77b0efd5b6c1bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f65f920c447049b8b0e20e1653de4a7a7874d7c2466a6b92d161961babd269a1
MD5 21359a3074779932ed105582d6f69ac0
BLAKE2b-256 e071b916001c29dc17d36c865f004ef30f4a541af53d274aab2f4fe5b09bc4e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60a80c60d83b017def8aaec816c33e51c656b3d35559af740993c75d80335b8f
MD5 e058ff1ce68ce52f1d4d4b2154d6abe6
BLAKE2b-256 0d77e84491d1e5e3386ab484c5721ee0eed644eb137038bff486aa5ef7a5a1ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12e44872b9a6cc9bf7ce476239202ec7b85df85963bd813690c48438e67e2563
MD5 2610361932e7c0f391443525c560bd7c
BLAKE2b-256 2dc22108eb7e4e62aacef54a8b30e830348b42ba7e00a0103c1a2d91ed1e0fc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.6 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.2rc2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 94e31cabf8d7e92e39cbb791d8d311fa03235962a308a847c8e3d55107310389
MD5 451e7d08367f24d6ea96668c3e77fcf5
BLAKE2b-256 7e6aad91bbde5cde134b8d977bf4ca17a8cea558313e5816d76804dfcfa012af

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0bda663fdd00393d42019df79d5341448b3997167eba855d2ceefb8e11bc573d
MD5 193471a87ca261ddac0f49afa9c8c905
BLAKE2b-256 02fb26a106893a81f199937320cfc49ae9f273522406e0c83e5965518874ada3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc2-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.2rc2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3dcc2b6c721e97b44bec9936390d532478b7771839dceb0441136387f416605a
MD5 94af080cad9daefe81a22e699355db20
BLAKE2b-256 68fa0e78334de10a65b1eb2752f78b5880f7869f482fc74c197da50a3c989e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f517e10f371e8ce1d7e97b6632f990163dc4b483ba82b8bac4a1f98421773536
MD5 66ba780f84841c42509a79640dcbceec
BLAKE2b-256 88cf23f25ebcb019c561ee6108fe0dfb9b40eb2cd4eec20cad4acddb1b4be386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 52b5bb0559a62c20adf156fa2a0719d0040c064d50c387f13ecb31df1fc91a31
MD5 96a680f3777a2bb9b1b27b4a012bf127
BLAKE2b-256 df7b23206dcb717e1cfab02cd3a6dfcee8a9a53829f37f411e3ae19d699bc935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab33799471641c8f34112118b0380a653cfded9e97482af919a1fbdfe24007a7
MD5 7c6fcd9e60e845f9eef0ccd92d393b1b
BLAKE2b-256 8362a5ee6257d5559a64b2edf7999e1d1367ef21db97581f09ca13b89870f3d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1c867f89ce2ab5782d8e0054d89dd599e9a5f86c8808ff6e8f586af22e8f11ef
MD5 a4c587fab1968314e399bba77a0c3f1c
BLAKE2b-256 54f4ad4b849fab53a96dd4d677cf6b151384ceaa92714b5ab8188dd9f45907df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 36da7ca2844a97f2b34629b7e1238b9e376eb49413abdb8700bec90c63e9c526
MD5 cbc99522d023aafb70e2a25694394024
BLAKE2b-256 f916a574579cdd55bcdc021e227587c3a5ddea855beffb04f7771c0ba9fafac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc2-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.2rc2-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.2rc2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cee751ef0265d1108676a53961d5d50e391e7924d71f12d91198c90b08c78609
MD5 47f37e2ff3cf68d53d51bb54d158a063
BLAKE2b-256 945dccf2917776e2cfc3c8fdb831e879e9b42d4a78b18976f34ce71abb25f7d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48e8d19834dc66b862e81d7591e920f68eeddfb51412b0bbcfe791ac2224c032
MD5 7ae4f2f88fa26b6596a06d40dc12bc74
BLAKE2b-256 9188f993dfa519321fddca862068cbcd654845f944dc88d8dc430f0866aade74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c612b0abe51e3e6aad84f1716ae784f407acb3fafcd67cb0d8c26a8bcb1453a5
MD5 66b52d5bb5f6dd2a0cdb334ac4f94086
BLAKE2b-256 e7dc4149bd30571689bfe68b869ffe3605b0b6c48cee9289864a9f381c8a702b

See more details on using hashes here.

Provenance

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