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

Uploaded Source

Built Distributions

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

wrapt-2.2.1-py3-none-any.whl (61.0 kB view details)

Uploaded Python 3

wrapt-2.2.1-cp314-cp314t-win_arm64.whl (80.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

wrapt-2.2.1-cp314-cp314t-win_amd64.whl (83.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

wrapt-2.2.1-cp314-cp314t-win32.whl (80.2 kB view details)

Uploaded CPython 3.14tWindows x86

wrapt-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (198.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp314-cp314t-musllinux_1_2_riscv64.whl (192.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (205.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.9 kB view details)

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

wrapt-2.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.0 kB view details)

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

wrapt-2.2.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (202.9 kB view details)

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

wrapt-2.2.1-cp314-cp314t-macosx_11_0_arm64.whl (83.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (82.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wrapt-2.2.1-cp314-cp314-win_arm64.whl (79.6 kB view details)

Uploaded CPython 3.14Windows ARM64

wrapt-2.2.1-cp314-cp314-win_amd64.whl (81.1 kB view details)

Uploaded CPython 3.14Windows x86-64

wrapt-2.2.1-cp314-cp314-win32.whl (78.3 kB view details)

Uploaded CPython 3.14Windows x86

wrapt-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (166.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp314-cp314-musllinux_1_2_riscv64.whl (156.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (166.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.0 kB view details)

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

wrapt-2.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.3 kB view details)

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

wrapt-2.2.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.3 kB view details)

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

wrapt-2.2.1-cp314-cp314-macosx_11_0_arm64.whl (81.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wrapt-2.2.1-cp314-cp314-macosx_10_15_x86_64.whl (80.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wrapt-2.2.1-cp313-cp313t-win_arm64.whl (80.3 kB view details)

Uploaded CPython 3.13tWindows ARM64

wrapt-2.2.1-cp313-cp313t-win_amd64.whl (83.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

wrapt-2.2.1-cp313-cp313t-win32.whl (79.4 kB view details)

Uploaded CPython 3.13tWindows x86

wrapt-2.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (198.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp313-cp313t-musllinux_1_2_riscv64.whl (192.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (205.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.9 kB view details)

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

wrapt-2.2.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (210.0 kB view details)

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

wrapt-2.2.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (202.9 kB view details)

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

wrapt-2.2.1-cp313-cp313t-macosx_11_0_arm64.whl (83.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

wrapt-2.2.1-cp313-cp313t-macosx_10_13_x86_64.whl (82.8 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

wrapt-2.2.1-cp313-cp313-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.13Windows ARM64

wrapt-2.2.1-cp313-cp313-win_amd64.whl (80.7 kB view details)

Uploaded CPython 3.13Windows x86-64

wrapt-2.2.1-cp313-cp313-win32.whl (77.8 kB view details)

Uploaded CPython 3.13Windows x86

wrapt-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (166.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp313-cp313-musllinux_1_2_riscv64.whl (156.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (165.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (158.1 kB view details)

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

wrapt-2.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.9 kB view details)

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

wrapt-2.2.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (167.4 kB view details)

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

wrapt-2.2.1-cp313-cp313-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wrapt-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl (80.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wrapt-2.2.1-cp312-cp312-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.12Windows ARM64

wrapt-2.2.1-cp312-cp312-win_amd64.whl (80.8 kB view details)

Uploaded CPython 3.12Windows x86-64

wrapt-2.2.1-cp312-cp312-win32.whl (77.9 kB view details)

Uploaded CPython 3.12Windows x86

wrapt-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (167.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp312-cp312-musllinux_1_2_riscv64.whl (158.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (168.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.2 kB view details)

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

wrapt-2.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.1 kB view details)

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

wrapt-2.2.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (169.4 kB view details)

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

wrapt-2.2.1-cp312-cp312-macosx_11_0_arm64.whl (81.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wrapt-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl (81.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wrapt-2.2.1-cp311-cp311-win_arm64.whl (79.0 kB view details)

Uploaded CPython 3.11Windows ARM64

wrapt-2.2.1-cp311-cp311-win_amd64.whl (80.6 kB view details)

Uploaded CPython 3.11Windows x86-64

wrapt-2.2.1-cp311-cp311-win32.whl (77.6 kB view details)

Uploaded CPython 3.11Windows x86

wrapt-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (158.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp311-cp311-musllinux_1_2_riscv64.whl (152.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (159.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.2 kB view details)

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

wrapt-2.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (160.3 kB view details)

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

wrapt-2.2.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (159.2 kB view details)

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

wrapt-2.2.1-cp311-cp311-macosx_11_0_arm64.whl (81.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wrapt-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (80.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

wrapt-2.2.1-cp310-cp310-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.1-cp310-cp310-win_amd64.whl (80.3 kB view details)

Uploaded CPython 3.10Windows x86-64

wrapt-2.2.1-cp310-cp310-win32.whl (77.4 kB view details)

Uploaded CPython 3.10Windows x86

wrapt-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (151.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp310-cp310-musllinux_1_2_riscv64.whl (148.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (153.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (149.0 kB view details)

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

wrapt-2.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.3 kB view details)

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

wrapt-2.2.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.5 kB view details)

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

wrapt-2.2.1-cp310-cp310-macosx_11_0_arm64.whl (81.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wrapt-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl (80.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.1-cp39-cp39-win_arm64.whl (79.2 kB view details)

Uploaded CPython 3.9Windows ARM64

wrapt-2.2.1-cp39-cp39-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.9Windows x86-64

wrapt-2.2.1-cp39-cp39-win32.whl (77.4 kB view details)

Uploaded CPython 3.9Windows x86

wrapt-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (151.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.1-cp39-cp39-musllinux_1_2_riscv64.whl (148.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

wrapt-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (153.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (148.9 kB view details)

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

wrapt-2.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.3 kB view details)

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

wrapt-2.2.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.2 kB view details)

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

wrapt-2.2.1-cp39-cp39-macosx_11_0_arm64.whl (81.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl (80.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file wrapt-2.2.1.tar.gz.

File metadata

  • Download URL: wrapt-2.2.1.tar.gz
  • Upload date:
  • Size: 127.6 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.1.tar.gz
Algorithm Hash digest
SHA256 6744f504375775d7609c82c8d3d94af1c9a6f05586984536905908ba905277b9
MD5 4be92dfbb558e2dedde6e10e1f89e2cd
BLAKE2b-256 2d9f06263fcd8ad6c405f05a3905fd7a84dd3176eb5ad46e44bccc0cd16348bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-py3-none-any.whl
  • Upload date:
  • Size: 61.0 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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3aafea2975caef8ca49400640dde02cc7426e798f24870ed01f490bc3cffd32f
MD5 af1b97ac98dae49b7347600116e50e1a
BLAKE2b-256 534629ac9daf11a86c22a8c38cd9236c62928ccae83f7ceb06bd3b0467cf9d05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 80.7 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f70db64e8266d7c45d3b735f2e08eeb434b5e03da9a479ae42b2e2e486a21a00
MD5 edcda24e7978819c04f7631e0de06142
BLAKE2b-256 9fc0782b86e28d1ceebeb74cccea12d2cd3d2ba0bd68e3dec20b1bc5873f6127

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 83.8 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fd0135d34387f5fd087d9be368ea77ea89cf2451dc1cd1c622d35021bcb3ab50
MD5 9d079b4a2b51f8762c0e811d7159e3e8
BLAKE2b-256 ab312a7dc5f6abb2fca0b6e1610e120419f603650aceb4f1d3ac4cae0354e162

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 80.2 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2e08688ab16525897da6589d56d0aebaf417bbe91c2d8e3b96203b1efa596e85
MD5 6b3af44ef952086db265e6ab572b611b
BLAKE2b-256 c859822efe4ea722a3961331bfa35b7d90937790d2c20f0616de1997ccc3aebd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed55af48b3eb28f43228ca2306788892bcb629eb2b5c4876e2a3659872c2f17a
MD5 afc1697a09ab56f196d7f6e94f762599
BLAKE2b-256 bfa8e657ca876b06710194f243d81c4b0896ade646e244bdbec2d87c8c56a8bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f6518b94edb9150452e9aba08027d4cc293433753ec1fbefb4629a21cbc74181
MD5 7ce9f0bd2a5d36106b8138bc41f0e3a5
BLAKE2b-256 09af8e88031a701275b9085c54e64bc88c0b1cd55c77eadd400691c371cd76c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05d5cb74d1b232ec8cfa130a8f900708699ff2491d97b8f85a4cdc5996294b85
MD5 89cd8db9235cafb5ea480cffe753b82c
BLAKE2b-256 dd9d7ea651d1ab032fc5fa222fbec91d0f8a1397f6ae04ebb93fa7219aa921d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 78b0aa6bfb7be8deed0ab23e7aa028cc5210c29bc2d32a04d52b50e517a7307e
MD5 b429daa2dfff42eebbf0e119c909176c
BLAKE2b-256 b7e477e37ff33ad018fa81ade52c25fa327b80b56f81d734279a63614fcb4cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d83966dc7f4f45e8b97b5933685ac2e6e67fc0e19246ea314bceb9a8970c956
MD5 d72bdafa49041cf57298ec085d4c1f06
BLAKE2b-256 e545ac0c459f154b99d92789a6cba7ca727185b83513b986f8ec7fe2aacddcbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 69f2e9244542cb34dd59c7f073445b9e54ad9f3fce8d93606c368a1b499fc413
MD5 46670bd8ef14e71e9ff19937e65a78de
BLAKE2b-256 9d570b34db3e8de44ccfece62d7b337abd1631dd810f5adc5f3db571727836b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9dec1aca52dddde7df94818310fa2fe79739c8f385b2014c4cb1035f5508199
MD5 7511e5d172a16962435c539dcfc966e6
BLAKE2b-256 827b4e34766a7d7804ffce9e71befe47e9b3225dc350c49c94493c4ab39fd3a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17de18fc12cea55b8a9587314cb830573e37fb33b247a7515696350863714188
MD5 288c6a32d33bed9019e08f84defdd0d4
BLAKE2b-256 6a6d6dfae80150ff1919c356d1dd528f049bcdfaae29b4d284bc957e022caef4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 79.6 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1c9934ea5d92957e3cd0adbc0845539dccfd62710ebe16195a8c66c53954db36
MD5 a26cd0393d8d7e6c20bcf90f3e0993a5
BLAKE2b-256 acdc7bdf336953f99f4ceb0a584bb8870e42c8f26f93ea10c87834dad62f1668

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 81.1 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 50972a1d974ea07725a7f6b1cec5f8759008afd030a0024843ebe7d52de47f2b
MD5 e63d083fab968ddef67e70f7ccfa95f1
BLAKE2b-256 22b3ef7c3295d02e0448a71c639a36a057f46d524d057c9486291a7a3039e65c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.3 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 436addbc4bb4fc0a88c702577f51195d7d73683a7f3e0e5b253d8404d7847243
MD5 1d8aca49fceffb6954f6e023ca206ea2
BLAKE2b-256 b97320ee58c0612dae7c31131a7095345812ed2c7b389019e175f68cde34e5b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1845c2a8cc1180ccccfa45785dd06f562730d19ef75be180334254012b6283
MD5 d93fc4b28e4bbeef137cdd3177ed77c7
BLAKE2b-256 533716953929ed6776175720e58fc966e779926d8d71e2c7b2273230590ca71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e395f7bc31851ef9b612050368cb446e9bc14cd7454b025018980349caf25ae5
MD5 1339a93104881ea1bdcb16ff539edcfe
BLAKE2b-256 81069296d9e97bfdef5483dfcc859d57b095b257144b2bc5300ab521e06f4bc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d676ee388bc42a04d56dd7deb5605244dac2e35cc2fadbb43c9fa25bbd93508
MD5 c608cc261b82be8d5d4318cad737c962
BLAKE2b-256 245b36f5d6b024e4edfdd90b140742d11ebcf7836daf5c9daf326c55c24db412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aed9658797d0b45d6c49adcfc6b41f66e6f2d0c6de3ec79e16cf4b1855df240f
MD5 1831a7200138241f1c499511e91e4984
BLAKE2b-256 e9d772ffaeb01eebc704afe3fb99e840480f4bda45f0fa66e3381b6a39251c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf3638274ab9d9b724c9baa0b4c04e132cd6faefb78b4dd3dd1a02a4bdaad41e
MD5 8154a4998544beb08739ec171c7a1cef
BLAKE2b-256 8085a34d1888d97247da6c2ff6118c3a721c73ed8cc4dd198c00208bb73b6f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b9cf53ba90717db2e292401de290776c498d4bbfb0d4a559ca2895db8b9dcb5c
MD5 f51010c1a9a601cde570a3270fa9052a
BLAKE2b-256 15a37c8f704b8dc07dfe0a5d01c2edbfd88317aa8e5e3fa7c743eb7a085ae767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64b7deeda4b70408e382328d8bbe52a256fe9bc63ae3db86d804608367e5422c
MD5 32cb890809500e1ade46ac8e48f6e0f5
BLAKE2b-256 133cb74cfd984cef560b900fb1a727af20352d89e1f06bf2e1114dd3f00f5f5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6f56a647e4eaf5f0ca40330fb070f566bdf9f7b0db89a1af20d71c28dcd7a0ab
MD5 54219c14f5cbd654b6a5415e85bfc718
BLAKE2b-256 0aa311d7f34ebbf3231bc907a3e6d5ee051b14d034c1bc7b65a97d5cc00516df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 80.3 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.1-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 c318a64b53d97b841d7b5e637517e50a27be64bc695128422953d4b21710954e
MD5 d90de2a6bb48f1de49ff957f647840e7
BLAKE2b-256 eef396c39153a8737a6e9aa85adef254ac4195bea3f2d24efc60472ccc3c9e2e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 83.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.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 5590d63f5243251641cf543009b4c9314a79d0598fdb8a8e4cfc918494536c53
MD5 102f0a36406d0052ab34d9d572d0da45
BLAKE2b-256 ecb3fd30b473fe498c70e6b9a5f328b8d3fbaf1b8c3c481465f59724bba8eb70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 79.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.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 9907a4402ab6db12b7077a0ea5d7a4d028ecb22c8eee2b53527080d347cd1562
MD5 938179a2419fb54bc861e75db9ddea42
BLAKE2b-256 18dcb927ee9c7fc67adc3a5658f246a0d275425eb840ba36e7b702e70f18bde8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8cc5094b08abeae52da9c73c8a32003623be691a5193df2f4e3eac3d557c394
MD5 7b6870103679c6063fd43ad80fc2d326
BLAKE2b-256 df463eea8cde077d985f239a38c0257087b8064fd9ee9b1a99e282d2c86da4ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7a4fdb9326aab4a5a477a1640e5ad786a8495901009d7e7b038371edd23a9d2b
MD5 ae1f7cbc91a13b8c76747428a7aceb14
BLAKE2b-256 23b687d860dfc6460c246af70b1fd5c8b76df77571b42a493459423ded94fd7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d047f6498c973874ba08ac3f97c69a2c4b2211c8de6f4c205f75cb1c9522596e
MD5 f2ae85d829568ca88f53dd4c328da81a
BLAKE2b-256 ded0fe0ee202286afdf4a7f77dd29f195703145764d572aec209c5086e57d924

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 9d8f204c8e3a8bf9ece17e0a83d137fd807440977f8a5e762d59306795011440
MD5 e52f5e6da6703e0d55f87373a013d6bd
BLAKE2b-256 2a91e4454263516cf0e12640912fbca9a83654e424f0a6ddb79f5cd7ce14bf33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab5be648d5a0b86b7438864f8df3c705a65cef35a2fd3e5561e3e203167e0f27
MD5 fddcabca4489777861166db0e45f2987
BLAKE2b-256 4265e29d54aef06a4d898a5b8a25589a0b3769bde454f922fad8f6f89fbfb650

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 74d6a0c31472fe5d814917266b9f46495d7c61ed890af08b468acea92fb89a8d
MD5 d8e83f03b21cbf3523186188f73e017b
BLAKE2b-256 3bd6a88f1c13112b7831adac75cea65d8310e0d696d570c8961844c90a57b865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fafb4e739e43544d12cb4abd1605fd4683b6ca6a9ad682b7fd8f4d21973eafa8
MD5 4825dc8e9427e111d721ba4fbf3ae901
BLAKE2b-256 9c0de9c855716a3705eef1416456bdf062b60620726fdc59428ff670fc3c60dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ed928d0fda15fc0adc8d13305c8b3c0f2fba5b0669950c9e6d019d9162a3b3e8
MD5 26a26aec085f019cf291e95917e3c277
BLAKE2b-256 bff29a8741c46f8c208ac0a45b25ba170bcb4fb72a2781d5fb97dbd7b6be73cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 79.1 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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c754dafdf5aaf0b401b644a90a30046929a0dd1a536e0ff0ec959a59155d9c7f
MD5 4397812d39d2725d55eca94b7f6eeb7d
BLAKE2b-256 c74c89f4a6818fafbbd840330e4fa3873073e1bfc166133a64cac7f8fde7a5e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 80.7 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 368eac1e20fd0bb03dd3cc42bf9887154c3861b60989389ccb5fac032617d215
MD5 79ba4d10bfc73d19dda0f5b18ee557aa
BLAKE2b-256 9773ce10f0e71c0cfaa1a65faadb8efd4852028b3bb9ba28932b8889df769d38

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 77.8 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1ffa9cfd4bdb581539951b14ae661ff20ed0c3599b3e911a131ee0ec5ac11337
MD5 b580ab58510ea1fe82c7793bd46c4cb0
BLAKE2b-256 fe936390ca9c5b787683cef588d04f57c8d41b9a2323b5597a65f18638c90ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f53ac9f3ef573326d009ed809beff4efcac6451931c2b8132586da4b9e53ff31
MD5 7cba351f235158015c0199a35665616c
BLAKE2b-256 5d78bf00a7b02239c12bb02ddcc3c0b971bfcc36e578c5a44f1ccfef5b458545

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f5b9daf6b629fce418e0cc3dd0436eac045188fa35deadb7a7f3941d5b8203f9
MD5 c1b9e168b002a388a72081fb01476266
BLAKE2b-256 e022b8c2aa89862ff58605934d7abf4b70e6a5a1c33df96656f49035ccdf1c8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a5934eaea872e17936b5f45501eba5ab0bce9a74122e172b663d7c28c459c4a
MD5 467e11831e70e9f25fd2a6486217c4b3
BLAKE2b-256 fe5c93939ad11d4a12358ab1aab219a2ef5efa5612e0db6b9fc65af8af1a891b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e3677c7146ce694874941ba82b57092cc4875445aadf29d72807351023105143
MD5 4de0e46c89ba959f8ac20f4cda4a24f7
BLAKE2b-256 862af85d48d1cd4869aee6704028d257d740a47c1c467b457ce396b4b5b55d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abd621552ede77c4c69be7fac44ba911225b0c812b6ba604e5964cf98085b474
MD5 f2fb65c2b6913bea2512c4cb1ff6e100
BLAKE2b-256 62cef1ccbee7a1bfe5cdc6b3da6bab4b45713d628b9294da32a39f563d648140

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 95821352042722cd9f1108874579a47989d0a7e12a37d87d2fc4af20fd99ab8a
MD5 3428a592395c06c607d90023dd2eec23
BLAKE2b-256 386508d7a6c76ac4493bdb668205ee9c1de1bd5daca61717c3e9aa49b4c01499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0cb7e4dd71f4c32e5e84843cd3c4cd65dda034314004bbe1d7f99af2426ab80
MD5 c1de3e0ff96df043edc5cc7700ba21ae
BLAKE2b-256 54ce57890814991446a845e09b3445ce8b694f27eb0577004f2c2a36a9772ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d2beb1c7cab10603aecdc42f8edd6ff013f9a32e4543474e38e6b77ce9975aeb
MD5 c1219131bb67578bb38bf27ce2fa185d
BLAKE2b-256 88d1a1b08f8f4fac8cbb156fa51cf64ee2c7f7f74f9875ba3cf70b3c58368694

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 79.1 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8d1b4d0e0c2119587a31f5c029abd547e0c81d93b89d394566fe1588659eb579
MD5 245fb401324f3910fa0d49ea6ee753bc
BLAKE2b-256 e63a87512881be64e743f9ee4c66f4cbe8e884974bef2a5989af71f999653ac7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 80.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ce32763ac31ce94fe9aada947e479b1975012bff166da409b4b9e4e376cf7e5
MD5 51f1d09f9f85bd7b42d56364b46baf80
BLAKE2b-256 efcb99450668dd3502d62a54a1c8aa56e44f34cb8c1261b381cfe2e7926c3b75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 77.9 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2f8c90c8afde51969487be4e1343ae049b268854877d415c2510baf833775052
MD5 922cc2892d72c20e75b96d4ceb034597
BLAKE2b-256 307283ea3790ea352439442349388e29ff07b76e0686265f9088bbb505d1608d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87bacdaf225117a342a20d9c03438d701c02112f6e3f351ce9b7f32354f14797
MD5 f7d56d76dce949b3a32ce3269a40ff1b
BLAKE2b-256 1d688d92c8800c57e93cb116ae9e9d6cbafc34fade5ee9f9107b6f203fb4dc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 844c858fc3bb7eacc0ba8efa904935d16aac6a4470948ad1e7e55c9f5a2a665f
MD5 4f89adbad416f38413522597d1baf47a
BLAKE2b-256 b1f32d541a060c5bbafb9400bca4917e4d78bfd1f239f404782c86831a8f6b29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d9ff006f420b2ec8296aa56ade43ea7da3e997e85769f0aafc5e0661aacb710
MD5 473d54c9f514252519f33b02fa6fb9b4
BLAKE2b-256 b1d0ae2fd64277a67f5d7bffcf2d05eea1e476263fb2a072baf0b0129ab85984

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 03df9ebed4c73ab93fa8c07e3d41d818dfca1852b15731a3de59457b27814624
MD5 7d565b2021dca6707aeb1aa804ffce13
BLAKE2b-256 cd87ee3f32d5658e3e26d3e0e457922b47a36dd3bfbdfee7f97bb3e802344a66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 727ab4244622cd6ad2390f322642090c877d2e83a608d2653a7643ae5368d926
MD5 6cccb0ef7cb0838374a8d386c3991d48
BLAKE2b-256 aa0b76b601ee309a8bd556af0eecb184394c20b3c49aa9c8e085aa1ffacc2568

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 61acce4257a9883669703c525447c5b4c392edf0f987ae77ec32668440158f0e
MD5 07b77e9faa54b79b64d3e63ec2da68e2
BLAKE2b-256 1793fb357cc7847c58a8ae790be718903afa81a28d23e642c843dc4129e8a0b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 628f5220c7a904d5fc78f7075c8d7871433eb6d035c94728a22fdf85f193d2a8
MD5 cf285c34b3c175569a0423f800e39853
BLAKE2b-256 265880f6a6599f933f4caecc1cb3ee88a04faf81e8b9bddbd6109c688dd63e0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3ffad790d9d11d8ecf9f17c4bb671a5b4089e4d8b575c46c5129597f41f836b0
MD5 a1182be8457c3580e63338610a0bcc6a
BLAKE2b-256 890cbfae7b9401583b6d05938cd16dedc43857d96da2f8a3d50d78cc515bf6ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 79.0 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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 401229e9d63ca09f9b8891ecf83798d26c11bbb445d11ed9f1836b6d4585b38a
MD5 06462eb6ca3030ca304cb34bd624bc6c
BLAKE2b-256 7e25d01f560888d99d94a959c85533de349ce68d71ace3f2591d6ea8f632cfed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 80.6 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c210a6994b21aa9b29e81c8d11560e8fdab54c117e9cff37870d0a27bde1343
MD5 3a27dd1f079a77d613c9edb198f760d5
BLAKE2b-256 c856987b9c13b3e1c1a3c6de71284076f996b79caec90e75a87c044a40c23db9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 77.6 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8a983a603a18c8708f024f7f6991b2e66159219abbf894634c5056243c55f3cd
MD5 18333d6cd6e29bc443b60103135ec10e
BLAKE2b-256 522fa92427dbdc74e54c1674abbed27e61b2cb5e7a94441b8c1270c70671d928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b984d1eb252145d6302c1dbd5e87fc6d404d45531447c84eadec04bf1fcb027
MD5 e61c02a41e8c41502b9802970cdcebc5
BLAKE2b-256 77ac5d203f98df8fd136b95c5227139aea02d34505e18baf812d0c005df61963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c803a3d331796255af51ba2c79ed0ac8275865b516c09e61f248d1e7aff31ce9
MD5 1787e861dea4e7d690c7683aa0062f63
BLAKE2b-256 ecdc435015b58ce33c6fc4104158fa91ddb0e809ab03a5751fb7465d1d461456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67a97e5b6c457f0cd3cfc19ebb2d84463e60c3ece754cc831e4281a3ca29bb18
MD5 988fa86630f926bd96e1920039b99a8d
BLAKE2b-256 4c4aeb79423192015f46f0db2872e7e04a3dde8d359b83411e8959e7c9287eaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ac2745950b2bff80219c15ebf2fa9d8427eba7e249739f97e55c9d169e47e9e1
MD5 f9db6a9407853b146d811008e90deade
BLAKE2b-256 d695b7cd9a22a06cf93e6482904ee6afc956248983553593fd1009296d1b3b31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e2f02472a1cbbf3884b365714a810b5947134a95ad6952b554cb8cce9d492b0
MD5 5798b042170daac097b76200530e9db6
BLAKE2b-256 d94f744132a7b2fbefa6b81118ec5942eca5fc2e9a129f9055a0c5e46885a549

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9a04c28c10ba7fd12842b109d2edb0678872a2fe65277ca4ff06a0d61edee245
MD5 e2cadbe626cb562531715a66ee4d311e
BLAKE2b-256 6efdc0cac1f77c9c4f6fe58a920ca632ce379bb8be928720e11e8d73de28a5e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ae574d65c9fa8e86f64f6a7c2668f9fcd507b183e0e577619f504b883cb0a6c
MD5 4f1d1912a948fe5000bf44d06c7b3124
BLAKE2b-256 eb79b8ff3a61e71babf58a8cf4c0d63358e8bad383e15bf7f35e62d2f6b6e4a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd57607acc85678925940bd5df0385ff8332083a32fa8d7a43f8767f4997263c
MD5 c0c2f8e5be61b2254d35bd3102a92aba
BLAKE2b-256 5fac4370bde262c0e633e6c4f0e56d55095710024cf9a5cecc20c59a10de483c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 79.1 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 44255c84bc57554fed822e83e70036b51afa9edb56fc7ca56c54410ece7898c9
MD5 a73eb710f043a8e86fab940d6f7eecef
BLAKE2b-256 580f148376523b4e370692286a9ba14d5715cf3c5b86da3bd3630926367b6b73

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.3 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7f513d3185e6fec82d0c3518f2e6365d8b4e49f5f45f29640d5162d56a23b54
MD5 e1d6d24a27fe183cda9a9ce77aaeff2e
BLAKE2b-256 13d3882d50452c6fbd13f24fe5d2644b97cdad2565a7e1522cbb6312de8a52cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 77.4 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a8f7176b83664af44567e9cc06e0d3827823fcc1a5e52307ebb8ac3aa95860b9
MD5 2ea826e4d64e90ee0f8508934cb1afaa
BLAKE2b-256 a1db95c152151d206d4b430516c89725306e92484072f38e65492afde63f6d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9011395be8db1827d106c6449b4bb6dd17e331ff6ec521f227e4588f1c78e46f
MD5 ca8cff5325cbd9c7de48b1494fbf8b0c
BLAKE2b-256 6c4662a79b79e35bbebb1207ca5d15b81192f37f20cc5659cf4e3ce955b7fcc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ba519b2d765df9871a25879e6f7fa78948ea59a2a31f9c1a257e34b651994afc
MD5 04c38c333a13ca56195063eab8692dd6
BLAKE2b-256 4c00382299d8ced610b29b59b099a89eda821e8c489aa152b7183748ac83f32a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93fc2bf40cd7f4a0256010dce073d44eeb4a351b9bca94d0477ce2b6e62532b3
MD5 28585b46e87b4e9832263e144efafad1
BLAKE2b-256 e7d0918884d9dfa84d0d135b42a51c00910f5c5447fe7a5e211a8e16ac324dd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 07be671fa8875971222b0ba9059ed8b4dc738631122feba17c93aa36b4213e9a
MD5 26a543e67010fdaab49e9a32361799c9
BLAKE2b-256 f94b37ecb90a8c3753e580327fb40731a984b754e3df65d2ef932bf359fe4adc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09ac16c081bebfd15d8e4dfa5bdc805990bbd52249ecff22530da7a129d6120b
MD5 30b3763a6c80cfc4006daeeb9c3d337f
BLAKE2b-256 01d16b3d0ea995b867d2862aad5619bd5e17de09a9d64a821f46832dcd272d40

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 036dfb40128819a751c6f451c6b9c10172c49e4c401aebcdb8ecf2aec1683598
MD5 0fbe18b5d725579554917c7a3d8eebe0
BLAKE2b-256 94c23d186944aae923631d1def58f4c4ff8f0b6309906afc0b6978de3e69b3e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e422b2d647a65d6b080cad5accd09055d3809bdff00c76fba8dca00ca935572a
MD5 1ab83e01b12d465b82bbb0efeb3b7b97
BLAKE2b-256 f38f64ec81194a0bc708d9720174c998c8a32116e82b5b32c04e20a7fe01176c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f68f478004475d97906686e702ddbddeaf717c0b68ad2794384308f2dc713ae
MD5 a7b80b843a2e3dc4f09a6631720df46f
BLAKE2b-256 b48b84bc1ea68b620fe0e2696a8cff07e82f4b962d952ab14efee8955997bb70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.2 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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 585916e210db57b23543342c2f298e42331b617fd0c934caf5c64df44de8640e
MD5 2f5c4087aa902e18bed0fd9261268502
BLAKE2b-256 a3a6d7835803916569bc05871f3e3fbb42b26f81df3c696d3a6ccddaa194b3c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 80.4 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2de9e20769fe9c1f6dcdc893c6a89287c5ccf8537c90b5de78aed8017697aad5
MD5 80239b908d60a14d20829aab8f78a147
BLAKE2b-256 7779ceea6f7a912220c5fb59154a65ea9e535fdf8d25042671e3cd5352156e20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 77.4 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c3723ff8eb8721f4daac98bc0256f15158e05316d5e52648ce9cebee434fbdd5
MD5 b274981e600ce06d5c56cf4269e53aa3
BLAKE2b-256 205920355f078de6877935ed68636821b9bc822dac73e11bb1f0f72a171a4819

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 151.6 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24c52546acf2ab82412f2ab6fc5948a7fe958d3b4f070202e8dcdd865489eaf9
MD5 f24efcbc1ce61a2bbeff475f2f3d52a2
BLAKE2b-256 3118d6a5491f4a2a9a327ee9c05e25871e7acf13a70adf2420b13edb849eca20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f4e1a92032a39cd5e3c647ca57dbf33b6a1938fd975623175793f9dbb63236de
MD5 d8931358c439322bdd8d07dcceceb85a
BLAKE2b-256 dbb1f776dcd8adc51d75aa9eb218c97b157294c8784dcac32723edc5a1224da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 211f595f8e7faae5c5930fcc64708f2ba36849e0ba0fd653a843de9fa8d7db77
MD5 7e061d3ddebd8467ed9739cc3bce9e53
BLAKE2b-256 15337a752d1da61ab80c8914e2814f8c62d190cf3e4aee99f5552d5caa1b99ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b6c0febfe38f22df2eb565c0ce8a092bb80411e56861ca382c443da83105423f
MD5 d88ac80320847cd65d56f64109efbd88
BLAKE2b-256 f9e081a743527fe945c39bf4b3937cfc4826a1883919baa0c9d9eb266d5d261f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61a0013344674d2b648bc6e6fe9828dd4fc1d3b4eb7523809792f8cb952e2f16
MD5 faf4398a7a0ca587991f55cc426d98ee
BLAKE2b-256 503a238c01952c6e2aacb8946fae29e909e6cb22e481239db909e8311f0387d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.1-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.1-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.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7975bc88ab4b0f72ef2a2d5ae9d77d87efb5ef95e8f8046242fa9afdaaf2030b
MD5 44787cc3539bf7525e55b2da86a49d44
BLAKE2b-256 ecd3768bad78a622288efef290622198bd1dc1a0b86342d4239c1c9f8761d22e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2076d2335085eb09b9547e7688656fa8f5cf0183eab589d33499cd353489d797
MD5 59b84b5dc4989166636dba7457753ebd
BLAKE2b-256 96a83becaaf33b4f49500356a4bb142ada48faeba81b8fad6aab331ee2c2d856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5fa9bf3b9e66336589d03f42abce2da1055ad5c69b0c2b764852a8471c9b9114
MD5 8e11836afae080dc586e10d677084409
BLAKE2b-256 968e260004b03aeb4b544c7143ae8c2103dff774313d993d69c08a620fcb6686

See more details on using hashes here.

Provenance

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