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.0.tar.gz (125.2 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.0-py3-none-any.whl (61.0 kB view details)

Uploaded Python 3

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

wrapt-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (199.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl (192.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

wrapt-2.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (205.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.7 kB view details)

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

wrapt-2.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.7 kB view details)

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

wrapt-2.2.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.7 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wrapt-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (82.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

wrapt-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (165.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp314-cp314-musllinux_1_2_riscv64.whl (156.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

wrapt-2.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (166.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (157.7 kB view details)

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

wrapt-2.2.0-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.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (166.7 kB view details)

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

wrapt-2.2.0-cp314-cp314-macosx_11_0_arm64.whl (81.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tWindows x86

wrapt-2.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (199.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp313-cp313t-musllinux_1_2_riscv64.whl (192.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ riscv64

wrapt-2.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (205.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (194.7 kB view details)

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

wrapt-2.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (209.7 kB view details)

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

wrapt-2.2.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (203.8 kB view details)

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

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13tmacOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

wrapt-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (165.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp313-cp313-musllinux_1_2_riscv64.whl (156.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

wrapt-2.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (165.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (157.9 kB view details)

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

wrapt-2.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.8 kB view details)

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

wrapt-2.2.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (166.8 kB view details)

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

wrapt-2.2.0-cp313-cp313-macosx_11_0_arm64.whl (81.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

wrapt-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (167.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp312-cp312-musllinux_1_2_riscv64.whl (158.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

wrapt-2.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (168.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (160.0 kB view details)

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

wrapt-2.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (171.0 kB view details)

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

wrapt-2.2.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (168.7 kB view details)

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

wrapt-2.2.0-cp312-cp312-macosx_11_0_arm64.whl (81.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

wrapt-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (157.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp311-cp311-musllinux_1_2_riscv64.whl (152.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

wrapt-2.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (159.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (153.1 kB view details)

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

wrapt-2.2.0-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.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (158.8 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

wrapt-2.2.0-cp310-cp310-win_amd64.whl (80.4 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

wrapt-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (151.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp310-cp310-musllinux_1_2_riscv64.whl (147.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (148.9 kB view details)

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

wrapt-2.2.0-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.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (152.1 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

wrapt-2.2.0-cp39-cp39-win_arm64.whl (79.1 kB view details)

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

wrapt-2.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (151.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wrapt-2.2.0-cp39-cp39-musllinux_1_2_riscv64.whl (147.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wrapt-2.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (148.8 kB view details)

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

wrapt-2.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (154.2 kB view details)

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

wrapt-2.2.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (151.8 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

wrapt-2.2.0-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.0.tar.gz.

File metadata

  • Download URL: wrapt-2.2.0.tar.gz
  • Upload date:
  • Size: 125.2 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.0.tar.gz
Algorithm Hash digest
SHA256 b70a0b75b0a5a58d04aad06b3f167d49e729381d3417413656220c0cd7617847
MD5 661b39a6976a97a5735cc267736ffc09
BLAKE2b-256 e2f05e969d268d59e6035f2f1960da9e82fe6db24a7b8abe8e36a78c27cb3e2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-py3-none-any.whl
Algorithm Hash digest
SHA256 03b77d3ecab6c38e5da7a5709cee6899083d08fc1bcd648b4fa78b346fc66282
MD5 cb2c2d203ac9e41e7422dccdf6b17eae
BLAKE2b-256 3319713f33fcd8f7b0aa87c9d068b590dc1e86c51d5e329bf83dd91ee47fe872

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 9ad894d5dc5960ebd546a87a78160a8c645b99899e7e45a538436919bc9be5a6
MD5 0f811c04ae4afaf3e8c573164c003f4c
BLAKE2b-256 f311d41fd5f17432703783f996fddc475d40baf20fe76f2c6dc217c2dd219b4c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cccce5c70a209eb385c82d063f332ed97fc02d1cf7bffb95b2e6995b5a9b8388
MD5 7f2bbe14d24e32ee525d4fbde4f9fa61
BLAKE2b-256 b834d10901fb7686ec642e22d75d260f07ba6e05d28d5c83cb1efdc8d5c03e07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4d5b485a6f617825fa7449f5025ebcdad9355acb328cb6d198ba225762219bc0
MD5 4411bca17de3ee0823acaeaab7a599cc
BLAKE2b-256 2a42afd8991950e38f32c73008a3f2cd834cab32e338cc1997b7a39272a22cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb9d0c3f416e2c7c37498d1716fe323379da8b4e860da3d3818a6ec8fff7b7e5
MD5 74b91db3b96691392ffc296e2dd80c76
BLAKE2b-256 1c4ed771a75386676fe08086affe57b0f7cffafe528642ae5ebf95200811248e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c7af243871699358ebf34a770205bf2b61ccb17a0b003e8726d2028cc36ce364
MD5 5fe7d7e26299377c86556328146badd6
BLAKE2b-256 d458623708a153bb1a519260bf61086c5f381196a7d505ac729f7979b0d1a957

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74b7949da2ffcd79869ac1e90946c14ce61a714269403a879ea9ed85a993c81f
MD5 5b0acda6aafa6338e86d8e16a79b1b28
BLAKE2b-256 1095b824ac1e5900f39f80d0d4e97cf59389b078d0fed3551f471911f9b46281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4b0aa81f4a3d0203ae8450eae5e794540afbf00a97dd0b81accbe5b4a5362cbb
MD5 43258ac2af82b8c6522cd3201b0c9050
BLAKE2b-256 79c85925232cf614c23969b2267d954976e288993ef9e94a74eba4f26ad41232

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45d4156fd35d0bdab58eac4a6854fbd053a59544fc57eb66e977b3c13c087a1c
MD5 08ce378409a56d28f459ac2f30f94b0f
BLAKE2b-256 fec6c9ea3537ea759edcc856a32fc2d16abee41d7474f853bf00089058c0a33e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 115ff1501c11ac0e267c4afd6f6b3dd24b48afcc77b029e6062f71b12bce1d79
MD5 ed6486a8e6954f7fdc475c03a26ff6f7
BLAKE2b-256 54b962702f8bdaf509e444ec38bf142122db8c5ebbdfe6e2ca8e1dd7d43fb574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a094508b7cd6e583378f3cf50f125814961660225bad88f4ecaa691e30b09e1
MD5 9b09356591bcbaff520f105daf5252b8
BLAKE2b-256 71bf31060eb2f475b7798926f46c1779ec93329a48730cbeb8f9c0855162f97b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f0318a47d23c9407f4f94c06824662499e889ab8c192c1162e4f542a118fd700
MD5 42964d9b054b3a61afea759a0de4d18a
BLAKE2b-256 affea25c3eee98417de1caf541c1b234bbc3a8b0ce4817b0c8934ca57bfe3e89

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b4ce4240a3f095e77cfcc5aed6001bd63af13ea53c35ef496af1a5a972e7eaa9
MD5 bb670ea0f4cec99bca110a9679d06d29
BLAKE2b-256 93aa152902a4b85cb55daad6e383a91ca5e23fd8d56132a4aa44987b7154f5e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 628fbd908649611c8b9293e2e050231f1e230be152e7d38140e3b818ec6aade0
MD5 5054a8e6ceabc7a199edf8b5465614d5
BLAKE2b-256 ccf5c7fbbcbd8285f1999666115a793890a38e8b88744b8c3630059a0efa88bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 319720847afa6c58c32f84f9743bdcf34448ae56908c00f409764c627ff2c1fe
MD5 96e1ee913d8b3a19b0c58bff5d261286
BLAKE2b-256 b3bdd5d59f0a074e192f1cdafdeafca3d1aca25c3dd9172e0418fd04a912b864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 231e2728ba04536821d2327ad2b3cb2c20cc79197fe5c30ddf71b12d95febe10
MD5 fff7f3b1755ad2e67ec1f820d8845bf4
BLAKE2b-256 244316017c26a1eeccbbf8f79f5172095bf9b0cb7183ac9bfc4a3c2c9fc37675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5b9733ef187cf05e774484ed2f703992a44429050f1cfea2e94dac543da78292
MD5 fda8adbc0709d157062345bee16a6d75
BLAKE2b-256 3e73118d00ad41f270128aa94a80b8150c5b720c18e06dc1a2291795c33839ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 686f1798727bf4a708df015ca782b20abe99b3664e1ee9786b7712b0e2310586
MD5 3d3ff0d5ee3bddc48d53d1e67e2a8c41
BLAKE2b-256 72f877fa31bda9344ca76d6a8eb6f5bd274aea1a7e24d6279b21fc2349d41fbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c990d58100f9ebb8e7a20bd2e7bd3c60838be38c5bbccdd35041bc9f36dc0cea
MD5 9723516f1d5ec6734bddc75bb954b88c
BLAKE2b-256 8da0b2e96a62cd572f186eb94be906d4854dd301b20a3b30b648c8ddab11a2fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f990f1b5c8ee4ff980bdef3f73f50728fd911b9ab8de8c43144e8019dcd845ff
MD5 d63fdaa7e93610ee0a4ff44fd23ebf1f
BLAKE2b-256 9557601af72054c2166e11781a30b0fd6f7d500e9186351e73f8ff5d923afcee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 db48e2623a8aca63dfcfa7e574a5f3a9f760be1c464ee23f6387f70cc9112aa2
MD5 241abef179162a471a8415b004a902af
BLAKE2b-256 219546922f9415f109506f8bdfd903138dbde8a507a70ca02904b8dcffaac171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2aab40474b6adae53d14d1f6a7785f4346a93c072adf1e69ca11a1b6afc789e
MD5 d56bf44f0ef88e23e81555335dc78a80
BLAKE2b-256 65ec06efd37278eaee793521aee41091cb29fe20603dc5bd2f5cdc4e73fe9ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5c17982ccfece323bb297a195c9602ef407819199d8dbf99b8041770513fd68f
MD5 4ed447269ae8c892506a5f51580f9626
BLAKE2b-256 11b7dd4278d51621fd5054f840744be1c830b37e9d7b9b22b5590eb69c5039a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 60bef9dc4348a76e9c2981ec4b06b779bac02556af4479030e6f62b18545b3cc
MD5 ba6357337c678dfceada33ee68628ce0
BLAKE2b-256 56c5ec61c19ea596299b0f0fca9f5ff82418a5152d933772bac90c61a4b06c30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0680304db389599691bac06a2f9fb3f0ed06af59f132d35801a38cf6c321ab59
MD5 c9245f0d77c8c03708732e186790d95a
BLAKE2b-256 b7018219ee5e1491fdd880564af04a809eb8866481faff5cce6105174202667d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 615be1d2b21450748e759bed7bf9ba8bc28307e91cb96b6e968f54f39e938ee5
MD5 a360024a1b302fd9f8bee42be0d856d6
BLAKE2b-256 f2cf71f00a6a0e9f5244c0bcc4e445d1087467d1c80e788637929bea0a1ea637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f58e1aa46c204171a2faa49b1ef2953edebb3913d270bb3bae7e970f254c9293
MD5 1fdee91db77c6f112dd12c12c322ac2f
BLAKE2b-256 dbc4b40d8d176979b9397a4cfcc9eaafdd20697fc6e62293d70b1951d422b988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ec257eedd8c3988cf76e351e949e3a56a61d90f4bb4e060de2ebfa6603df2a42
MD5 de859897a90f74db7f499a727eafac42
BLAKE2b-256 81d4647312c3fcef95e6c65fd4c11efe4575cd021ac0074f3000cb066fc67c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bf3ea62734b24c0241442d8b7684ef53a8de6cad0c2eba1e99fd2297b4a92e4
MD5 b449b33b8f3fddaf2634c4a5a9757fdd
BLAKE2b-256 63f6cae7b5f26bf1385f562b7904db23b686e66a4f4f4b3496675531b1d0d968

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fb240700f3b597c1d40d0932bfed2f4130fec2f02b8c2cb0bcdae45d321cb691
MD5 270cf1132064a07ebcc10678a67cd6a3
BLAKE2b-256 d991be1181e580cd20a2584260285aa25fa9eb64a27a5921a431008910ea5d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f663528d6ea1804d279462671b2bf98a4c0d8a4a8dd319bb3ee0629b743387f
MD5 401c7486fdddb001db3f692b94263b7c
BLAKE2b-256 8fb6aee7c4fd7f19026d464ca7fd8a83efa5f3168ed33897ca0d1ec83bd15de4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5248171d3cd33f12c144e7aa1222983cb6ab42651e985ce51fec400a876afbfd
MD5 7951e5294818c36282eae5d90aa6de35
BLAKE2b-256 18b0bd4b4c51243a38009cc1c96f0503a535a7d8044636626bc7c545e766e73d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b208a5dd6f9da3d4b17aa2e4f8ca9c5dc6b9a2ed571fdef9ed465102487b445c
MD5 d80a8b5876f92f939423c6482a05d505
BLAKE2b-256 dc9637cc2bf299cfbf21f6bb7dfd0ba590e2d29f9e1fe6aa334a97395f4406dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cf93c441b11c1f3ae2ccf1e8d876939b301b3234ec19f311ab0e7543a9d4427e
MD5 adba5805b688e4a569cdc5a9e1350de4
BLAKE2b-256 92c73bfdcddd4c0281d104305e473953f1402bcae1898089656b6a9567a1e5cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 195db5b92deba6feb818732694ad478abb8a529d97a113cc256e5e49ee2dd80d
MD5 4e87fd6f900ff65c07a17fbb4fc00f4b
BLAKE2b-256 1134aeda6d757664a569a19d3e88e89f1c52134bbaa59b053bb316c69c71c459

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 76b8111f8f5b8553c066caa26193921dea4185efecf1f9b38473054205137800
MD5 ea037d58eab5e41f91a6a3947921f153
BLAKE2b-256 bade1eadc4caa3797a33d231572435eed9116d24f56dc6c909c43b59092fbb37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3848854af260eb4cc33602c685524fff7c8816f033325f750c7fc75c6deccf9
MD5 37c26a232f389cc50d7090cea34685b3
BLAKE2b-256 e486eda5a79813cd9ee86cd7275b9eac5338166886a5ffc9dcf881a3068d03a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8062689c0e6faf0c2532f566a492fb48ba60923c2cd6effda7cac9639dbdc1f3
MD5 70f32430dc073771c4a6224a04f75f66
BLAKE2b-256 cf90e3355e82cc765a411283ff4335ab41034d4eab9f5226b3e5840bebcaaf96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9040b15216e07ed68762e44ff231a460036e4bf3543f83988f669e7078847b2c
MD5 11c9275ff02773f32325516dad9eced9
BLAKE2b-256 ac33e66764a3aefb45a3a60ac76ea6878417a13f98e67f046f8e78b0a9ca6063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 370b2c36e8fee503c275e39b4588d74412cd0a7792f7f3a7b54c44c4d33d4884
MD5 f7511de119f67eacf809c6a12536ad7f
BLAKE2b-256 83f6e4295b9dadfd73d1db30fced3cdf1d083787d77857257998c5b9dda8b3d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 e8ae3f4b50a3befa56da0f09d2b71a192454ce48e8887823dbc9228cdbb610f3
MD5 54eb31075ece34e9df0e750758c0364e
BLAKE2b-256 abb39cb0277fb0f5c853aa6a91f384784e73db4c3db8ff0f405bc3f71d93daae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12331011cbf76b782d0beec7c7ed880f51454c127ab12012cfaecf56de01a80c
MD5 ae9504a20e508c9f521c5ef9911c9073
BLAKE2b-256 f867b3dadb67dd612223615438ce080be6bd1fee6de12ee16b2ff9725b3169b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5b865e611c186d15366964e3d9500af504920ce7b92a211d61a83d2d3c42a508
MD5 56f5e29579a9b1d468eb1c61a601fd27
BLAKE2b-256 3f19a68afc8f7b085bc34fa6e17a120a10b2a9e27579369c79fb40f31ba95d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07dd562ebb774cad070eeedb93c7a29647979e30f0cfd1f5c9b9f803f687b6f4
MD5 84c034d863b93a347eb6d0ae04f77146
BLAKE2b-256 14ced0c5ecb47818be6d1717ea51eec1285f8d53777994fe44deaf9d7299f65c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 49c7ad697d6b13f322a1c3bb22a1c66827d5c0d303a4479e327210ee4d4ad179
MD5 c543aceeb5194e793fd57cdd278c6526
BLAKE2b-256 c4bc00d23a39b5f002dfa20f7441721bb44198e7c7b4a6b3f3d7b4ff88fe2dc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8d40f1fb34d600b3eaf812941d6bcf313075728868cad1dafb7021e6a4e77983
MD5 f8b5ef98c00a05f98105f79e8638432b
BLAKE2b-256 6704354d2fd146936dccf55aced66a606f6e1665435e3119765acb00a8753eb3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 199abadf7dcceab4bdc5bfe356275a56b1cb429296e283da2fe90c20b09f8d07
MD5 7278a7eaedc31d1fc10439e20984e70e
BLAKE2b-256 70511564bcd9863dbf2cca3a687f53a6eeaaa08850e331948f1c4c7818401e88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9b58e2cdbcfe2278a031a12a7d73836d66bc1e9e65f97c63ea0a022f2f9f351b
MD5 7f0b9722ef2f45dd4820a1eb747046a0
BLAKE2b-256 4eb793fabbf2b505b610d019ec537c9dfa785a96920dcfc2ff8f57727aa54625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4297b7338cfa48b5cfefc7416d2ae52b0aad89e9b24da479ec010717b987c07f
MD5 52d01de7f67cf019f1d18252b2694f29
BLAKE2b-256 4ab24f5f4c722aa730eb2c0723ee8f32d0d7315d07173cdac0d08b7b92bbab39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bb7c060c3faa78fe066b6b1c65de285d8d61fb6e01ee8195625b9636c3cd9775
MD5 97b02dece4ee1635cae94d305838b2fb
BLAKE2b-256 7def6a10e1200b2238be6da767d1814ab298f20e533a6c210f9ae6423ee3139c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8ce59cad2ee5a4d58ee647c4ed4d9adc4282ffdc31e98cba7f831536776a0f9
MD5 41d504822045cf9fc7b0fb6f5954a660
BLAKE2b-256 e2dd962a9281d9c35e21c5a662c7d05c2af0108a3c833d2d6ab2eb546e520f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b62f40eb24ccf05246d203461c8920889fd38dce76978df16fe28e6f0128447d
MD5 a3df691b393adc9d7b57c9d6b1d5dd10
BLAKE2b-256 19f86255eb9827dbd137569de68554b1e9535c3ac79cdbc377af3da415891807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d98bf0078736df226e36875aa58a78f9d3b0888bcf585144fb30edbbf7145238
MD5 6a9cbef1a9d44e3bf0e929d74414e15c
BLAKE2b-256 1069de03c995ade9b215f2c019be6442fc206b05ddcbec9d2f81bf94157aef47

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5b7f10aa09d1f5abfe3ccd022dec566a5010465b98b3755cc0705a762547101f
MD5 b59907feeb5b6e490dd4251f605636e4
BLAKE2b-256 a6a96ecf97645bde3fc5faa980516f7007ece0b38d3219e5add54042d3ae8b4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778aa2f59615973f2637d9025a708b69196c4814f38d905647fa1a56d7ff6b79
MD5 dbfdd8e7a7d4cdc5f27d77fe0cbe9e71
BLAKE2b-256 a056bec7ac3b1c40bee400aecf0db3abee9d3461fd8f02eb42fb02693092b3d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8a76b27fe0d600f8a34313e1a528309aa807a16aa3a72000619bc56339020125
MD5 b0f37b8a35236c0846a5b56ed1ae5252
BLAKE2b-256 83ac0d40f7f625b78d698dd8fcaf2df31585d2185dd0c261b82f7cc334c53168

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7e291fa9129d9998ed5035390d4bb9cf429c489f40e5ddaa06a1e83ed52048a7
MD5 ef8530fcd26063571b5756a822b4509c
BLAKE2b-256 0a5c3c441a01c9e1f072f0a9c062a3aa709b3fe488af649ecb0b74206e5a9754

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 22c7ee3a3737d9656ddf2c9cc1f1548ec963d966251e899561da142697d33a9d
MD5 31de95c5e7129fb77b5d95a69226e57a
BLAKE2b-256 5f329df5dd381c2d4d9f14d8d442de4efd8ef8fda3df8b25a384e7060a6d91a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 db93eebcf951f9ee41d75dc0423378fa918fc6706db59bc20c02f6563b6b210d
MD5 824a3ea7eee985ad9fd82fcaf7065d65
BLAKE2b-256 92805bbdade010313edbb14afbdd916a054c74c99c2f04b0f8358086c728815a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c95f72d212e1f178f9619b77fd7ee3533e82ded6a5ad119dd88134e185ee3b0
MD5 d543c54989dbb96d73c5ccfa54e6ddcc
BLAKE2b-256 47f8d7cb1d184afe5a1db15515f86758fd08fa795a650f2af18ff221758921d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d23ea5a8e4ae99640d027d2fd05c9d03f8d24d561fc26c0462e96affa31bf408
MD5 1afebd4c47c7d8b4c41d05d25eb71d58
BLAKE2b-256 f103c06ee1605a5b11da535b64e26c9f2330de7a8e3a2253afc533f37a5a682f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33ff34dc349320dc16ebe0cdf70dddf5ae9328f4a448823a00f37976d0cc2234
MD5 f12b85badcd3a7905f94a4820f12f205
BLAKE2b-256 6bfde452de05a75c008acef9055dd9a58fc6a4d08a5e42747394a91030f83169

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 952ec99e71d584a0e451795dbd468909c8794727ecddd9ebb4fe9803e2803f1e
MD5 d7b31252f10561ea6af4d245538d88a7
BLAKE2b-256 3a3dcb9d33c140cce69e025d946deac44c636ce16a079cd4410722b552aecb5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3f1dc1d1a2f0b081d8c1eef2203e61717b537a1bcb0d8e4d1405aeb15aa85c34
MD5 9e274669b4ec36dc20b47ce211b8bed4
BLAKE2b-256 25fc6eed4204b30562f113e40151b94ec1ee565c040d90623a4223742cf5aa68

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d8f6cf451ec4aab0cdbad128d9be1219e95ceaa9940566d71570b2d820ee50b3
MD5 8e78790360ba3a2b9aaa175c99349e83
BLAKE2b-256 3999ed8c0f9f0d3c9631259bf5c5d776ec7a70d6d888ce060ad4758f00a29683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97fbe7a0df35afe37e7e2f053dee6300a3eed00055cfd907fa51161e22c40236
MD5 bc48e5cd13107503d52776a4af600948
BLAKE2b-256 0e2303248de44165f9c06dc23da981f3d58889ee2600004289c7afd12ef316b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b93e1ccddbdf59cec4f7683dc84bc56eb61628eb01b22bdefc15f04cd09f8fae
MD5 86f5d379c6e009328f28119249d68698
BLAKE2b-256 ba2ea3eb4a1ef48fc743c4107e82d5b1144287ef8353b0f6844fee1add28d663

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 af17d3ce1e2cc5d22ae8fe8921d7801c980ea3f5d6da4ecbd0f85c4f9e030181
MD5 8ab842252993c2ee76d1ff82c7ea6ab5
BLAKE2b-256 eac22c7838cf368c04aebaef93f756f5b76e0eb12bb710c2926111dc96e5aaf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 80.4 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ff803b3607cd76cb9b853b03d15279c7ffc8ba69e69f76304cd23d2722f2b65
MD5 1a5f9095f20e9dc608e7625d90cf5763
BLAKE2b-256 0202a943f4d0f9084a354a722468ff2899e9177449f03f4bff8ef234792f27ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 63a09b40bba3b2482983e2aeba6e45e20e1f567821ac89c8922229ecc1de7f65
MD5 bade6b01dd1f53f2c99059648ff58fdb
BLAKE2b-256 320e1890765d97cc3016ba444f8158856a35f8944785660eb88ff73b2d1e2b9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb9336f2dc99de00c9e58487cae5541ee4d79e859377b6312d98973d4661c584
MD5 1871a09c90af88b3578012b373f03286
BLAKE2b-256 7461565965b9613dccf20286880e314cc41b20a85b2f4a7fe275786bb08b330e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 43c36019a690b2cb089665eab01a50c92d814553c6e57ff03d2c68e63ce8f00b
MD5 ba9f1da7687473d90784af64f6671adf
BLAKE2b-256 3dc57ab2e23d594f28b2fc00bd19e82163bce2f77e2bc916e9dc247e0f886a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4482d1d4108052827b354850bd6e3d1ed56262cbe4b0e8051876c298fb99280
MD5 da06c05399f3d005678d67c2663ebc20
BLAKE2b-256 0a56ffec9a08beb6fcfc30b259c6b8b36741675c58de69f1c035746f06fa4a07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 10e8f78948d13369b770fc17bf72272aac98b4b92d49a38f479abf718f6b615b
MD5 2cbdfa8513822efa0bd4a3bf4c248c50
BLAKE2b-256 1c4da72b95e9389a4f350150d9a3ce9b263bad16f476551004a12de167ae7d0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f0d4a79d9af893d80caa5b709e024dd2d387f3f047008286036143f118d7010
MD5 28af8b79a22cdd11be2c9a27f293d955
BLAKE2b-256 405e79b6d6295733b9fa1bee096120a556366951e3c0140234310080ede40e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 29c0b2c075f8854b3345be584ab3d84f8968c45605d1914be1c94939cef5d702
MD5 4f89af6a28cd4fb0ddb9070ef69a228e
BLAKE2b-256 d75aa09c8346f270ab1328ba9e6594d73d86450de22bc4d29a23167ff82d7ec1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a50822bbbefb90b132a780c17356062a2452cd5525bfa4b5b596fd6474cceaa6
MD5 a7ef3494b2e8d217ff264234db69ccc4
BLAKE2b-256 400d81230469d6a7c6878e0763b7d84ebab6da3625ce62e8fd83086c982b8726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2b3946f0ff079623dc4f117363040433be390bfebce3719de50dfecbf31efdf0
MD5 be7a291b4da9988814650ac906bc7b4f
BLAKE2b-256 03c617263421accbbc27bc4c8535eb9215a18a914d15eab4829a59e93f5ad29d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 79.1 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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 914fdca0ee2a29ede32c61c28abdaf9c57b0d8c5de9dc1e28ce7e4f0400df877
MD5 0e8efd9fd8556b66e4e1d68bc7647ea2
BLAKE2b-256 f2b59b311f83110d10f798bcf22500186247fc5cf29db02791175957c2f94255

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f86e46490908a0ae2b2d633020c12e5283c85332d7ae0846f8a351a8a2da0b82
MD5 2acbe1a2a432e5080e99799178e3f4e9
BLAKE2b-256 09fe9fa6a51fd7c4fd907e541e2aee7a12de21e7f557d26b4d90cfba67fe3356

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 57bc3691043b158605c5ceee6b06b3720caf8ac43bd4195d1bfe12457e7014f6
MD5 9e29ccb3fa965a4bfca31a524c1eaefc
BLAKE2b-256 93bf0990eb65c38519fe7389e2f3502d5c32cc4b61a60c23da7568525ad663c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 151.1 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.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 484015d345548472c54c97a318c6eba92db583d9d5a966dde7cf3ae0c1461cf4
MD5 9651cdbf886b6a2194eb00abf9a60938
BLAKE2b-256 422869d7f2d98a79269bcc8bad542242e52c5b828feacb91f3a427d5b5316601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b55f1fcbf83637f42eaf19c553ed69864ff25ac38c653ab024fccfaec8bd2e68
MD5 b0c209bb3fe1582d7e249db86dea2aec
BLAKE2b-256 83881cf91d0d920b7d46a32981b7fd786b756cd5f668a742d4f837977b2ea9aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c5ffaf6e2d35e80bea210e6969910e2ae10c1166831651c22a315425db4f831
MD5 9eb2e5b73b656c808a016ca30aa0317b
BLAKE2b-256 9e1f16176c679a65145c0583fa07f4ea80a29d9ac985f56ed79eb7520428a45e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5b9f9d351eb8e5798066b505c705ec25e19a793367edaa3280a3f171b6950fc3
MD5 fd3db959a4fef992a644eb6846432a80
BLAKE2b-256 855a292f6153d259496425e6bcb7c441bd45249dfbe029a5d0ec3109f0b08dc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 852bbcc75eab1771d4f294fb6abcc23cd38813e34fa3c71e6d579799493c4db2
MD5 bd71732db0bcdd5c2e4044f191c38ebf
BLAKE2b-256 582309752129e62b54deeeda28046af88532b57493b9c3da317f00be08d6bcf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wrapt-2.2.0-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.0-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.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3fab0258114702859bb9d410e6a886e79477e677ac92580f81b876e7c55590cc
MD5 2c0e088e09b7afa4d3e120f11ce00821
BLAKE2b-256 300ece4675f3d357c4d59c789c751c6e116ffb463df1c10821c39baed6609c0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wrapt-2.2.0-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.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 298cfa8de891b9aae945b47323a012fe3f1cac5e6b2f69b150961b9ed0df1fc8
MD5 6a8bd1ccab7c8bfbf23802c2bf0a47ab
BLAKE2b-256 996b3d332c3d4c9c763c1f0c06a7f852f4d617587fbf814e48d2b6463dd31126

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wrapt-2.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 885638ab4f8765c5deaab41d1e4452b6d212d231091b84172e3e13df2cb280fb
MD5 9e395a105568435e37a23c559d7393de
BLAKE2b-256 47e4cb7e7d3cecf1c6666eaf3186c9b8eab5bd00ee580a8049da82c3c5f3d60a

See more details on using hashes here.

Provenance

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