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.2rc1.tar.gz (127.8 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.2rc1-py3-none-any.whl (61.3 kB view details)

Uploaded Python 3

wrapt-2.2.2rc1-cp314-cp314t-win_arm64.whl (81.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.2.2rc1-cp314-cp314t-win_amd64.whl (82.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.2rc1-cp314-cp314t-win32.whl (78.9 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.2rc1-cp314-cp314t-musllinux_1_2_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp314-cp314t-musllinux_1_2_riscv64.whl (192.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp314-cp314t-musllinux_1_2_aarch64.whl (205.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.2 kB view details)

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

wrapt-2.2.2rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.3 kB view details)

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

wrapt-2.2.2rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.2 kB view details)

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

wrapt-2.2.2rc1-cp314-cp314t-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.2rc1-cp314-cp314t-macosx_10_15_x86_64.whl (83.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.2rc1-cp314-cp314-win_arm64.whl (79.8 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.2rc1-cp314-cp314-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.2.2rc1-cp314-cp314-win32.whl (77.9 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.2.2rc1-cp314-cp314-musllinux_1_2_x86_64.whl (166.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp314-cp314-musllinux_1_2_riscv64.whl (156.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp314-cp314-musllinux_1_2_aarch64.whl (166.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.2 kB view details)

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

wrapt-2.2.2rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.6 kB view details)

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

wrapt-2.2.2rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.5 kB view details)

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

wrapt-2.2.2rc1-cp314-cp314-macosx_11_0_arm64.whl (81.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.2rc1-cp314-cp314-macosx_10_15_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.2.2rc1-cp313-cp313t-win_arm64.whl (80.6 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.2.2rc1-cp313-cp313t-win_amd64.whl (81.8 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.2rc1-cp313-cp313t-win32.whl (78.4 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.2rc1-cp313-cp313t-musllinux_1_2_x86_64.whl (198.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp313-cp313t-musllinux_1_2_riscv64.whl (192.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp313-cp313t-musllinux_1_2_aarch64.whl (205.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (195.2 kB view details)

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

wrapt-2.2.2rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.3 kB view details)

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

wrapt-2.2.2rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.2 kB view details)

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

wrapt-2.2.2rc1-cp313-cp313t-macosx_11_0_arm64.whl (83.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.2.2rc1-cp313-cp313t-macosx_10_13_x86_64.whl (83.1 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.2rc1-cp313-cp313-win_arm64.whl (79.4 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.2.2rc1-cp313-cp313-win_amd64.whl (80.3 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.2.2rc1-cp313-cp313-win32.whl (77.4 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.2.2rc1-cp313-cp313-musllinux_1_2_x86_64.whl (166.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp313-cp313-musllinux_1_2_riscv64.whl (157.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp313-cp313-musllinux_1_2_aarch64.whl (166.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.4 kB view details)

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

wrapt-2.2.2rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (167.2 kB view details)

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

wrapt-2.2.2rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.7 kB view details)

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

wrapt-2.2.2rc1-cp313-cp313-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.2.2rc1-cp313-cp313-macosx_10_13_x86_64.whl (81.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.2rc1-cp312-cp312-win_arm64.whl (79.4 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.2.2rc1-cp312-cp312-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.2rc1-cp312-cp312-win32.whl (77.5 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.2rc1-cp312-cp312-musllinux_1_2_x86_64.whl (168.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp312-cp312-musllinux_1_2_riscv64.whl (158.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp312-cp312-musllinux_1_2_aarch64.whl (169.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.5 kB view details)

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

wrapt-2.2.2rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.4 kB view details)

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

wrapt-2.2.2rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.7 kB view details)

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

wrapt-2.2.2rc1-cp312-cp312-macosx_11_0_arm64.whl (82.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.2.2rc1-cp312-cp312-macosx_10_13_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.2.2rc1-cp311-cp311-win_arm64.whl (79.3 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.2.2rc1-cp311-cp311-win_amd64.whl (80.2 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.2rc1-cp311-cp311-win32.whl (77.2 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.2rc1-cp311-cp311-musllinux_1_2_x86_64.whl (158.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp311-cp311-musllinux_1_2_riscv64.whl (152.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp311-cp311-musllinux_1_2_aarch64.whl (159.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.5 kB view details)

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

wrapt-2.2.2rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.6 kB view details)

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

wrapt-2.2.2rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (159.5 kB view details)

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

wrapt-2.2.2rc1-cp311-cp311-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.2.2rc1-cp311-cp311-macosx_10_9_x86_64.whl (80.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.2rc1-cp310-cp310-win_arm64.whl (79.4 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.2rc1-cp310-cp310-win_amd64.whl (79.9 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.2.2rc1-cp310-cp310-win32.whl (77.1 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.2.2rc1-cp310-cp310-musllinux_1_2_x86_64.whl (152.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp310-cp310-musllinux_1_2_riscv64.whl (148.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp310-cp310-musllinux_1_2_aarch64.whl (153.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.3 kB view details)

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

wrapt-2.2.2rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.6 kB view details)

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

wrapt-2.2.2rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.8 kB view details)

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

wrapt-2.2.2rc1-cp310-cp310-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.2.2rc1-cp310-cp310-macosx_10_9_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.2rc1-cp39-cp39-win_arm64.whl (79.5 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.2.2rc1-cp39-cp39-win_amd64.whl (80.0 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.2.2rc1-cp39-cp39-win32.whl (77.1 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.2.2rc1-cp39-cp39-musllinux_1_2_x86_64.whl (151.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.2rc1-cp39-cp39-musllinux_1_2_riscv64.whl (148.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.2rc1-cp39-cp39-musllinux_1_2_aarch64.whl (153.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.2rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.2 kB view details)

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

wrapt-2.2.2rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.6 kB view details)

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

wrapt-2.2.2rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.5 kB view details)

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

wrapt-2.2.2rc1-cp39-cp39-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.2rc1-cp39-cp39-macosx_10_9_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: wrapt-2.2.2rc1.tar.gz
  • Upload date:
  • Size: 127.8 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.2rc1.tar.gz
Algorithm Hash digest
SHA256 4ae8df875235fd9438e36bbf4226bd741969a1221c461151a0952346ed5e2efd
MD5 26a8b2bbc42be98d0a314ab630535627
BLAKE2b-256 857869ae7da6d3becc871e236f97e51fd5a124cce6bc6ffa61b6956789f92d2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-py3-none-any.whl
  • Upload date:
  • Size: 61.3 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.2rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 1af0d06c06b9ccf5e629f7fab675bb13e43fdc8a4bbeb151a9f618572f24da87
MD5 3b0861fc9faf75fcdcca0fc757862dad
BLAKE2b-256 8e4664a84299231daab4ed63f3f5f80391de2bc871ae30e42f64afaef0ce4197

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 81.0 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.2rc1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 33f9fdc211e5e1858034ac89869a7595f4da54908a4b74c52bd3173c2bb5b04e
MD5 cc5428269e8e3f54ae4a87f7bd5cc33b
BLAKE2b-256 c37012d9da527dac6fbcf321e666bc7091eb2a90cce9ee599cb9e2090dc0a3fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 82.3 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.2rc1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4a70b71141967af7c11c0b878dc7f81c55556fe5a8076f4b411599a38b962111
MD5 94387f5a037817a14d0af6a03f680a58
BLAKE2b-256 296c3343d189ec15f6d7fde278c21ca5a9a2995e5fe7509d27ea7e2bf68eb621

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 78.9 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.2rc1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 486df39b4a8abbc370206501e10bb8c7181f9c71b61e97c68ac981ebf6f95fc1
MD5 7758d147b41eacc781437ba9fe018cd3
BLAKE2b-256 fe7532bf625f7a935a3b6a746ddad682862146417da3c28af08c77a55606ee8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 437c843c81781a4aa172a3f0abb1dc7239263d64c06241754d67979c81524ffd
MD5 b01b604af7ad6243ee2d8dd4ede3deaf
BLAKE2b-256 78e10f0235529cc070d93bc437579d233d29ed6715512983c0a75a80a432bb69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 90a5348fa2ad4aea640968043c7f6b26044ad98e35d62d075037a8ce48ef92c3
MD5 cb408420d941c42955caf486db4b316a
BLAKE2b-256 10f50529b68cd3a6f81c66a500643df2f2109a31d094895ae60c26ea26c31ae6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a408f40e0c530afe813564318ba5bba4b12454fde6798a53782b47f4abb133e1
MD5 59042ab67dafeabda7f22058047b9374
BLAKE2b-256 b4a5d6dde97f2e67318dd7310b4f2b61ebb564f6595409ef7d0cde10301a2f57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fd480dc7e89450e4ab7828ecebb25a96ee672f8282a05b04c44dfc3fc2abca31
MD5 aff26fcc7fab02ecaa8ba20b3af1c893
BLAKE2b-256 4800c572cb6bb8ab71b9cb618258ae690eb16231a6dcbfef0c6c9f05f9038607

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb875007532fe771e8ffc35f894f9a59895e3489c8cd581983861f8bfcb4b474
MD5 bdc63900e143f58c0e6ada93af9eb303
BLAKE2b-256 ed6a9bceef7680759740da10feace863ec9c4b834388be1252b0dabce7948b37

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 42ba7fae7a3e201a36debbd4569b3c134e84bf3ab4bcab891dde00637910a940
MD5 5451af8fb761311152fb11e161843660
BLAKE2b-256 4332f980beb5eb8d6fdc08267175f4499cc96e204b6de7f1b796726a1f3ef8cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7218a8818b2511e23f7d6789dabad0f1937398b417083923394d5d180290b8e0
MD5 4fffa285c7dffd1230dc09b81b79b8bd
BLAKE2b-256 720e28495d6810bc245d62399cbd9ccada7f7c5dcb472b17939b91cebd6fc9a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 829a05bca6f14dbf5eab0d06dc31c28524d793c8194847612378ee31bfe44eee
MD5 38ee71e9668a94751a158443377b4e35
BLAKE2b-256 4517cf93838dd004b375aa7f35213c261b745d494774fbc16d34169d203f5d84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 79.8 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.2rc1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3129ee496c616b00564b04815689a91189862e4f689444851ec8dcf3d59a35c0
MD5 5b1fa13ae7a4b50b44613d3f371c231e
BLAKE2b-256 c4226f683a8a66f6f8b7324c7d6d61806c47281b9562f53551ba0ec0f2ac7d66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.7 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.2rc1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e7e43695b4d0b357f7072bd23648d4696f2e2b9197de45b0404259addcf5f7e5
MD5 05fcbd77933a96c913f0c107fbc08baf
BLAKE2b-256 b42bae8dab14222ce4c73d18f93c0e57bb4fae7ab901e1e2381e0b5850e44639

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 77.9 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.2rc1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 da8eeb02d97161febfc418c407cc4e05c58701867dc43e8fd36e000f30ba2c1e
MD5 880313ab742cc3bdf71d85d0730a7191
BLAKE2b-256 45a2d38d62a91db659b097d5af496447367bce365f33d4a874ea40cf8db0d90a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f677843e73bb49edab8dec36174b83085622275a91671eaf5dcc634a69e2446
MD5 f2f7a6b4088f23eda7c28afe7013248d
BLAKE2b-256 7c58be4b46953c97743a2c262cbebf2310899ff84621938966897fb25cdaf122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 611fefab2be6bcf5a1eee967397417db69d7f372f60bf7d92f0d6bde6a09afa1
MD5 c60f370149e629097bd96a5a4a76e9ed
BLAKE2b-256 4556d707c89e0f31bd815b4e3f22d5671c8fa8df3fe00d2c2449275ca8c7960c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a04b01ccbf481510ecf318b0ab47b4ac19772df3ff8adf0f06eed51f4da012f6
MD5 3959c2c7a94dc85832402a8a80170617
BLAKE2b-256 75fb77af6c6c11b1171ff253b2182542cdb10289aa500d71ecc0e208089be567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1327d256051dd81f4b1d9052b9753caa451aa0dfcaa40b72aed7bad2579e4ea0
MD5 d38dcffdcd02a8e5f846e436cfc76bf2
BLAKE2b-256 b7e8a271e8e2f9d8d74820e836676e293768ae741e31d43f5939455230888dc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64f008691167b123c6149d522501d89a0ec65c2a925e4212e913986234cd9a6f
MD5 b10274426e812caa551e2d26bd9c6c35
BLAKE2b-256 8659144e5f95e56502b22a863042748a3a66ec2c92e6e2e866039734138cf4fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 972ba9403d8a7d58330ddb61712665ca9d7f564bbbe2b517322aec0a28f78d7d
MD5 3d3bcdb57888726aaae593204b9f94b5
BLAKE2b-256 b7116f2da8a54810f4ab27ea22e082a8a04d3edfbc4242b7a29f4c405f59ddb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ec0d8585fada33da85c42368e083e08cbaf08287bd5264397dd41f9a7cf8dee
MD5 1f3b838e64391b03b0354d5b65537e86
BLAKE2b-256 82fa3cf129ff201fa7b9399dd3d3960ad2469df9d00e7827bd68097fcff6c1f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8720cd81e60431f75324cf3cc0a832d94034e6d24d955b30438a2753c5d724d1
MD5 74a97b4d9b103be8fad42500dec28d81
BLAKE2b-256 0565c75752e42445e46d3d77e63d969afe3044e2a8a5a2977d7701fb2b967f43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 80.6 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.2rc1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 275f7a9e3d7caf3ffae49592d635f59deac4d1d62e30948aa4c8083813f4e191
MD5 586cf36091c3638bf0dd3b043f15257b
BLAKE2b-256 74f560fcf993268de29f32073491d5043160861607893a2d78cb6559929634f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 81.8 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.2rc1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 cf8d81b22dd36aa39d147390d551ade51538883c59e34dc7d00015d27037ef76
MD5 420d3726f07aec9cff1660aed9b37536
BLAKE2b-256 7c474c0b9f31bf582fdbc2eb2ccd87fc45cfaad4ee3657ada4e5efe51f539227

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 78.4 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.2rc1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 faf661065e1f5c4455d7e65e65402de62d02bb9dae6234d188d7f3d9c56a3813
MD5 e8ccd5767cc3d348f8eee2997c6e48e1
BLAKE2b-256 71c97576eb2318b432392ae5900ea85967bf6880276e8ab03377cdacead8a410

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c3fad818fab47263cee9bff049d3964f31b9e014e0b32cfb707f18f071f66d6
MD5 838040087c576860e472cc5f9d65cdd8
BLAKE2b-256 9916eea388678a214ccaeae1a849e99ebdf9fa89f00db38ffeedf03584ea1e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9fd7510a27eae18a4cebc6826ad7aeae2920352cded817fab903fab00a1bc386
MD5 5bd709bf432996af5b83b6e074e8f4f3
BLAKE2b-256 c48398a5bc1ccc62e15e71f991bf0940857e10bdc2e223e60edcb89ca7a5b5d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58e2a5b9504b91eec089f0a9f26baa035682ca2127443e358cf023890f045314
MD5 e7a2b7143fce1adfae53ded945147926
BLAKE2b-256 f43eebf6399cf79c1080d5966e8e072ff5dd1ff4ee604276e691056fba3925c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ebd16429979d55a632ba8916547fcba352b4ec3127a67f5a3e05fbda4394309e
MD5 16c9a48d148f929c50884917f55283fb
BLAKE2b-256 dfa8cd67c5523d83d5c925c385de973217857cce35f920730b10ee8859954613

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a949a8b0da27c0be13108098527d12a1b5540eec29056e349e9a3ba8e831303
MD5 7362c45bc116bb29579cbbf24e9030da
BLAKE2b-256 4f47023ca3f81561fbdd54bb9f6f38a8a20b7c0573e4f630e8482b4a21430ef9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 20887083b064f57c83a5fcdc78ca02f2662a78d4dad35ac20eb508b3bb177768
MD5 8ae2651a3da06a7826d6cc4d66593a28
BLAKE2b-256 87830d537d4f3544a89d9463a2bd1b808b38479cbb859114bbc80f1a9771b365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7852d12265b0c9b058c2fefe99392407deffa26e07ee0822d7253d8b4545883c
MD5 459ee4d2e2f09806c057f66f7852c1e8
BLAKE2b-256 560ce215579cfac7fe861f9d26dd20b0385aad615e02733905f5d0e5a425163c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ccb001e0ec4fb25912665db51b483e8d1492e4683cdc01d7f027dcae6b33077
MD5 026803d1365f170324dee39b547a03e8
BLAKE2b-256 6c5a055164626d5ccfdac4ccb5f93e97aa03ab00876fa3899e02504970a09004

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 79.4 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.2rc1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4743d8ec5780633ecee26555ed116dcfc11f40288b1046e20f659b79fc0d828d
MD5 8ea52d7ddf10057ea2c0e1979bd90b44
BLAKE2b-256 003c514104d0110b13d68238bc3ef8e754a70f9c78e578519da549757799b666

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 80.3 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.2rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 68bc5cf05636169735162489a6b457fcbfbedbb86e8334855c5165a9efa497ea
MD5 268720d01579425beaa79ecd27bbc7da
BLAKE2b-256 c839b0f302e299527eb9b4ef7d52e2767ea230067fe7f20b45a5d28845d7a51e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 77.4 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.2rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 17b443e388b89d6766a58c87b970586d4d85837c19e6f2f4c4e9728c2c1934de
MD5 321e33f726992b6253530f91847c678c
BLAKE2b-256 5bb94bb6fc592ba309834c978ec87ceaf53701866be3627fc030deb93ef25b0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2d1d4e1fc2a227108aa9d1c2e85ce90fc908f6fcdbc565c7c5898329bab72fb
MD5 d65a120e8b4c629f418236a1e007bfca
BLAKE2b-256 d4247e322d61271b076cd95486be6531ba4b9c6a97aeddaa44590365f0dcf861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2f61349630efa74b9d2b2c17749e99fcc5ceb4cc250e7d57a433325e77b8c3fb
MD5 3845619893163dfee3ce24c91e17d7d5
BLAKE2b-256 c6c583e30e9f083a0f1625d6425ad3b52c9c5fba6188a9589454549434a3cd9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b17ceb9bb33de4fe4066f339bfc035f92299032878352142ab94a3663374b13
MD5 701cc8e9824d786b00ecf25f0bee31fd
BLAKE2b-256 b643d8eee4eb32fa9ba537aa93ce4160def6a8d3aa5bce546d5173e1a28b678e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 24a010045ba067fdfc3334c2bcd492f321b373e1f7fc66b2e8abe5d2c09b0559
MD5 94b0ec6009fc2d7d56edce88bf68e833
BLAKE2b-256 4a17fe27a5d7734d78c76bd9c3513ddf219ac81672f6aa2361230dfaefb404d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0215228bc0c0568db2e42f832f041b5c768a7a42562b83b3d6bb0eb89fb7edde
MD5 b8de2fc23ef1bd0d5d428a22fdbfcb1b
BLAKE2b-256 569db872fff15c7feb4a2b418041c75e698d0265d94d5e255687a46c540bbee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 efc9b1cf11420b705743d93423a9e88d5fec99ad7ad28e30f7bce1c3a3bfb942
MD5 dd1c9ed620c665f361417179645f21e5
BLAKE2b-256 294e7a507d944144a733529d65e9125e9b2d1749bc9c10e6234b6c713e2825a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 731b46cc2b0231321b2da808779629db5c7cffc672963d3cf71e0041bf162390
MD5 3e01bcc1fc9ec6b0ad387c6c7033e16b
BLAKE2b-256 b03a6c6a2141079b91e404b4e6a2b43cffcb72f9d0a967d3b3fe9bdb6d4dd070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 de1399e6a85dc519057b22b771520cf0e76093cd6fa7367a3b9499dc4889a6b1
MD5 505b283d4722f5be529f6cd5bed5ac1f
BLAKE2b-256 51e5adb0cecc91632e6cdd959171357d17be84fcd9bc397193005508fc578c73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 79.4 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.2rc1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b0cfa8f5158707bcfb4ab94fa871caa85f713607af36aa9958e470f31b90a1c8
MD5 0829be90d2e47b89f077124082f94624
BLAKE2b-256 fbd12f2d8b12b0db89dccc53cc6de6a076741c143fe763862dac8033bec8b148

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 80.4 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.2rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6a83a22e1ef5b19508edb1d37b314cbc6a14f373b69f618da4561cb19e62e44
MD5 5c009049b352020ed07def2e029af4a8
BLAKE2b-256 d148ea7dc4ddc119a68592ec10a91628ec0249fb212646b6941a922622c4a9cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.5 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.2rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7a7bfae92f284a8e47fc85e8442eb1c3834fd38220360550c0dae61bf9e4f19
MD5 6abee87d76da674bbf1450ba046a7eff
BLAKE2b-256 9ff6fc26b27060a56a1c905f45e191769ca72cd6688f88f203b915f9b7e1fe74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 607b4895d1330c2745350ae40d039a5f7675fa613e2eaf42e54fc163bbfa4d2c
MD5 c0c53533f715e7da3fa3616d194d16d7
BLAKE2b-256 4e0b252cf2401a66a0f2e22883e80142601ab5fc5292d357be4a7c3145f3ecea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 26beac70777abc4f0de658691409f1e939131515af06fd6350b0cbe0235f537f
MD5 f23a7904b78cb28409048fbd2a7240a5
BLAKE2b-256 d02d0832d59af2b18adeab2bd3cb2f51c193720336425bacfd865efa0dc43fac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99da67367565600c39a51581425b1a8f732c421fdfcb2d2d432e208bd0226ab5
MD5 743c3690ec5b36979782a73dde7f578b
BLAKE2b-256 732c5850a8c8d1ea2060f99abc27980df404bb905349f94b22bc7a25f6245b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d252458ed4cb81211b71275580a26ec14f310fb926e8829a69729b3533d3a5d1
MD5 0fe7e618ab5f00b7b944bc4af6e5a71e
BLAKE2b-256 83192a806f1974f741a0ddd67c13fb64ee49493270fe3f4c0bd7b3ca42260ed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 50b3cf696cae21d448578fe5fb3c27e3fcacb3476cbda1d560a34134c692d582
MD5 3becf3af67966c30de8c019d5188b13c
BLAKE2b-256 e1240c5ab50f3c4113ace1fceb1a28b4574eda8282db193aa072a6eca9a59c65

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ff24b311c571d442b59d9bd0a55749f91134c6766a9b44ec36759533a86fde8a
MD5 21cee91518d71355e27e72b02e5d02bc
BLAKE2b-256 fdb1e598585ecc50f40a707162d262cc915d48621f7b922af1d65e56dc22e22a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2718eea5af79bb558f2348b5606daa0a5a7dd8d0fe582a2d8ab7f5089d258d8
MD5 7a1d4b25b1cfe105e3c8e90865295b40
BLAKE2b-256 b6770a10e47b660ee8f8e87b246c64937762d4313d4ace32af6ac4f535030e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f94a1726969e676ae9d63b09e7875c5920533d0ad8225384fc9be6980825f0ea
MD5 43bd02029aa5a7a08ee84acbf74e30e4
BLAKE2b-256 3413cdbfb375d50ea9bc9ad82df36dfeb70c54bdae78e5cce83649db019a1f76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 79.3 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.2rc1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1abd80274ceba7f2fa64a8eae27781d218f3c28d21ca8764e9501bc6f3828518
MD5 b42ddad1e8f71dbc36340698089cf76e
BLAKE2b-256 d895375622cfa4a1adde20844c2abe80ec6d2fd7b891ac0c519cb553f8ad0267

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 80.2 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.2rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61f29fdf7bcaf249b89492bf328693fc8fc073524e9b3bc4d53e9743e7f16b82
MD5 0b9b2ad653b42b8658d3d8bf173a14b7
BLAKE2b-256 5c75c20aa884f856c3ffc05794a0d940eb4e054de88af948fab4bb3e7377e37e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.2 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.2rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1ac2d3e852b67ed9b73a4bb5dda806bb3f560b09dcf84af84e8e64c261e5ccc1
MD5 6cbbe1c6f1d35442a1756cd4ad5fd493
BLAKE2b-256 a0a1b452c9e30b07edcc3e9dd0fe47c30b8d56b29c73d5c155c31b4e3fe05c9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5777e6e4baf347087d3fb19127d39ac827241ee58a8b39123e2731125a12c918
MD5 80c4f3d2c69765e6e39fd7aaf2f1c2b5
BLAKE2b-256 cbef519cb2a38b36ac95bfe7aa3a33c3a78f67dce3720d5b395e21ee821db363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a4994ceacbcdd56c64f6a572c1216ebcad8c46e6503fcce33d6cabc4f0da356b
MD5 e9f995c88c4ed2ae903ddbb0c9c53319
BLAKE2b-256 d15612d510d40c350433c6c0807d45e98d22884323e63bfe110c284bfaf8eefe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8bbe66e3b853bb68ba91eff5245068ba821507e4816bc7c8510f31af3c971d6c
MD5 96a0693de3d5d03c8504826948d34b78
BLAKE2b-256 3acbd22d37e98f173a95fdbef577345042469cd5dd85d4e8d796c0a8ab460bf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2b0b59f7cc394447bd2ec762b3b012aa2a87f452169392ee80830c2decc6f596
MD5 0f6e0c8d524e613664dab22a58314d81
BLAKE2b-256 3e0fd5d3c69f4f07bb12d12f962c2df9fcc101333cafb308882203fdfc50080b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 afd9246fb69d3a70b9e1734a88ad34931b785a09094e24d224d0f9d7fbab5ae6
MD5 329b2cb6b863a40add2d766fbb1b87a5
BLAKE2b-256 a3683b664c283769f1236f759175b5e36e7cd04064d980564f5e2c6a8a019e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 717a41d7bc7756365cef9b6b16365354b04d82870adf947ee8c5426b01bb2af0
MD5 2a029d616124bda2509426ae90825e19
BLAKE2b-256 726c29847a305df012060018ca4fbed6dae67e2636a4fca4df9860c3af7f86c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e30beb5c278623ad4ba56e255a34c0bb53f98b3bdbf5875258e76232cd984c88
MD5 de527faef36d4b584b6f5d12f60a6b86
BLAKE2b-256 3e919fa6716184c4e67699779039ea8448ead51990b678789a23623e1da05aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f89a87e6f813bf75f907384e841ccbcf4256c47a73e17e2147a0089e2c6155ca
MD5 99d03244d792efd883075a4b619b2a40
BLAKE2b-256 8f151ad1eee44e466fb3168bfeb614a2fe9aa777d7f71350cbf342833b9c6639

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 79.4 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.2rc1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4e4d3339d392e4b1dfe6e8d04448be1421fa00b8b26b50f0fe485452185f5ad2
MD5 87718916f4761ac9d20f54a8b2d0a6a0
BLAKE2b-256 fa7191fcb14d35e956eba8855521dab41b3f48138029a55da3679b5b86c9218f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 79.9 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.2rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0adc62ef1930eede053d7f0f4baa572f9276f82056f6431030847ea9cd94c2d4
MD5 0a9a7617cb907d484571dd19abb13384
BLAKE2b-256 f65ba3abcf59f2db3140f83d4326ff996081b871f6ac7c780a7ac2b08f3942a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.1 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.2rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9dc8cf2b7f66ccfa70df8aae9c4d8b72b81de123d7274238d6e2e453c4646507
MD5 1c7f5fd68269df6917f9a1445bda79db
BLAKE2b-256 840fb37349e701fd048bb518c62c06f90e26d1860d1217e97f82b3ed382ea7a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d885df3885b969404b0d0589da50123ba9dbb752d5f6e3e36f9430456ceb3b7a
MD5 858a99f02dec7c12a684abcf619835bc
BLAKE2b-256 208147bfe017e541e07bcff5f3c5e5f2b7f1446e71c29db956400d4ac953948e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c2c7519c0e8d2980149ab19fe360b56becad5560d6002841c85c4d88ff57e487
MD5 27ab2773b052e015e82b5e748993a352
BLAKE2b-256 34c72f4efb6386a074974645248b678484094a888beb0523d8625540319e09f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68a696a7d236f747ad43da2b7fa09cd7e1baf4882c40b0661cc8dfb538aec830
MD5 2a3961ffb16c2cd5a213ea39794b7e87
BLAKE2b-256 cc2f86a4dfbda650a7435ba0581bca8ada84b8cea34679c44a67dfd9120d13a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3cc27ce965c872f6f578568cfd3e23fca6f0078921b968cadba8ad71b6da9abf
MD5 c1e37c36a1c7e7b270b44db2de5cd693
BLAKE2b-256 264c7233f64c382b15c6331b10aa8a089e31e264c436bca61f96147bfe5df1de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88a165f702ff1eb75d13d5c69b9c36e682583088bccca161134a8d694e85b6c2
MD5 5342691132b77baa6befab21386d2a1d
BLAKE2b-256 414e9b123375069ba1b9c5db3ba63681277964ff049519f3f2362808d28e22b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a47e5d9a456a41dc602278d89034023bba8065c4b4fe0aa8cce10eddb25deeb3
MD5 f9f084897337e84c6c121fab303a3ae6
BLAKE2b-256 e03b8b4f5fe577d7b81fc6b1f3be3f3159d1b572b59b5c3269ca853994d467cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aef7d02b1a788ddc62af4603117dc0189fdd3491bdde2f585d3b17c9a5409023
MD5 7d8eee704fe2e7f93542432cd507e9a5
BLAKE2b-256 65ce4885ead76ade96da0a2bcbdaf11a047cca3e3a99521dffc691f91ef73b41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26e004a517ce2e38aa6455f8e6cab1e03b678773cc6ab9756bb299e225049525
MD5 3638ce382561844084fb201e92ea52b3
BLAKE2b-256 95cbca4c628ae8ecdd9ccedae33a577d9bf2246f7ac4a595f2c41f8846a90193

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.5 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.2rc1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f5dac8dc3e56ac275f479d79b547797c4d4bd7be0ed58ae120c3979e5f9d8b3e
MD5 9c59143eb842f28fa58228093df84c24
BLAKE2b-256 87d49f7e5bb9f52d5394913f76c1d91b049c1fe92795ae16a594ad2e97d6c2bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.0 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.2rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c16bbfd17ac4fe34b9ea4d556e3baa20697f134bb177a4de1cbffa989bb08eba
MD5 c41c51ea2672bdad115fb3d59a51d54d
BLAKE2b-256 f9c4f38ffef194cdbeb4a9698756277abf8f12ad5e57fa1f9727e2fb3b135d14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.2rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.1 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.2rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 53bcdb8bc0c942695dd8976f5eb9c49afb7ac34e38002d6004072afb04babd24
MD5 1940114acd683d124cc311206c66242d
BLAKE2b-256 f235558f0fb6730fd25372bd35ea7c88833c31994ab29844b40d8a3bd729123c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3250df27ed70cadc4a7cbe4b6de7a4b681296b3c1f8758b503dfd001ccf95883
MD5 406b5ed0545db723c2d958d3ba0643ce
BLAKE2b-256 d3c0517efb98d553c34d8e00a4d1de5cbde37b469434347c9cd9f3e892470cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7dfa0bbf652cf765e1916fe76659fd1f60dbd5880168ee15907d49127fbcfd54
MD5 fb6a44478606dea12ea298a4624aaadf
BLAKE2b-256 1f13a8b71a8ead4e1173d3423e3696a97a206cd8d49ac0c7291d5e5dc9154a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbce4bbf06047f2d50e65ffc6b9f88a14d4025d1f88e4429f92d1bf6cb0db905
MD5 4d7f13561d92c9c492ac75b806d68f65
BLAKE2b-256 617bc7e4f4e6d949cecf9a6d630e55289e12b7abb90a7f4aa36ef8c4689dd959

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 26f37d45234497d767c84882cfcc5f3224a4cc320572bf10b0ec35ff314c4d3e
MD5 b69eb360fc2a5e81c177c752dadc9f82
BLAKE2b-256 6257865c29862c386f7f9d83666120ff03567886bf347894421b4e2a596924a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99d34a8b11087f77f96e96027cf55910e0809db164faa50716becdb6f4f2b862
MD5 6bb552e8f96d6692f362db32991f37b2
BLAKE2b-256 4b2a15130a466bacaef20292d12fef96e40f27b02ecbb9cfa761bcf620cd4710

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.2rc1-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.2rc1-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.2rc1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a5c26f7422cf032cfa9ad1217ef1892554a16761b8776a3ce8aa70edabe1c1c5
MD5 7a9427df16b2d246a3d9857ab6b0c855
BLAKE2b-256 51e4773888895e744acf43970b517e8d4057eedeab150f250ab77772024f1da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d99dbe6f4b4b0251245fb6c4bc7e2e16820576f04e719a040bbd46c764396ad
MD5 f6d7226aa8c2ce3391c397343725f9e3
BLAKE2b-256 384516ec4d0bd03a094153cb35a2f00f9e6ffd18b7bf22cebf6ba98a1a7ea85c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.2rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b753523e82475970f9ca9659fe25e02643f3d956fdf4bb24da3f871a6ad9507e
MD5 ad0138079cb677007303a37d798735b7
BLAKE2b-256 fc98cba869ae3b8b0d8adaadc87dc420e22de8ca425a4c36159f1a527b87e6b8

See more details on using hashes here.

Provenance

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